Execute GitHub issues using full EPCT workflow (Explore-Plan-Code-Test). Converts issue requirements into completed PR.
Executes GitHub issues through EPCT workflow to create complete PRs.
/plugin marketplace add fusengine/claude-code-plugins/plugin install fusengine-apex-agents-apex-agents@fusengine/claude-code-pluginsExecute GitHub issue with complete EPCT workflow:
Fetch Issue Details:
gh issue view $ARGUMENTS
Extract:
Execute EPCT:
Run /epct [ISSUE_TITLE] workflow:
EXPLORE: Understand affected components PLAN: Design solution CODE: Implement changes TEST: Validate implementation
Create Branch:
git checkout -b issue-$ISSUE_NUMBER-[slug]
Commit Changes:
git commit -m "$(cat <<'EOF'
feat: [ISSUE_TITLE]
Fixes #$ISSUE_NUMBER
- [Change 1]
- [Change 2]
EOF
)"
Create PR:
gh pr create --title "Fixes #$ISSUE_NUMBER: [TITLE]" --body "$(cat <<'EOF'
## Summary
Resolves #$ISSUE_NUMBER
## Changes
[List of changes]
## Test Plan
[How tested]
EOF
)"
Link Issue:
gh issue comment $ISSUE_NUMBER --body "PR created: [PR_URL]"
Arguments:
Example Usage:
/run-tasks 42 → Execute issue #42 with full workflow