From issue-worker-plugin
Implements a GitHub issue end-to-end in any codebase — reads the issue, explores the project, writes code, adds tests, and verifies everything passes. Use when the user says "work on issue", "implement issue
How this skill is triggered — by the user, by Claude, or both
Slash command
/issue-worker-plugin:issue-workerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Work a single GitHub issue from understanding through verified implementation. Applies to any language, framework, or build system.
Work a single GitHub issue from understanding through verified implementation. Applies to any language, framework, or build system.
Before starting, ask the user for:
octocat/hello-world)If either is missing, ask before proceeding.
Copy this checklist and track progress:
Issue Progress:
- [ ] Step 1: Read and understand the issue
- [ ] Step 2: Explore the codebase
- [ ] Step 3: Create a working branch
- [ ] Step 4: Implement changes
- [ ] Step 5: Add tests
- [ ] Step 6: Verify (lint, type-check, build, tests)
- [ ] Step 7: Self-check against acceptance criteria
- [ ] Step 8: Summarize changes
Use the GitHub MCP tool to fetch the full issue from the repo. Identify:
If the issue is ambiguous, state assumptions clearly before writing code.
Search the codebase to understand:
Do not start coding until you understand the conventions.
Create and check out a descriptive branch:
git checkout -b <issue-number>-<short-description>
Add test coverage using the project's existing test patterns:
Match the test framework already in use (Jest, Playwright, xUnit, pytest, etc.).
Run the project's full verification suite. Discover commands from Step 2, then run them:
If anything fails:
Re-read the original issue and confirm:
Provide a concise summary:
npx claudepluginhub awojtas/aidans-agent-skillsResolves GitHub issues via 8-phase workflow: fetch details, analyze requirements, implement solutions, verify correctness, code review, commit changes, create PRs. Activates on resolve, implement, fix requests or issue references.
Starts GitHub issue work: fetches details via gh CLI, creates worktree/branch, detects bug/feature, explores codebase, proposes design before implementing.
Fixes GitHub issues end-to-end with GitHub CLI: views issue, researches context, plans fix, creates branch, implements/tests changes, submits PR.