From johnlindquist-claude
Manage GitHub issues using gh CLI - create, list, view, update, close, and assign issues. Use when working with GitHub issues, bug tracking, or project management tasks.
npx claudepluginhub joshuarweaver/cascade-ai-ml-engineering --plugin johnlindquist-claudeThis skill is limited to using the following tools:
Complete GitHub issue management using the `gh` CLI tool. This Skill provides comprehensive capabilities for creating, viewing, updating, and managing GitHub issues.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Complete GitHub issue management using the gh CLI tool. This Skill provides comprehensive capabilities for creating, viewing, updating, and managing GitHub issues.
For detailed instructions on each operation, see:
/create-issue or ask me to create oneREQUIRED: Before executing ANY GitHub issue operations, you MUST load the relevant reference file(s) using the Read tool. These references contain essential command patterns, parameters, and workflows that are NOT included in this overview.
When the user asks to work with GitHub issues:
CREATE_ISSUE.md FIRSTLIST_ISSUES.md FIRSTVIEW_ISSUE.md FIRSTUPDATE_ISSUE.md FIRSTCLOSE_ISSUE.md FIRSTASSIGN_ISSUE.md FIRSTDO NOT attempt to execute GitHub issue commands without first loading and reading the relevant reference documentation.
--body-file for issue bodies to avoid shell escaping issues$$ in temp file names to avoid conflicts (expands to process ID)User: "I found a bug where login fails with special characters"
Me: *Creates issue with details from conversation*
User: "Show me all open bugs assigned to alice"
Me: gh issue list --state open --label bug --assignee alice
User: "Add high-priority label to issue #123"
Me: gh issue edit 123 --add-label "high-priority"
User: "Close issue #456, it was fixed in the last PR"
Me: gh issue close 456 --comment "Fixed in PR #789"