Resolve GitHub issues using isolated worktrees and TDD
Execute issue resolution workflow using isolated worktrees, TDD methodology, and agent collaboration.
git statusgit branch --show-currentgit worktree listgh issue list --state open --limit 10gh auth statusUse isolated worktrees to avoid disrupting main development. Follow TDD cycle (red → green → refactor) with agent support. Reference issues in commits using auto-closing keywords. See references/requirements.md for protected PR workflow and commit standards.
Goal: Select target issue and prepare isolated development environment.
Actions:
$ARGUMENTSreferences/workflow-details.md for naming)Goal: Implement fix using test-driven development with agent collaboration.
Actions:
references/workflow-details.md for project-specific checks)Goal: Create pull request, link issue, and clean up worktree after merge.
Actions:
git push -u origin <branch-name>gh pr create with auto-closing keywords (e.g., "Closes #456")references/requirements.md - Worktree setup, TDD, and commit standardsreferences/workflow-details.md - Issue selection, TDD cycle, agent collaborationreferences/examples.md - Commit message examples