ワンクリックで
execute
Execute an epic — sequences tasks from GitHub issues, runs spec workflow per task, adversarial checkpoints between tasks.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Execute an epic — sequences tasks from GitHub issues, runs spec workflow per task, adversarial checkpoints between tasks.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Primary review entrypoint for plans, diffs, commits, subagent results, and pre-submit checks. Selects quick, standard, or deep mode by scale and risk.
Planner-led repo improvement loops with subagents, review gates, Mermaid DAGs, and workflow-aware commits. Use for improve, refactor, audit, or continue-loop requests.
Triage and apply code review feedback with technical verification. Use when a human, reviewer subagent, CI, or adversarial reviewer returns findings or requested changes.
Heavy review mode normally invoked by request-code-review for risky checkpoints, pre-submit stacks, OpenSpec/cflx acceptance, security-sensitive work, or explicit deep review, audit, or red-team requests.
Post-implementation cleanup for recent changes using parallel reuse, quality, and efficiency reviewers. Use after building a feature or fix, before commit, PR, or submit.
End-of-workflow learning loop for skill-guided work. Use at session/checkpoint closeout to classify GitHub/CodeRabbit/human/CI findings, log missed-review patterns, and propose skill improvements only when evidence justifies them.
| name | execute |
| description | Execute an epic — sequences tasks from GitHub issues, runs spec workflow per task, adversarial checkpoints between tasks. |
| user-invocable | true |
| argument-hint | <epic-name | issue-number> |
Execute an epic by running the spec workflow on each task in dependency order, with adversarial checkpoints between tasks.
gh issue list to get all tasks for this epic:
gh issue list --milestone "<epic-milestone>" --state open --json number,title,body,labels --limit 50
For each task in execution order:
gh issue edit <number> --remove-label "status:planned" --add-label "status:in-progress"omega_query() for context on related past work/next-level:quick. Otherwise, Read skills/spec/references/spec-plan.md and follow the process.skills/spec/references/spec-implement.md and follow the process with strict TDD.skills/spec/references/spec-verify.md and follow the process — tests, lint, code review.After each task completes, dispatch the checkpoint-reviewer agent:
Review depth adjusts based on task position and track record:
The reviewer returns one of: CONTINUE (proceed to next task), FLAG_FOR_HUMAN, or STOP.
If the reviewer returns a non-CONTINUE verdict:
gh issue edit <number> --remove-label "status:in-progress" --add-label "status:complete" then gh issue close <number>fixes #<number>omega_store(task_summary, "milestone")omega_checkpoint() if context approaches 85% to ensure session continuityWhen a project has multiple epics:
gh api repos/{owner}/{repo}/milestones/<number> -X PATCH -f state="closed"
Independent epics CAN run in parallel via agent teams (see /next-level:team-execute).
If context approaches 85% during execution:
omega_checkpoint() to save full state~/.next-level/sessions/{id}/resume.md:
/next-level:resume in a new sessiongh commands fail: fall back to local tracking via spec JSON filesAfter completing all tasks in the epic:
EPIC COMPLETE: <epic-name>
═════════════════════════
Tasks completed: N/M
Tests passing: all
Issues closed: #1, #2, #3, ...
Milestone: closed
Next: /next-level:execute <next-epic> (if applicable)