---
name: Work Pipeline
slug: work-pipeline
category: Automation
description: Work Pipeline detects bracketed tags like [new-feature] or [bugfix] at the start of a user message and triggers a multi-agent software development pipeline. Use it when you want to route tagged requests through specifier, planner, builder, verifier, and committer agents with approval gates.
github: "https://github.com/davepoon/buildwithclaude/tree/main/plugins/agents-uc-taskmanager/skills/work-pipeline"
language: TypeScript
stars: 3298
forks: 459
install: "npx degit https://github.com/davepoon/buildwithclaude/tree/main/plugins/agents-uc-taskmanager/skills/work-pipeline ~/.claude/skills/work-pipeline"
installs_to: ~/.claude/skills/work-pipeline
source_path: plugins/agents-uc-taskmanager/skills/work-pipeline/SKILL.md
collection_size: 25
category_size: 1523
collection_url: "https://dirskills.com/collections/davepoon/buildwithclaude"
added: 2026-08-17T07:08:22.972Z
last_synced: 2026-08-17T07:08:22.972Z
canonical_url: "https://dirskills.com/skills/work-pipeline"
---

# Work Pipeline

Work Pipeline detects bracketed tags like [new-feature] or [bugfix] at the start of a user message and triggers a multi-agent software development pipeline. Use it when you want to route tagged requests through specifier, planner, builder, verifier, and committer agents with approval gates.

**Install:**

```bash
npx degit https://github.com/davepoon/buildwithclaude/tree/main/plugins/agents-uc-taskmanager/skills/work-pipeline ~/.claude/skills/work-pipeline
```

## README

# WORK-PIPELINE Trigger

When the user's message starts with a `[]` tag, start the WORK-PIPELINE by reading `../skills/sdd-pipeline/references/agent-flow.md` and following the orchestration flow.

## Trigger Detection

Any message starting with `[...]` triggers this pipeline:
- `[new-feature]`, `[enhancement]`, `[bugfix]`, `[new-work]`, `[WORK start]`
- Or any custom tag in square brackets

## References Directory (CRITICAL)

When this skill is triggered, Claude Code provides the "Base directory for this skill" as an absolute path.
Derive the **REFERENCES_DIR** from it:

```
REFERENCES_DIR = {Base directory}/../sdd-pipeline/references
```

You MUST pass this absolute path to **every sub-agent invocation** (specifier, planner, scheduler, builder, verifier, committer).
Include it at the top of the prompt text:

```
REFERENCES_DIR={absolute_path}
```

Sub-agents need this path to read their reference files. Without it, they cannot find the files and will loop.

## Pipeline Flow

1. **Call specifier agent** — analyzes the requirement, creates `works/WORK-NN/Requirement.md`, determines execution-mode (direct/pipeline/full)
2. **⛔ STOP — Present the specifier's output summary to the user and WAIT for explicit approval.** Do NOT call the next agent until the user approves. Show what was created (Requirement.md, PLAN.md if direct mode, TASK files) and ask "Proceed?"
3. **Follow the execution-mode** returned by specifier:
   - `direct`: call builder → committer
   - `pipeline`: call builder → verifier → committer in sequence
   - `full`: call planner → **⛔ STOP for 2nd approval** → scheduler → [builder → verifier → committer] × N

## Auto Mode

If the user's message ends with "auto" or "자동으로", skip ALL approval steps and execute the entire pipeline automatically. This is the ONLY case where approval gates can be skipped.

## Arguments

User requirement: $ARGUMENTS
