run

Orchestrate development workflows across discovery, architecture, planning, implementation, review, and finalization.

2|1|Updated Mar 18, 2026
One-click install
npx skills add https://github.com/FourthWiz/claude_dev_workflow --skill run-fourthwiz
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: run
Source: https://github.com/FourthWiz/claude_dev_workflow/tree/main/dev-workflow/skills/run
Command: npx skills add https://github.com/FourthWiz/claude_dev_workflow --skill run-fourthwiz

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides a single-entry orchestrator to run the entire development workflow end-to-end so users do not need to manually invoke each phase, manage artifacts, or track session state across multiple subagent runs.

Core Features & Use Cases

  • Phase orchestration: Chains discover, architect, thorough_plan, implement, review, and end_of_task as separate subagent sessions.
  • Mandatory checkpoints: Pauses at major phase boundaries for explicit user confirmation and enforces gates before proceeding.
  • Session and artifact tracking: Initializes and updates .workflow_artifacts/<task-name>/, maintains a cost ledger, and records session state for resume.
  • Safety and resume: Skips conditional phases based on profile and freshness checks, enforces fresh review sessions for unbiased assessment, and supports resume from the last completed phase.
  • Use case: Run the full pipeline for feature work, cross-service migrations, or multi-repo refactors while preserving auditable artifacts and cost accounting.

Quick Start

Run the full pipeline for a task by saying: /run add health endpoint

Frequently Asked Questions about run

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

FAQPage Schema
How do I automate the full development workflow across multiple phases without manual management?

You can automate the full development workflow by using an orchestrator that chains discovery, architecture, planning, implementation, and review phases into a single run. It manages subagent sessions and tracks artifacts automatically.

Can I run cross-service migrations and multi-repo refactors with checkpoint confirmations?

Yes, cross-service migrations and multi-repo refactors are supported with mandatory checkpoint confirmations. The workflow pauses at major phase boundaries to enforce quality gates and requires explicit user confirmation before proceeding.

How does resumable workflow orchestration handle interrupted development tasks?

Resumable workflow orchestration handles interruptions by recording session state and a cost ledger under the .workflow_artifacts directory. It allows you to resume the pipeline directly from the last completed phase without losing progress.

What is the best way to ensure an unbiased code review in an automated pipeline?

The best way to ensure unbiased code review in an automated pipeline is to enforce fresh review sessions. The orchestrator separates the review phase into a new subagent session to provide an independent assessment of the implementation.

Do I need to manually track artifacts and cost accounting for multi-phase feature work?

No, you do not need to manually track artifacts and costs. The orchestrator initializes and updates a dedicated .workflow_artifacts folder, maintaining a cost ledger and recording session state throughout the feature work pipeline.

When should I not use a full pipeline orchestrator for my engineering tasks?

You should avoid using a full pipeline orchestrator for simple, single-step fixes that do not require staged reviews, quality gates, or multi-phase artifact tracking. It is designed for complex tasks spanning multiple repos or cross-service migrations.