speckit-opsmill-auto

Orchestrates the full speckit workflow from specification through implementation autonomously.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Running a complete spec-driven development cycle (specify, plan, critique, tasks, implement, review) normally requires manually invoking each phase and making decisions at every step. This Skill chains the entire speckit pipeline into one hands-off execution, making all intermediate decisions autonomously. ## Core Features & Use Cases - End-to-end orchestration: Delegates to the speckit-opsmill-prep skill (Specify → Plan → Critique → Tasks with alignment check) and the speckit-opsmill-implement skill (Preflight → Implement → Review → Final report) in sequence. - Deterministic hand-off: Parses literal STATUS lines from sub-skills to decide whether to proceed, stopping on BLOCKED states instead of guessing from prose output. - Autonomous decision-making: Resolves clarification questions, research decisions, and spec drift remediation without pausing for user input. - Use Case: A developer describes a new feature in one sentence; the Skill produces a validated specification, task breakdown, implemented code, and a review report, leaving only the extraction step for manual follow-up. ## Quick Start Run the speckit auto workflow with a feature description such as "add tenant bandwidth throttling to the fabric generator" and let it execute the full pipeline autonomously.

Frequently Asked Questions about speckit-opsmill-auto

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

FAQPage Schema
How do I run the full speckit workflow in one command?▼

Invoke the speckit-opsmill-auto skill with your feature description as the argument. It runs specify, plan, critique, tasks, implement, and review back-to-back, making all decisions autonomously and stopping only before the extraction phase.

What does the speckit auto workflow do when a phase gets blocked?▼

It parses the literal STATUS line emitted by each sub-skill. On STATUS: BLOCKED it surfaces the reason and stops without proceeding to implementation, and it never retries failed phases from the orchestrator level.

Does speckit-opsmill-auto require a specific project structure?▼

Yes, it requires a spec-kit project structure with a .specify/ directory. It also depends on the sibling skills speckit-opsmill-prep and speckit-opsmill-implement being available for delegation.

Does the auto workflow open a PR or run extraction automatically?▼

No. It deliberately stops after the implementation review and final report. Extraction via speckit-opsmill-extract is left as a manual follow-up so you can review the implementation report first.

What happens if the spec alignment check keeps failing?▼

The prep sub-skill retries plan, critique, and tasks within its retry budget to fix spec drift. If alignment never converges, it returns STATUS: BLOCKED and the orchestrator stops rather than implementing a misaligned spec.