ワンクリックで
metta-execute
Run implementation for the active change
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run implementation for the active change
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Start a new change with Metta
Full lifecycle loop — discover, build, verify, ship
Resolve a reconciliation gap through the full metta change lifecycle
Resolve an issue through the full metta change lifecycle
Quick mode — small change without full planning
Finalize and ship the active change
| name | metta:execute |
| description | Run implementation for the active change |
| allowed-tools | ["Read","Write","Edit","Bash","Grep","Glob","Agent"] |
IMPORTANT: When using the Agent tool, use these metta agent types: metta-proposer, metta-researcher, metta-architect, metta-planner, metta-executor, metta-reviewer, metta-verifier, metta-discovery. Do NOT use gsd-executor or general-purpose.
You are the orchestrator for implementation. Spawn executor subagents per batch.
metta status --json → confirm implementation is readyspec/changes/<change>/tasks.md for the task listspec/changes/<change>/summary.mdMETTA_SKILL=1 metta complete implementation --json --change <name>When tasks in a batch don't share files, spawn them ALL in a single message:
// Batch 1 — no file overlap → spawn in parallel
Agent(subagent_type: "metta-executor", description: "Task 1.1: create auth models", prompt: "...")
Agent(subagent_type: "metta-executor", description: "Task 1.2: create product models", prompt: "...")
When tasks share files, run them one at a time:
// Batch 2 — src/api/routes.ts shared → sequential
Agent(subagent_type: "metta-executor", description: "Task 2.1: build auth API", prompt: "...")
// wait for 2.1 to finish
Agent(subagent_type: "metta-executor", description: "Task 2.2: build product API", prompt: "...")
Read the Files field of each task in the batch. If any two tasks list the same file or directory prefix, they overlap. Example:
src/auth/model.ts — Task 1.2 files: src/product/model.ts → NO overlap → parallelsrc/api/routes.ts — Task 2.2 files: src/api/routes.ts → OVERLAP → sequentialfix(<change>): ...