ワンクリックで
lets-implement
Implement a plan from .planning/ phase by phase with subagents
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Implement a plan from .planning/ phase by phase with subagents
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Get a second opinion from Codex CLI (OpenAI) on plans, code, or debugging. Use this skill when the user asks to review plans with Codex, get a code review from Codex, or wants a second perspective on a bug. Also use proactively: after finishing an implementation plan, after completing a feature implementation, or when stuck debugging after 2-3 failed attempts. Trigger on phrases like "ask codex", "get a second opinion", "review with codex", "send to codex", or "/codex".
Query Grok (xAI) with native X/Twitter search access. Use this skill whenever the user wants to fetch a specific tweet or X thread by URL, search X/Twitter for posts or discussions on a topic, check reactions or discourse on X, or any task where real-time X/Twitter data would be useful. Triggers on: X/Twitter URLs (x.com links, twitter.com links), "check X for", "what's the reaction on X/Twitter", "fetch this tweet", "search X for", "from:handle", or any request involving real-time social media content from X/Twitter. Also use when the user pastes an x.com or twitter.com URL and wants to know what it says.
Discuss and create a structured implementation plan in .planning/
Initialize .planning/ directory and PROJECT.md with auto-detected project config
Release a new version with tag, changelog, version bumps, and STATE.md update
| name | lets-implement |
| description | Implement a plan from .planning/ phase by phase with subagents |
| argument-hint | <plan-file> [phase-number] |
You are orchestrating the implementation of a plan file from .planning/. You read the plan, implement each phase using a subagent, review the output, fix issues, and commit.
Before starting:
$ARGUMENTS (first argument).planning/PROJECT.md for project config (quality commands, stack, structure).planning/STATE.md for current project state (if it exists)CLAUDE.md or AGENTS.md) for conventions$ARGUMENTS[0] -- path to the plan file (required). Example: .planning/SCHEDULED_TASKS_IMPL.md$ARGUMENTS[1] -- phase number (optional). If provided, only implement that phase. If omitted, implement all phases iteratively.For each phase (or the specified phase), repeat this cycle:
Spawn a subagent with a clear prompt:
The subagent prompt should be self-contained. Include enough context that it can work autonomously.
After the subagent completes:
git diff --stat to see what files changedRun the tests and confirm they fail as expected. This validates that the tests are actually testing something new and won't pass without the implementation.
Spawn a subagent with a clear prompt:
.planning/PROJECT.md when done (lint, typecheck, test)Run the tests and confirm they pass. If they don't, investigate and fix directly.
After the subagent completes:
git diff --stat to see what files changedRun the quality commands defined in .planning/PROJECT.md (lint, typecheck, test) and ensure they pass. If PROJECT.md doesn't specify commands, look for them in the project instructions file or detect from package.json / Makefile / pyproject.toml.
Create a conventional commit for this phase:
feat: for new featuresfix: for bug fixeschore: for maintenanceMove to the next phase and repeat. Update the Implementation Order in the plan file with a checkmark for the completed phase.
After the last phase is committed: