Github screenshot
Agent skills for Claude Code, Codex, and Gemini CLI — shared workflows for testing, code review, issue triage, and dev loop automation.
npx -y skills add jerseycheese/agent-skills --skill github-screenshotAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Generates GitHub-compatible markdown for screenshots using raw.githubusercontent.com URLs via the generate-github-image-markdown.sh script. Trigger on: "add a screenshot to this PR", "embed image in issue", "attach screenshot", "paste image into GitHub", "add screenshot to docs", "insert image in markdown", "show a screenshot in the PR", "add image to issue".
SKILL.md
4.6 KB, as published. Nobody here has run it
GitHub Screenshot Helper
When to Use This Skill
Use this skill when:
- Adding screenshots to PR descriptions
- Including images in GitHub issues
- Documenting features with screenshots
- Creating visual documentation in markdown
Setup
This skill wraps a local generate-github-image-markdown.sh script. Update the path below to match your own installation before using.
What This Skill Does
Runs your generate-github-image-markdown.sh script to:
- Generate proper raw.githubusercontent.com URLs
- Create markdown with alt text and captions
- Handle git repository detection automatically
- Include helpful comments with local paths
Usage Flow
Step 1: Gather Information
Ask the user for:
- Image path (required) - relative or absolute
- Alt text (optional) - defaults to "Screenshot"
- Caption (optional) - italicized description below image
Step 2: Run the Script
Execute:
~/tools/screenshots/generate-github-image-markdown.sh \
"$IMAGE_PATH" \
"$ALT_TEXT" \
"$CAPTION"
Permission pattern needed (update path to match your setup):
Bash(~/tools/screenshots/generate-github-image-markdown.sh:*)
Step 3: Present the Result
Show the generated markdown to the user:
## Generated Screenshot Markdown
```markdown

*Caption text*
<!-- GitHub URL: https://raw.githubusercontent.com/... -->
<!-- Local path: ./screenshots/image.png -->
Then ask: "Should I insert this somewhere, or just copy it?"
### Step 4: Optional Insertion
If user wants it inserted:
- Ask where to insert (e.g., "in the PR description I'm writing")
- Use Edit tool to insert at appropriate location
- Confirm insertion complete
## Example Interaction
**User:** `/github-screenshot`
**Claude:**
I'll help you generate GitHub screenshot markdown.
What's the image path?
**User:** `./screenshots/dashboard-before.png`
**Claude:**
Alt text for the screenshot? (default: "Screenshot")
**User:** `Dashboard before refactor`
**Claude:**
Optional caption? (press enter to skip)
**User:** `Shows the original dashboard layout`
**Claude:** *Runs script and presents result*
```markdown
## Generated Screenshot Markdown

*Shows the original dashboard layout*
<!-- GitHub URL: https://raw.githubusercontent.com/user/repo/main/screenshots/dashboard-before.png -->
<!-- Local path: ./screenshots/dashboard-before.png -->
Would you like me to insert this somewhere?
Error Handling
File Not Found
If image doesn't exist:
❌ Error: Image file not found at ./screenshots/missing.png
Please check the path and try again.
Not in Git Repository
If script can't detect git repo:
⚠️ Warning: Couldn't generate GitHub URL (not in a git repository)
Generated markdown with relative path instead:

Note: This may not display correctly in GitHub
Script Not Found
If the script is missing:
❌ Error: Screenshot script not found at expected location.
Please verify the script exists at the path configured in this skill,
or update the path in Step 2 to match your installation.
Common Use Cases
PR Description with Screenshot
User: "Add this screenshot to the PR description"
Claude: [runs skill, gets markdown, inserts into PR description being drafted]
Multiple Screenshots
User: "Add 3 screenshots"
Claude: [runs skill 3 times, collecting all markdown, then inserts all at once]
Quick Copy
User: "Just generate the markdown, I'll paste it myself"
Claude: [runs skill, presents markdown, doesn't insert anywhere]
Integration with Your Workflow
This skill encodes the full screenshot workflow — you just invoke it instead of remembering the script path, argument order, and permission pattern every time.
Notes
- This skill wraps a local script
- The script handles all the git complexity (remote detection, branch detection, path conversion)
- Permission pattern is encoded in the skill, so you don't need to remember it
- Works in any git repository, automatically detects repo details