Fix GitHub issues using subagent-driven-development with parallel execution where appropriate
/plugin marketplace add athola/claude-night-market/plugin install pensive@claude-night-marketFix one or more GitHub issues using subagent-driven-development methodology.
# Single issue
/fix-issue 42
# Multiple issues (analyzes dependencies, runs in parallel where possible)
/fix-issue 42 43 44
# GitHub URL
/fix-issue https://github.com/owner/repo/issues/42
# Preview without executing
/fix-issue 42 --dry-run
| Option | Description |
|---|---|
--dry-run | Analyze and show planned tasks without executing |
--parallel | Force parallel execution (skip dependency analysis) |
--no-review | Skip code review between tasks (not recommended) |
--close | Automatically close issues when fixed |
Skill(sanctum:fix-issue) for detailed workflow guidanceThis command uses Skill(sanctum:fix-issue) which depends on:
/fix-issue 42
# Fetches issue #42, creates tasks, executes with TDD, reviews, updates issue
/fix-issue 42 43 44
# Analyzes dependencies between issues
# Runs independent tasks in parallel
# Sequences dependent tasks appropriately
/fix-issue 42 --dry-run
# Shows planned tasks without executing
# Useful for reviewing scope before committing
/fix-issueAddresses GitHub issues by taking issue number as parameter, analyzing context, implementing solution, and testing/validating the fix for proper integration.
/fix-issueAddresses GitHub issues by taking issue number as parameter, analyzing context, implementing solution, and testing/validating the fix for proper integration.