do-implement

Implements code changes directly from descriptions, review findings, or named tasks without requiring planning artifacts.

Updated Jul 9, 2026
One-click install
npx skills add https://github.com/khoavu882/do-flow --skill do-implement-khoavu882
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: do-implement
Source: https://github.com/khoavu882/do-flow/tree/main/core/shared/skills/do-implement
Command: npx skills add https://github.com/khoavu882/do-flow --skill do-implement-khoavu882

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Developers often need to make a quick fix, address code review comments, or build a small feature without going through a formal brainstorm-design-plan workflow. This Skill implements code changes directly from whatever context is available, while still checking recorded evidence and readiness gates when prior workflow state exists. ## Core Features & Use Cases - Direct implementation: Builds features or fixes from a plain-language description, with no requirement for requirement.md, design.md, or plan.md files. - Review-driven fixes: Works through findings from a prior code review run, most severe first, when invoked with --from-review. - Evidence-aware gating: Checks recorded task evidence, validates task class, and evaluates readiness before editing when prior workflow state exists; skips gates transparently for standalone tasks. - Verification and handoff: Names the project's build/test/lint commands, runs them, and records the implementation handoff so later workflow stages can proceed. - Use Case: After a code review flags three issues in your branch, invoke the skill with --from-review to work through each finding, run the existing test suite, and record the completed implementation stage. ## Quick Start Ask the AI to implement the described change or fix the findings from the previous code review using the do-implement skill.

Frequently Asked Questions about do-implement

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

FAQPage Schema
How do I implement a quick fix without a full planning workflow?▼

Invoke the skill with a plain-language description of the change. It gathers context from your description, reads the affected code, writes the change set, implements it, and runs the project's existing build and test commands without requiring any planning documents.

How do I fix findings from a code review automatically?▼

Run the skill with the --from-review flag after a code review in the same conversation. It treats the review's findings as the work list, addressing them most-severe first in the order the review ranked them.

Does this skill require requirement or design documents to exist?▼

No. The skill never blocks on missing requirement.md, design.md, or plan.md files. Those artifacts belong to the formal chain workflow; this skill exists precisely for the case where none of them exist.

When should I use do-execute-plan instead of do-implement?▼

Use do-execute-plan when a plan.md with a multi-task checklist exists and needs orchestration through specialist subagents. Use do-implement for one-off fixes, described features, or review comments where no task checklist exists.

What happens if the readiness check returns STOP or ASK_USER?▼

On STOP, the skill refuses to modify source and reports which claim is conflicted. On ASK_USER, it asks the owed question through the questions mechanism and waits, since editing first would silently decide on the user's behalf.