/dev-implementation
AI DevKit · Implementation phase guidance for executing feature plans and checking implementation against design. Use when the user wants to implement planned tasks, update implementation docs, verify code matches design, or run dev-lifecycle phases 5 and 7.
$ npx -y skills add codeaholicguy/ai-devkit --skill dev-implementation --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/dev-implementation
Context preview
The summary Claude sees to decide when to auto-load this skill.
AI DevKit · Implementation phase guidance for executing feature plans and checking implementation against design. Use when the user wants to implement planned tasks, update implementation docs, verify code matches design, or run dev-lifecycle phases 5 and 7.
SKILL.md
dev-implementation.SKILL.mdname: dev-implementation
description: AI DevKit · Implementation phase guidance for executing feature plans and checking implementation against design. Use when the user wants to implement planned tasks, update implementation docs, verify code matches design, or run dev-lifecycle phases 5 and 7.
Dev Implementation
Run implementation work for configured AI docs features. Before changing docs or code, propose the concrete plan for this phase and wait for user approval unless the user already approved the exact phase plan.
Phase Contract
1. Run `npx ai-devkit@latest lint` before phase work. 2. If working on a named feature, run `npx ai-devkit@latest lint --feature <name>`. 3. Read requirements, design, planning, implementation, and testing docs before changes. 4. Use the `tdd` skill while executing implementation tasks: write a failing test before production code, then make it pass. 5. Apply the `verify` skill before completing tasks or making implementation alignment claims. 6. Keep testing and implementation docs in lockstep with code. Do not defer all doc updates to final verification. 7. If parent `dev-lifecycle` established usable task tracing, emit phase, progress, next-step, blocker, and evidence events per `task`.
Execute Plan
Use for Phase 5.
1. Run `npx ai-devkit@latest lint --feature <name>` and work through the planning doc path it validates. If manual path resolution is unavoidable, first resolve `.ai-devkit.json` `paths.docs`, falling back to `docs/ai`. 2. Gather context: feature name, planning doc path, supporting docs, current branch, and current diff. 3. Parse task lists and build an ordered queue by section. 4. Present the task queue with status: `todo`, `in-progress`, `done`, `blocked`. 5. For each task, show context, suggest relevant docs, and outline sub-steps from the design doc when useful. 6. If task tracing is available, record current task progress and immediate next action per `task`. 7. Reuse before writing: grep for existing utilities/functions before adding new ones. Reuse only if it fits cleanly. 8. Handle breaking changes carefully: update all in-repo callers atomically; for external/public/cross-service callers, add a new function and deprecate the old one. 9. Generate a markdown tracking snippet after each status change. 10. After each task, update the testing doc with completed scenarios, newly discovered scenarios, and invalidated scenarios. Update the implementation doc with changed files, decisions, design deviations, and edge cases handled. 11. After each section, ask if new tasks were discovered. 12. Summarize completed, in-progress, blocked, skipped, new tasks, task-tracing events emitted or why tracing was unavailable, and doc deltas.
Next: after completing any task, run `dev-planning` Phase 6. When all tasks are done, run Check Implementation, then `dev-testing` and `dev-review`.
Check Implementation
Use for Phase 7.
1. Compare implementation against the configured design and requirements docs validated by `npx ai-devkit@latest lint --feature <name>`. 2. Gather context: feature description, modified files, relevant design/requirements docs, constraints. 3. Summarize design: key decisions, components, interfaces, data flows. 4. Review file by file: verify design intent, note deviations, flag logic gaps, edge cases, security issues, and missing tests or doc updates. 5. Finalize the implementation doc. Verify it captures what shipped, fill gaps, and record follow-ups. 6. Summarize alignment status, deviations with severity, missing pieces, concerns, and next steps.
Next: `dev-testing`, then `dev-review`. If major deviations exist, return to `dev-design` if design is wrong or Execute Plan if implementation is wrong.
Read more
name: dev-implementation description: AI DevKit · Implementation phase guidance for executing feature plans and checking implementation against design. Use when the user wants to implement planned tasks, update implementation docs, verify code matches design, or run dev-lifecycle phases 5 and 7.
Dev Implementation
Run implementation work for configured AI docs features. Before changing docs or code, propose the concrete plan for this phase and wait for user approval unless the user already approved the exact phase plan.
Phase Contract
1. Run `npx ai-devkit@latest lint` before phase work. 2. If working on a named feature, run `npx ai-devkit@latest lint --feature <name>`. 3. Read requirements, design, planning, implementation, and testing docs before changes. 4. Use the `tdd` skill while executing implementation tasks: write a failing test before production code, then make it pass. 5. Apply the `verify` skill before completing tasks or making implementation alignment claims. 6. Keep testing and implementation docs in lockstep with code. Do not defer all doc updates to final verification. 7. If parent `dev-lifecycle` established usable task tracing, emit phase, progress, next-step, blocker, and evidence events per `task`.
Execute Plan
Use for Phase 5.
1. Run `npx ai-devkit@latest lint --feature <name>` and work through the planning doc path it validates. If manual path resolution is unavoidable, first resolve `.ai-devkit.json` `paths.docs`, falling back to `docs/ai`. 2. Gather context: feature name, planning doc path, supporting docs, current branch, and current diff. 3. Parse task lists and build an ordered queue by section. 4. Present the task queue with status: `todo`, `in-progress`, `done`, `blocked`. 5. For each task, show context, suggest relevant docs, and outline sub-steps from the design doc when useful. 6. If task tracing is available, record current task progress and immediate next action per `task`. 7. Reuse before writing: grep for existing utilities/functions before adding new ones. Reuse only if it fits cleanly. 8. Handle breaking changes carefully: update all in-repo callers atomically; for external/public/cross-service callers, add a new function and deprecate the old one. 9. Generate a markdown tracking snippet after each status change. 10. After each task, update the testing doc with completed scenarios, newly discovered scenarios, and invalidated scenarios. Update the implementation doc with changed files, decisions, design deviations, and edge cases handled. 11. After each section, ask if new tasks were discovered. 12. Summarize completed, in-progress, blocked, skipped, new tasks, task-tracing events emitted or why tracing was unavailable, and doc deltas.
Next: after completing any task, run `dev-planning` Phase 6. When all tasks are done, run Check Implementation, then `dev-testing` and `dev-review`.
Check Implementation
Use for Phase 7.
1. Compare implementation against the configured design and requirements docs validated by `npx ai-devkit@latest lint --feature <name>`. 2. Gather context: feature description, modified files, relevant design/requirements docs, constraints. 3. Summarize design: key decisions, components, interfaces, data flows. 4. Review file by file: verify design intent, note deviations, flag logic gaps, edge cases, security issues, and missing tests or doc updates. 5. Finalize the implementation doc. Verify it captures what shipped, fill gaps, and record follow-ups. 6. Summarize alignment status, deviations with severity, missing pieces, concerns, and next steps.
Next: `dev-testing`, then `dev-review`. If major deviations exist, return to `dev-design` if design is wrong or Execute Plan if implementation is wrong.
The control plane for AI coding agents. AI DevKit gives Claude Code, Codex CLI, Gemini CLI, opencode, Pi, Cursor, GitHub Copilot, Devin, and other coding agents one local-first operating layer: one config, one console, local memory retrieval, cross-agent
Repo: codeaholicguy/ai-devkit
Other skills on ai-devkit.
- /agent-communication
AI DevKit · Exchange information with active Codex, Claude Code, and other AI agents using ai-devkit agent list, detail, and send. Use when an agent needs to find another active agent, read its recent context, send it information, or request information back.
Open skill - /agent-management
AI DevKit · Manage running AI agents with ai-devkit agent commands. Use when an agent needs to identify itself, list agents, start workers, inspect agent detail, assign work, group agents, resume sessions, stop agents, or delegate work to other agents.
Open skill - /agent-orchestration
AI DevKit · Supervise multi-agent workflows over repeated passes: poll progress, unblock waiting agents, coordinate dependencies, relay outputs, resolve conflicts, and verify completion. Use only for ongoing multi-agent coordination, not one-off list/detail/send/start/kill
Open skill - /brainstorm
AI DevKit · Use when the user asks to brainstorm, ideate, generate ideas, expand options, challenge ideas, pressure-test ideas, compare concepts, narrow choices, name something, plan content angles, explore strategy, evaluate product ideas, technical approaches, experiments, or
Open skill - /changelog
AI DevKit · Update CHANGELOG.md Unreleased items from git commits since the latest release. Use when users ask to update changelog/release notes from recent commits, with one concise line per commit and commit/PR links.
Open skill - /dev-commit
AI DevKit · Safe git commit workflow for AI coding agents. Use when the user asks to commit, prepare a commit, stage changes, create a PR-ready checkpoint, or finish work with a conventional commit while avoiding unrelated user changes.
Open skill

