GitHub Issue Operations
Provides scripts for issue CRUD operations. All scripts auto-detect the current repo.
Available Scripts
get-issue.sh <number>
Returns full issue details including type (via GraphQL).
bash
~/.claude/skills/gh-issue-ops/scripts/get-issue.sh 4
set-issue-type.sh <number> <type-name>
Sets issue type by name (resolves ID dynamically).
bash
~/.claude/skills/gh-issue-ops/scripts/set-issue-type.sh 4 "Bug"
get-issue-timeline.sh <number>
Returns timeline events for an issue (status changes, comments, etc).
bash
~/.claude/skills/gh-issue-ops/scripts/get-issue-timeline.sh 4
get-issue-comments.sh <number>
Returns all comments on an issue.
bash
~/.claude/skills/gh-issue-ops/scripts/get-issue-comments.sh 4
Usage
Run scripts with issue number as argument:
bash
bash ~/.claude/skills/gh-issue-ops/scripts/get-issue.sh 4
Type names are case-insensitive and matched against available types in the repo.