execute

Execute an agent-quorum implementation plan while journaling deviations, blockers, and verification results.

9|Updated Jun 10, 2026
One-click install
npx skills add https://github.com/eventbalancer/agent-quorum --skill execute-eventbalancer
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: execute
Source: https://github.com/eventbalancer/agent-quorum/tree/main/.agents/skills/execute
Command: npx skills add https://github.com/eventbalancer/agent-quorum --skill execute-eventbalancer

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Turning an approved implementation plan into verified code changes is error-prone: plans go stale, steps get skipped, and reviewers cannot tell what actually happened. This Skill executes an existing agent-quorum plan step by step, preflights every referenced file and symbol, runs the right verification commands, and records only deviations and issues in a lightweight journal. ## Core Features & Use Cases - Plan preflight and execution: Resolves a markdown plan or a plan.package/ directory, verifies every referenced file, symbol, and command exists, then implements each phase using repository entry points like pnpm run check. - Deviation journaling: Writes a terse journal under .agents/execution-journals/ capturing only stale references, blockers, and verification failures, keeping it scannable for reviewers. - Worktree selection gate: Targets the correct git worktree before editing, with confirmation when another session may be actively editing it. - Use Case: After /plan produces an approved implementation plan, run /execute path/to/plan.md to implement it phase by phase, verify with the appropriate pnpm checks, and hand off a clean journal for /ship. ## Quick Start Ask the agent to execute the saved plan at docs/plans/my-feature.md and record any deviations in an execution journal.

Frequently Asked Questions about execute

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I execute an agent-quorum implementation plan?

Run /execute with the plan path, such as /execute docs/plans/my-plan.md. The skill preflights every referenced file and symbol, implements each phase, runs verification commands, and writes a journal of deviations and issues.

How do I execute a multi-phase plan.package directory?

Pass the plan.package directory path to /execute. The skill bootstraps by reading README.md, journal.md, and run.md, executes one pending phase at a time, and stops at phase boundaries for operator approval.

Can I execute a plan in a specific git worktree?

Yes, use --worktree <branch|path> to target a specific worktree. Without it, the skill presents candidate worktrees for selection and requires confirmation before acting on one another session may be editing.

What does the execution journal record?

The journal records only deviations, blockers, tool failures, pre-existing bugs, and verification failures, stored under .agents/execution-journals/. Clean steps and routine command output are intentionally not logged.

When should I not use the execute skill?

Do not use it for prompts, requirements drafts, or ambiguous design notes; those should go through /prompt-architect or /requirements first. It also does not commit, push, or open PRs, which are handled separately by /ship.