implement-roadmap

Coordinate deterministic scripts and agents to implement roadmap steps into PRs.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/agentic-cookbook/roadmaps --skill implement-roadmap-agentic-cookbook
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: implement-roadmap
Source: https://github.com/agentic-cookbook/roadmaps/tree/main/skills/implement-roadmap
Command: npx skills add https://github.com/agentic-cookbook/roadmaps --skill implement-roadmap-agentic-cookbook

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This skill coordinates a deterministic workflow to implement roadmap features by invoking a coordinator and worker agents, turning planning artifacts into completed code changes while preserving roadmap integrity.

Core Features & Use Cases

  • Orchestrates end-to-end roadmap implementation using a deterministic coordinator and worker agents.
  • Enforces preflight checks, environment validation, step-level execution, and final verification.
  • Keeps roadmap artifacts in separate roadmaps directory and in worktrees; final changes are merged via PR.
  • When used after /plan-roadmap, enables seamless transition from planning to implementation and delivery.

Quick Start

Activate with /implement-roadmap to execute roadmap steps using the agent-driven coordinator and worker processes.

Frequently Asked Questions about implement-roadmap

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

FAQPage Schema
How do I automate roadmap implementation using agents in a deterministic workflow?

Automate roadmap implementation by using a coordinator agent to orchestrate worker agents, enforcing deterministic preflight checks, step-level execution, and final verification before merging changes via a PR.

How does a deterministic coordinator validate agent progress before proceeding to the next step?

A deterministic coordinator validates progress by running strict invariants, ensuring workers execute only the designated step and reporting to a dashboard before the system validates completion and allows the workflow to proceed.

Can I use git worktrees to isolate feature implementation steps without copying the roadmap file?

Yes, you can use git worktrees to isolate implementation steps, and the system strictly enforces the invariant that no roadmap file copies are placed into worktrees, keeping artifacts in a separate roadmaps directory instead.

What's the best way to transition from planning artifacts to working code changes for a feature roadmap?

Transition from planning to working code by applying a deterministic workflow that translates planning artifacts into changes through environment checks, step-by-step agent execution, verification, and final PR integration.

Do I need a separate roadmaps directory to execute bugfix roadmaps with agent workers?

Yes, you need a separate roadmaps directory to preserve roadmap integrity, as the system enforces strict invariants that keep roadmap artifacts separate from worktrees where worker agents execute their designated steps.

Why does the coordinator require environment validation before executing roadmap steps?

The coordinator requires environment validation as a preflight check to ensure deterministic execution, preventing workflow failures by verifying the setup before agents attempt to translate planning artifacts into working changes.