ワンクリックで
implement
Implement tasks using TDD. Accepts a plan or specific task description. Runs implementer agents in parallel where possible.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Implement tasks using TDD. Accepts a plan or specific task description. Runs implementer agents in parallel where possible.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Grep-based reverse dependency analysis — injected into planner, reviewer, and deep-review agents. Computes which files are affected by changes to a set of seed files. Not invoked directly.
This skill should be used when the user asks to "brainstorm", "refine an idea", "flesh out a feature", "define requirements". Guides interactive refinement of rough ideas into concise, actionable feature specifications. Focuses on the "what" and architecture — never the "how".
This is the default skill for all development work. It orchestrates the entire development lifecycle from idea to merge-ready code, coordinating multiple agents for brainstorming, planning, implementation, review, documentation, and final approval. Use this for any development task that is non-trivial and could benefit from structured planning, parallel execution, and rigorous review or require more than 3 lines of code changed.
Retrieves authoritative, up-to-date technical documentation, API references, configuration details, and code examples for any developer technology. Use this skill whenever answering technical questions or writing code that interacts with external technologies. This includes libraries, frameworks, programming languages, SDKs, APIs, CLI tools, cloud services, infrastructure tools, and developer platforms. Common scenarios: - looking up API endpoints, classes, functions, or method parameters - checking configuration options or CLI commands - answering "how do I" technical questions - generating code that uses a specific library or service - debugging issues related to frameworks, SDKs, or APIs - retrieving setup instructions, examples, or migration guides - verifying version-specific behavior or breaking changes Prefer this skill whenever documentation accuracy matters or when model knowledge may be outdated.
Design intelligence for UI/UX — injected into the frontend-planner agent. Provides BM25-searchable database of 67 styles, 161 color palettes, 57 font pairings, 160 animated component patterns, 161 industry rules, plus framework-agnostic design guidelines. Not invoked directly.
Domain logic for TDD methodology — injected into agents that implement code using test-driven development. Not invoked directly.
| name | implement |
| description | Implement tasks using TDD. Accepts a plan or specific task description. Runs implementer agents in parallel where possible. |
| argument-hint | <plan or task description> |
| user-invocable | true |
| disable-model-invocation | false |
Launch implementer agents to execute tasks using test-driven development.
IMPORTANT: Create a task list at the start to track progress:
addBlockedBy pointing to all implementation task IDs so they appear after implementation in the listin_progress when starting and completed when doneaddBlockedBy pointing to the review task that flagged itIf the user provides or references a plan with tasks:
The plan file may be either .devline/plan.md (single-phase) or .devline/plan-phase-N.md (multi-phase, where N is the phase number). This skill accepts an optional plan file path parameter — when specified, use that path; when not specified, default to .devline/plan.md.
.devline/plan.md or the specified .devline/plan-phase-N.md) and check the **Branch:** and **Status:** headers. If the branch doesn't match the current git branch or the status is completed, warn the user and ask whether to proceed — do not silently implement a stale plan.references/worktree-protocol.md for the full checklist. Launch implementer agents for all tasks that can run in parallel, each with isolation: "worktree". Exception: if inside a worktree, launch one at a time without isolation — wait for each to complete and commit before launching the next. Never run non-isolated agents in parallel.git merge --squash <branch>, then git commit -m "task-N: <short description>". This keeps a linear history — one commit per task, no merge commits. If conflicts: git merge --abort, clean up, relaunch without isolation. If nothing staged: agent didn't commit in its worktree — clean up, relaunch. After commit: clean up (git worktree remove <path> --force, then git branch -D <branch> as separate commands — force delete needed after squash).If the user provides a single task description:
For each completed task:
After all tasks pass review, launch the docs-keeper agent to update documentation.