dev-orchestrator

Orchestrates a seven-step pipeline for feature implementation, bug fixes, and refactoring with TDD enforcement.

Updated Apr 5, 2026
One-click install
npx skills add https://github.com/Simon-YHKim/eject-button --skill dev-orchestrator-simon-yhkim
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: dev-orchestrator
Source: https://github.com/Simon-YHKim/eject-button/tree/main/.claude/skills/dev-orchestrator
Command: npx skills add https://github.com/Simon-YHKim/eject-button --skill dev-orchestrator-simon-yhkim

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Day-to-day coding requests like adding features, fixing bugs, or refactoring often skip critical steps such as diagnosis, test-first development, and pre-merge cleanup, leading to regressions and messy commits. This Skill chains the entire workflow into one automatic pipeline so nothing gets skipped. ## Core Features & Use Cases - Seven-Step Pipeline: Diagnose, structure check, TDD test-first, scenario testing, reactive code health scan, pre-merge cleanup, and conventional commit. - TDD Guard Mode: Blocks source changes that lack corresponding test changes, enforcing RED-GREEN-REFACTOR discipline. - Scenario Planning: Applies a seven-category test matrix (Happy/Sad/Bad/Race/Boundary/Permission/State) for complex changes involving multiple states or external APIs. - Use Case: A user asks to add a refund feature to a payment module. The Skill diagnoses the request, checks file placement, writes failing tests first, expands scenarios for partial refunds, runs cleanup, and commits with a conventional feat(payment): message. ## Quick Start Ask the agent to implement a feature, fix a bug, or refactor code in your existing project, and it will run the full seven-step pipeline automatically.

Frequently Asked Questions about dev-orchestrator

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

FAQPage Schema
How do I enforce test-driven development on feature requests?

This Skill enforces TDD through Guard Mode, which blocks source code changes that lack corresponding test changes. It follows the RED-GREEN-REFACTOR cycle, requiring a failing test before any implementation begins.

What workflow runs when I ask to fix a bug?

Bug fixes trigger a seven-step pipeline: diagnosis, structure check, a failing reproduction test, scenario expansion if complex, reactive code health scan, pre-merge cleanup, and a conventional commit with a fix(scope) prefix.

When should I use dev-orchestrator versus app-dev-orchestrator?

Use dev-orchestrator for changes to existing projects such as features, bugs, and refactoring. Use app-dev-orchestrator for building a new app from scratch, which runs a 21-step pipeline instead.

Does the pipeline skip steps for simple changes?

Yes, a condensed mode applies to simple changes involving one file, one function, and no external dependencies. It reduces structure checks to file placement only and skips scenario planning and reactive health scans.

What commit format does the pipeline produce?

Commits follow the Conventional Commits specification with atomic scope: fix(scope) for bugs, feat(scope) for features, refactor(scope) for restructuring, and test(scope) for test-only changes.