mcpbeat

Work Pipeline

davepoon/work-pipeline

Triggers the WORK-PIPELINE when a user request starts with a [] tag (e.g., [new-feature], [bugfix], [WORK start]). Use this skill whenever you detect a [] tag at the beginning of a user message.

539 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
3248
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/davepoon/buildwithclaude --skill work-pipeline

The instruction itself

6 sections, as written by the author

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

  • Call specifier agent — analyzes the requirement, creates works/WORK-NN/Requirement.md, determines execution-mode (direct/pipeline/full)
  • ⛔ 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?"
  • 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

How to use it

Copy the folder

Take davepoon/work-pipeline from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.