speckit-opsmill-implement

Executes speckit tasks.md implementation in clean-context subagents with review and reporting.

9|2|Updated Aug 27, 2025
One-click install
npx skills add https://github.com/opsmill/infrahub-solution-ai-dc --skill speckit-opsmill-implement-opsmill
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: speckit-opsmill-implement
Source: https://github.com/opsmill/infrahub-solution-ai-dc/tree/main/.agents/skills/speckit-opsmill-implement
Command: npx skills add https://github.com/opsmill/infrahub-solution-ai-dc --skill speckit-opsmill-implement-opsmill

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Implementing a large spec-kit task list in one context leads to context bloat, inconsistent commits, and unverified tests. This Skill orchestrates the implementation phase by dispatching each chunk of tasks.md to a fresh subagent, enforcing local test-pass evidence, and producing an auditable final report. ## Core Features & Use Cases - Chunked implementation loop: Splits tasks.md along phase headings and dispatches each chunk to a clean-context subagent with a self-contained brief and response contract. - Mandatory local-pass evidence: Requires every new or modified test to be observed passing locally, with the run command, timestamp, and verbatim pass line recorded. - Review and final report: Runs a full-diff review after all chunks, fixes high-severity findings, and writes a structured opsmill-implement-report.md with a machine-readable STATUS line. - Use Case: After running the speckit prep phase on a feature spec, invoke this Skill to implement all tasks chunk-by-chunk, then receive a ledger of commits, test evidence, and review findings without manually supervising each step. ## Quick Start Run the speckit-opsmill-implement skill on my most recent spec directory under specs/ to implement all tasks and produce the final report.

Frequently Asked Questions about speckit-opsmill-implement

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

FAQPage Schema
How do I run the speckit implementation phase on an existing tasks.md?▼

Invoke this Skill with an optional spec directory argument, or let it pick the most recently modified specs/ directory containing tasks.md. It chunks the tasks, dispatches clean-context subagents per chunk, and finishes with a review and report.

How does chunked subagent implementation work in spec-kit?▼

The orchestrator splits tasks.md along its phase headings, then dispatches one clean-context subagent per chunk with the exact task text, repo paths, and a response contract. Subagents commit their own work; the orchestrator never edits feature code directly.

What prerequisites does this Skill require before running?▼

It requires a spec-kit project structure with a .specify directory and a feature directory under specs/ containing spec.md, plan.md, and tasks.md. The working tree must be clean; otherwise the run aborts with STATUS: BLOCKED.

Can implementation subagents run in parallel to speed things up?▼

No. The Skill explicitly forbids running two implementation subagents in parallel because chunks may share files and conflicting writes cost more than the time saved. Chunks execute strictly sequentially.

What happens if a chunk is blocked or test evidence is missing?▼

Blocked chunks are recorded with a reason, and the orchestrator decides whether to re-dispatch, split the chunk smaller, or move on. Missing local-pass evidence marks the report INCOMPLETE and lists producing that evidence as the first next step.