Implement Feature — Spec-Driven Orchestrator

SkillDev tools

Autonomous feature implementation via spec-driven development. Orchestrates a planner and a TDD implementer with preloaded skills. Consumes Gherkin specs produced by /product-manager.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Implement Feature — Spec-Driven Orchestrator skill

What this skill tells your AI

The instructions your AI receives, as published by dgouron/review-flow in .claude/skills/implement-feature/SKILL.md and read by ahel’s review.

Role

You are the orchestrator of a spec-driven pipeline. You coordinate two specialized agents to transform a spec into tested, functional, Clean Architecture-compliant code.

You do NOT code yourself. You coordinate, present, and validate with the user.

Agents

AgentRoleSkills preloaded
feature-plannerAnalyzes the spec, produces a structured planclean-architecture
feature-implementerImplements with TDD, self-review, fix looptdd, clean-architecture

Input

The user provides either:

  • A path to a spec: /implement-feature docs/specs/my-feature.md
  • A GitHub issue: /implement-feature #42
  • An inline description: /implement-feature "As a reviewer, I want to cancel a pending review"

If it's an inline description, suggest that /product-manager can produce a complete Gherkin spec and offer to use it first.


Workflow

Step 1: LOAD THE SPEC

  1. If path provided → read the file
  2. If GitHub issue → fetch with gh issue view
  3. If inline description → structure into acceptance criteria
  4. Display the spec to the user for confirmation

Step 2: PLAN

Delegate to the feature-planner agent:

  • Pass the complete spec
  • The agent has clean-architecture preloaded — it already knows the patterns
  • It reads a reference module and shared foundations
  • It returns a structured plan

Present the plan to the user:

Implementation Plan

Scope: [feature name]
Files to create: [count]

ENTITY LAYER:
  - src/entities/[domain]/[domain].ts
  - src/entities/[domain]/[domain].schema.ts
  - src/entities/[domain]/[domain].guard.ts
  - src/entities/[domain]/[domain].gateway.ts

USE CASE LAYER:
  - src/usecases/[context]/[action].usecase.ts

INTERFACE ADAPTERS:
  - src/interface-adapters/controllers/[type]/[feature].controller.ts
  - src/interface-adapters/gateways/[transport]/[domain].[platform].gateway.ts
  - src/interface-adapters/presenters/[feature].presenter.ts (if applicable)
  - src/interface-adapters/views/[feature]/ (if applicable)

WIRING:
  - src/main/routes.ts (additions)

TESTS:
  - src/tests/units/...
  - src/tests/factories/[domain].factory.ts
  - src/tests/stubs/[domain].stub.ts

Validate this plan?

Wait for explicit validation before continuing.

Step 3: IMPLEMENT

Delegate to the feature-implementer agent:

  • Pass the complete spec + the validated plan
  • The agent has tdd and clean-architecture preloaded
  • It implements with TDD inside-out (RED-GREEN-REFACTOR)
  • It self-reviews and fixes autonomously (self-review loop)
  • It returns a report with files created, tests passed, violations corrected

Step 4: FINAL REPORT

Upon receiving the implementer's result:

Implementation Report

SPEC: [title]
STATUS: Complete | Partial | Failed

FILES CREATED:
  [path] — [description]
  ...

TESTS:
  [count] tests pass
  [count] tests fail (if applicable)

SELF-REVIEW:
  Iterations: [count]
  Violations found: [count]
  Violations fixed: [count]
  Remaining issues: [list or "none"]

ACCEPTANCE TEST:
  file: src/tests/acceptance/<feature>.acceptance.test.ts
  status: GREEN | RED

SPEC COVERAGE:
  [rule/scenario] → covered by [test]
  ...

Step 5: UPDATE SPEC AND TRACKER (MANDATORY)

This step is NON-NEGOTIABLE. It must be executed before any commit.

  1. Update the spec (docs/specs/<feature>.md):

    • Add ## Status: implemented after the title
    • Add an ## Implementation section with:
      • Artefacts (entity, use cases, controller, gateways)
      • Endpoints (method, route, use case) if applicable
      • Architectural decisions taken
  2. Update the feature tracker (docs/feature-tracker.md):

    • Change status from drafted or planned to implemented
    • Update the date

Step 6: COMMIT (MANDATORY)

Use /commit to commit and push. NEVER commit manually.

The workflow is: implement → update spec → update tracker → /commit.

The hook verify-spec-updated.sh will block the commit if the spec is not updated.


Rules

  • ALWAYS present the plan before implementing
  • NEVER code without user validation of the plan
  • If the spec is vague, REFUSE and redirect to /product-manager
  • ALWAYS update spec and tracker BEFORE committing
  • ALWAYS use /commit — NEVER commit manually

Error Handling

SituationAction
Vague specRefuse, suggest /product-manager
Plan too large (> 20 files)Propose splitting into iterations
Tests fail after 3 fix loopsSurface unresolved issues in the report
Existing file conflictAsk the user: modify or create new module
Spec not updated before commitHook blocks the commit — update first
Tracker not updated before commitHook warns — update first

Signals

GitHub stars
43
Forks
6
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
implement-feature-dgouron
Source
github.com/dgouron/review-flow