← back to Cli Printing Press
fix(skills): publish skill specifies full PR URL format
ff465aac373a80e0bc991766d6b74ed0194e6928 · 2026-04-03 17:24:57 -0700 · Trevin Chow
The skill said "Display the PR URL prominently" which left the format
ambiguous. Agents would sometimes rewrite the full URL as org/repo#N
shorthand in their summary, which isn't clickable in all terminals.
Now explicitly requires the full https:// URL in both new-PR and
update-PR paths.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Files touched
M skills/printing-press-publish/SKILL.md
Diff
commit ff465aac373a80e0bc991766d6b74ed0194e6928
Author: Trevin Chow <trevin@trevinchow.com>
Date: Fri Apr 3 17:24:57 2026 -0700
fix(skills): publish skill specifies full PR URL format
The skill said "Display the PR URL prominently" which left the format
ambiguous. Agents would sometimes rewrite the full URL as org/repo#N
shorthand in their summary, which isn't clickable in all terminals.
Now explicitly requires the full https:// URL in both new-PR and
update-PR paths.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
---
skills/printing-press-publish/SKILL.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/skills/printing-press-publish/SKILL.md b/skills/printing-press-publish/SKILL.md
index 19770df6..d4a652cb 100644
--- a/skills/printing-press-publish/SKILL.md
+++ b/skills/printing-press-publish/SKILL.md
@@ -530,7 +530,7 @@ gh pr edit "$EXISTING_PR_NUMBER" \
--body "<constructed PR body>"
```
-Display: "Updated PR #N: <EXISTING_PR_URL>"
+Display the full PR URL: "Updated PR: <EXISTING_PR_URL>" (use the full `https://` URL, not shorthand).
**If creating a new PR:**
@@ -557,7 +557,7 @@ else
fi
```
-Display the PR URL prominently.
+Display the full PR URL (e.g., `https://github.com/mvanhorn/printing-press-library/pull/10`), not the shorthand `org/repo#N` format. The full URL is clickable in all terminals and contexts.
## Secret & PII Protection
← 34e354f6 feat(cli): enum sync expansion and generic API prefix stripp
·
back to Cli Printing Press
·
feat(cli): add --data-source flag for live/local/auto read r b88aa97b →