work-pipeline

Orchestrates multi-agent development pipelines triggered by bracket tags in user messages.

3.4k|487|Updated Jul 25, 2025
One-click install
npx skills add https://github.com/davepoon/buildwithclaude --skill work-pipeline
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: work-pipeline
Source: https://github.com/davepoon/buildwithclaude/tree/main/plugins/agents-uc-taskmanager/skills/work-pipeline
Command: npx skills add https://github.com/davepoon/buildwithclaude --skill work-pipeline

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Coordinating multi-step software development work across specialized agents (specifier, planner, builder, verifier, committer) is error-prone and manual. This Skill automates the orchestration by detecting bracket tags like [new-feature] or [bugfix] at the start of a user message and running the appropriate WORK-PIPELINE flow.

Core Features & Use Cases

  • Tag-Based Triggering: Detects any message starting with a square-bracket tag such as [new-feature], [enhancement], [bugfix], or [WORK start] to launch the pipeline.
  • Multi-Agent Orchestration: Sequences specifier, planner, scheduler, builder, verifier, and committer sub-agents according to the execution mode (direct, pipeline, or full) determined by the specifier.
  • Approval Gates and Auto Mode: Pauses for explicit user approval after specification and planning stages, unless the message ends with "auto" or "자동으로" to run the entire pipeline unattended.
  • Use Case: A developer types "[bugfix] Fix the login timeout issue auto" and the pipeline analyzes the requirement, builds the fix, verifies it, and commits the change without further prompts.

Quick Start

Start your request with a bracket tag like [new-feature] followed by your requirement, for example: [new-feature] Add a dark mode toggle to the settings page.

Frequently Asked Questions about work-pipeline

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

FAQPage Schema
How do I trigger the work pipeline with a bracket tag?

Start your message with any square-bracket tag such as [new-feature], [bugfix], [enhancement], or [WORK start], followed by your requirement. The skill detects the tag and launches the WORK-PIPELINE orchestration flow automatically.

How do I run the pipeline without approval prompts?

End your message with the word "auto" or "자동으로" to skip all approval gates. This is the only way to bypass the mandatory stops after the specifier and planner stages.

What are the direct, pipeline, and full execution modes?

The specifier agent determines the mode based on requirement complexity. Direct mode runs builder then committer, pipeline mode adds a verifier step, and full mode adds planner and scheduler stages with a second approval gate.

Why do sub-agents fail to find their reference files?

Sub-agents loop or fail when REFERENCES_DIR is missing from their prompt. The skill derives this absolute path from the skill base directory and requires it at the top of every sub-agent invocation.

When should I not use auto mode for the pipeline?

Avoid auto mode for large or ambiguous requirements where the specifier's Requirement.md or the planner's output needs human review. Approval gates exist to catch misunderstandings before builders write code.