work-pipeline
The work-pipeline skill activates a structured development workflow when user messages begin with square bracket tags like [new-feature] or [bugfix]. It orchestrates a multi-agent pipeline that analyzes requirements, creates planning documents, and executes work through specifier, planner, scheduler, builder, verifier, and committer agents, with built-in approval gates unless the user specifies "auto" mode for uninterrupted execution.
git clone --depth 1 https://github.com/davepoon/buildwithclaude /tmp/work-pipeline && cp -r /tmp/work-pipeline/plugins/agents-uc-taskmanager/skills/work-pipeline ~/.claude/skills/work-pipelineSKILL.md
# 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: $ARGUMENTSScans the codebase for dead code, tech debt, outdated dependencies, and code quality issues. Delegates to the Centinela (QA) agent.
Creates a complete product feature specification with acceptance criteria, scope, dependencies, and risks. Delegates to the Prometeo (PM) agent.
Implements a feature from its specification. Reads the spec, designs architecture, writes code and tests. Delegates to the Forja (Dev) agent.
Pre-release verification checklist. Validates features, tests, docs, security, and quality gates before shipping. Delegates to the Centinela (QA) agent.
Addresses and fixes findings from a QA code review. Reads the review report, fixes critical and warning issues, and prepares for re-verification. Delegates to the Forja (Dev) agent.
Deep security audit covering OWASP Top 10, authentication, authorization, data protection, dependency vulnerabilities, and secrets scanning. Delegates to the Centinela (QA) agent.
Initialize uc-taskmanager for the current project. Creates works/ directory and configures Bash permissions in .claude/settings.local.json. Use when the user says "uctm init", "initialize uctm", "uctm 초기화", or "초기화".