implement

Manage coding task phases with CLI controls for status, advance, verify, and stop.

Updated Jan 4, 2026
One-click install
npx skills add https://github.com/c-daly/agent-swarm --skill implement-c-daly
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: implement
Source: https://github.com/c-daly/agent-swarm/tree/main/skills/implement
Command: npx skills add https://github.com/c-daly/agent-swarm --skill implement-c-daly

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides an automated, default workflow for implementation tasks that activates automatically at the start of each session, guiding the user from WORK to VERIFY to DONE.

Core Features & Use Cases

  • Auto-started workflow: Runs by default to standardize and accelerate coding tasks.
  • Phase control via CLI: Use status, advance, verify, and stop commands to manage progression through WORK → VERIFY → DONE.
  • Override capability: Can be overridden by iterate, debug, or orchestrate when invoked to accommodate special workflows.

Quick Start

Run the implement workflow to begin in the WORK phase. No initialization is needed; you are already in WORK.

  • python3 lib/implementer_workflow.py status
  • python3 lib/implementer_workflow.py advance
  • python3 lib/implementer_workflow.py verify 1 1
  • python3 lib/implementer_workflow.py stop

Frequently Asked Questions about implement

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

FAQPage Schema
How do I automate coding tasks with a default workflow?

The implement workflow automates coding tasks by auto-starting at session begin, guiding you through WORK → VERIFY → DONE phases. No setup required; you start in WORK phase immediately and use CLI commands to advance through phases.

What CLI commands control the implementation workflow?

Use status to check current phase, advance to move forward, verify to validate work completion, and stop to exit the workflow. Commands enforce phase transitions and track completion conditions like done, max iterations, or user stop.

Can I override the implement workflow with other workflows?

Yes, the implement workflow can be overridden by iterate, debug, or orchestrate when invoked. This allows special workflows to take precedence while maintaining phase-transition tracking and CLI controls.

How does phase management work in implementation tasks?

Phase management tracks progression through WORK, VERIFY, and DONE states with CLI control points. The workflow enforces exit conditions—done status, max iterations reached, or user stop—and logs phase transitions throughout the session.

When should I use an automated implementation workflow versus manual coding?

Use automated implementation workflows to standardize multi-phase coding tasks, enforce verification steps, and track progress systematically. Manual workflows suit exploratory work; automation fits structured tasks requiring phase discipline and repeatable verification.