From claude-resources
Fetches a GitHub issue with all images and screenshots downloaded locally so Claude can read them. Use when a user provides an issue URL, asks to view an issue, references an issue number, or asks about issue screenshots.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-resources:gh-fetch-issue <issue-url-or-number> [--repo owner/repo]<issue-url-or-number> [--repo owner/repo]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fetch a GitHub issue with attachments downloaded locally for Claude to read.
Fetch a GitHub issue with attachments downloaded locally for Claude to read.
GitHub issue images (github.com/user-attachments/assets/...) require authentication and cannot be fetched via WebFetch. This skill downloads everything locally so Claude can read both the markdown content and all attached images.
# By URL
bash $HOME/.claude/skills/gh-fetch-issue/scripts/fetch-issue.sh https://github.com/owner/repo/issues/123
# By issue number (auto-detects repo from current git remote)
bash $HOME/.claude/skills/gh-fetch-issue/scripts/fetch-issue.sh 123
# By issue number with explicit repo
bash $HOME/.claude/skills/gh-fetch-issue/scripts/fetch-issue.sh 123 --repo owner/repo
{output-dir}/issue.md for the issue contentassets/ subdirectory exists, read the image files to see screenshots and attachments$HOME/cclogs/{repo-slug}/{date}-issue-{number}/
├── issue.md # Issue content with local image paths
└── assets/ # Downloaded images (if any)
├── body-{id}.png
└── comment-0-{id}.png
The {repo-slug} is owner-repo in lowercase (e.g., zudolab-zudo-text). The {date} is YYYYMMDD.
npx claudepluginhub takazudo/claude-resources --plugin claude-resourcesFetches GitHub issue content via gh CLI, downloads image assets with gh-asset, analyzes requirements, and generates detailed implementation plans broken into parallelizable tasks. Useful for planning from issues.
Fetches, creates, or updates GitHub issues using the gh CLI. Handles attachment downloads and video frame extraction. Activate when the user mentions GitHub issues.
Manages GitHub issues via `gh` CLI: reads issues, atomically updates checkboxes, creates/links sub-issues, edits/closes/adds labels, downloads images. Auto-triggers on issue URLs or commands like 'read issue'.