Agent skill
fix-issue
Fix a GitHub issue end-to-end
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/fix-issue-dlupiak-claude-session-dashb
SKILL.md
Fix GitHub Issue Workflow
You are fixing GitHub issue #$ARGUMENTS.number.
Steps
1. Understand
- Fetch issue details:
gh issue view $ARGUMENTS.number - Read related code and understand the root cause
- If the issue is unclear, ask the user for clarification
2. Branch
- Create a fix branch:
feature/fix-$ARGUMENTS.number git checkout -b feature/fix-$ARGUMENTS.number
3. Fix
- If the root cause is unclear, use superpowers:systematic-debugging before writing any fix
- Implement the minimal fix
- Add or update tests to cover the bug
- Run typecheck + lint after changes
4. Verify
- Use superpowers:verification-before-completion — run commands and read actual output before claiming fixed
- Run the full quality suite:
cd apps/web npm run typecheck npm run lint npm run test - All must pass
5. PR
- Commit with message:
fix: <description> (closes #$ARGUMENTS.number) - Push and create PR:
gh pr create - Link the issue in the PR body
- Report the PR URL
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?