project-implement

Orchestrates multi-phase project implementation from request to completion using specialized agent swarms.

1|Updated Feb 6, 2026
One-click install
npx skills add https://github.com/ETdoFresh/claude-marketplace --skill project-implement-etdofresh
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: project-implement
Source: https://github.com/ETdoFresh/claude-marketplace/tree/main/plugins/project-runner/skills/project-implement
Command: npx skills add https://github.com/ETdoFresh/claude-marketplace --skill project-implement-etdofresh

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Building a project from scratch involves many disconnected steps—exploring the codebase, gathering requirements, planning, breaking work into milestones, and implementing tasks. This Skill automates that entire lifecycle through a structured multi-phase orchestration workflow, so a single request drives a project from zero to fully implemented. ## Core Features & Use Cases - End-to-End Phase Orchestration: Runs setup, exploration, requirements interview, planning, milestone creation, verification, and task creation in a fixed sequence with resumable status tracking in status.md. - Parallel Implementation Swarm: Implements tasks using either an Agent Team (up to 5 teammates) or wave-based parallel planner/implementer/evaluator subagents with dependency-aware scheduling. - Self-Verifying Milestones: A verifier agent checks milestone completeness and fixes gaps until verification passes, and evaluators create remediation tasks when implementations fail acceptance criteria. - Use Case: A user says "build me a REST API for a todo app." The Skill creates projects/001-rest-api-todo-app/, interviews the user about requirements, produces a plan and verified milestones, then implements every task with a swarm of agents until all acceptance criteria pass. ## Quick Start Ask the assistant to build your project, for example: "Build me a REST API for a todo app with user authentication."

Frequently Asked Questions about project-implement

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

FAQPage Schema
How do I start a new project from a single request?

Invoke the skill with a request like "build me a REST API for a todo app." It creates a numbered project folder under projects/, saves your request, then runs exploration, interview, planning, and implementation phases automatically.

How does the implementation swarm execute tasks in parallel?

The swarm picks up to 5 unblocked pending tasks per wave, spawning parallel planner, implementer, and evaluator subagents for each. If Agent Teams are available, up to 5 teammates claim and implement tasks continuously instead.

Can I resume an interrupted project implementation?

Yes. Each project folder contains a status.md file tracking the current phase and progress. When you reference an existing project, the skill detects the incomplete phase and offers to resume from that point.

What happens when a task fails its acceptance criteria?

The evaluator agent marks the task as failed and creates a remediation task with appropriate dependencies describing what needs fixing. The swarm then picks up the remediation task in a later wave.

How are milestones verified before implementation begins?

A milestone verifier agent checks all milestone files for completeness, correctness, and consistency. It fixes any issues directly and re-runs its checklist until the verification report reaches a PASS status.

When should I not use multi-phase project orchestration?

Avoid it for small single-file changes, quick bug fixes, or simple scripts where the interview, planning, and verification overhead exceeds the implementation effort. It is designed for substantial multi-phase builds.