executing-plans

star 0

Use when you have a written implementation plan to execute in a separate session with review checkpoints

rryando By rryando schedule Updated 6/11/2026

name: executing-plans description: Use when you have a written implementation plan to execute in a separate session with review checkpoints

Skill: executing-plans

When

You have a written implementation plan to execute task-by-task with verification checkpoints.

NOT for:

  • If subagents are available → use subagent-driven-development instead (parallel dispatch, two-stage review)
  • If the task needs iterative self-correction without a structured plan → use loop instead

CLI: arcs --commands --json for discovery. Mutating commands run directly — no token.

Flow

flowchart TD
    A[Load plan] --> B{Diagram exists?}
    B -->|Yes| C[arcs diagram ready slug planId]
    B -->|No| D[Read plan body for task list]
    C --> E[Extract per-node metadata]
    D --> E
    E --> F{Concerns about plan?}
    F -->|Yes| G[Raise with human — STOP]
    F -->|No| H[Select next ready task]
    H --> I[Mark task started — see Transition ownership]
    I --> J[Execute steps exactly]
    J --> K[Run task's scoped verify command]
    K --> L{Passes?}
    L -->|No| M{Repeated failure?}
    M -->|Yes| N[STOP — ask for help]
    M -->|No| J
    L -->|Yes| O[Report task done — see Transition ownership]
    O --> P{More ready tasks?}
    P -->|Yes| H
    P -->|No| Q{All tasks done?}
    Q -->|No| R[Re-scan: arcs diagram ready]
    R --> P
    Q -->|Yes| S[Report completion — devil-advocate gate owns the full-project pass]

Diagram-First Task Selection

When plan has .diagram.mmd:

  1. arcs diagram ready <slug> <planId> → executable nodes (deps all :::done)
  2. Read per-node %% metadata: node, skill, scope, files, acceptance, verify
  3. After each transition, re-scan for newly-unblocked nodes
  4. If metadata incomplete → fall back to plan body for that task

Dependency-aware ordering: arcs next respects dependsOn — it only surfaces tasks whose dependencies are all done. Use arcs next as the authoritative source for what's executable; you don't need to manually parse .mmd for ordering. arcs diagram ready remains useful for per-plan metadata inspection.

Transition ownership: When dispatched by the ARCS orchestrator, you never run arcs task transition — report each task done in your return envelope (STATUS/FILES_TOUCHED/VERIFY) and the orchestrator transitions after the execute gate passes. Only when running standalone (no orchestrator session) transition yourself, with both flags: arcs task transition <slug> <taskId> done --diagramNodeId=T001 --planId=<planId>

Verify scope rule: Run ONLY the current task's verify command, scoped to that task's files. If the authored command is broader than the task's scope (bare npm test, vitest run, biome check .), narrow it to the touched files first (e.g. npm test -- test/orders.test.ts). Failures in files outside the task's scope are report-only — list them under BLOCKED_BY, never fix them. Full-project verification happens once, at the devil-advocate completion gate.

Sub-Agent Context

Fetch once, then paste the relevant output into each dispatch's CONTEXT — don't make sub-agents re-fetch:

arcs context <slug> --audience=implementer --lean --json
arcs search <slug> "<task-keywords>" --lean --json

Sub-agents run arcs lookups only to fill gaps the dispatch left open — never to re-derive what CONTEXT already states.

Sub-agents MUST NOT edit .mmd files — orchestrator owns diagram updates.

Review Checkpoint Criteria

STOP executing immediately when:

  • Missing dependency or unclear instruction
  • Verification fails repeatedly (2+ attempts)
  • Plan has critical gaps preventing progress
  • Fundamental approach needs rethinking

Ask for clarification rather than guessing. Don't force through blockers.

Auto-Sync Triggers

Post-execution DAG sync fires automatically when:

  • 3+ tasks transitioned this session
  • New knowledge entries created from discoveries
  • lastSyncedAt > 7 days ago
  • Plan reached done status

Constraints

  • Review plan critically before starting — raise concerns first
  • Follow plan steps exactly — don't improvise
  • Never skip verifications — and never widen them beyond the task's scope
  • Never start on main/master without explicit consent
  • Reference sub-skills when plan specifies them
  • After all tasks complete: report completion — the devil-advocate completion gate runs the single full-project verification
Install via CLI
npx skills add https://github.com/rryando/arcs --skill executing-plans
Repository Details
star Stars 0
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator