Agent skill
github-issue
GitHub issue lifecycle management with worktree isolation
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/github-issue
SKILL.md
GitHub Issue Lifecycle Skill
Manage GitHub issues from listing to fixing to PR creation with clean worktree isolation.
Commands
/github-issue- Main entry point for all issue operations
Agents
issue-intake-agent- List and fetch issue detailsissue-mutate-agent- Create and update issuesissue-fix-agent- Implement fixes in isolated worktreesissue-pr-agent- Create pull requests
Operations
--list [--repo owner/repo]- List open issues--create- Create issue interactively--update <id>- Update issue fields--fix --issue <id/url> [--yolo]- Full fix workflow: fetch → confirm → worktree → implement → test → commit → push → PR
Dependencies
- Skills: sc-managing-worktrees (worktree operations)
- CLI: GitHub CLI (
gh) required - Config:
.claude/config.yaml(base_branch, worktree_root, github settings)
Configuration
base_branch: main
worktree_root: ../worktrees
github:
branch_pattern: "fix-issue-{number}"
Data Contracts
All agents return fenced JSON:
{
"success": true|false,
"data": { /* operation results */ },
"error": null|"message"
}
Safety
- Pre-flight
ghCLI auth checks - Approval gates before destructive ops (unless
--yolo) - Test failure prompts
- Actionable error messages
References
.claude/references/github-issue-apis.md- GitHub CLI patterns.claude/references/github-issue-checklists.md- Workflow checklists
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?