Skip to content
Development
Command

/run-tasks

Execute GitHub issues using full EPCT workflow (Explore-Plan-Code-Test). Converts issue requirements into completed PR.

From plugin
fusengine-agents
2233 skills43 agents33 commands
Install
$ npx -y skills add fusengine/agents --agent claude-code

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/run-tasks

Context preview

What this command does when you run it.

Execute GitHub issues using full EPCT workflow (Explore-Plan-Code-Test). Converts issue requirements into completed PR.

Command definition

run-tasks.md
description: Execute GitHub issues using full EPCT workflow (Explore-Plan-Code-Test). Converts issue requirements into completed PR.
disable-model-invocation: false

Run GitHub Issue Tasks

Execute GitHub issue with complete EPCT workflow:

1. **Fetch Issue Details**:

   gh issue view $ARGUMENTS

Extract:

  • Issue title and description
  • Acceptance criteria
  • Labels and priority
  • Related issues/PRs

2. **Execute EPCT**: Run `/epct [ISSUE_TITLE]` workflow:

**EXPLORE**: Understand affected components **PLAN**: Design solution **CODE**: Implement changes **TEST**: Validate implementation

3. **Create Branch**:

   git checkout -b issue-$ISSUE_NUMBER-[slug]

4. **Commit Changes**:

   git commit -m "$(cat <<'EOF'
   feat: [ISSUE_TITLE]

   Fixes #$ISSUE_NUMBER

   - [Change 1]
   - [Change 2]


   EOF
   )"

5. **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
   )"

6. **Link Issue**:

   gh issue comment $ISSUE_NUMBER --body "PR created: [PR_URL]"

**Arguments**:

  • $ARGUMENTS = GitHub issue number

**Example Usage**:

  • `/run-tasks 42` → Execute issue #42 with full workflow
Ships withfusengine-agents

A plugin ecosystem that turns Claude Code into a supervised, multi-agent development environment.

Get the whole plugin, auto-invoked
Stats
22
Stars
1
Views
3
Forks
Active
Maintenance
CSS
Language
MIT
License
4d ago
Last commit
7mo ago
Created

Repo: fusengine/agents