From taskmaster
Executes a pipeline of commands from a specification string, supporting conditions, iterations, variables, error handling, retries, and parallel branches.
How this command is triggered — by the user, by Claude, or both
Slash command
/taskmaster:command-pipelineThe summary Claude sees in its command listing — used to decide when to auto-load this command
Execute a pipeline of commands based on a specification. Arguments: $ARGUMENTS ## Command Pipeline Execution Parse pipeline specification from arguments. Supported formats: ### Simple Pipeline `init → expand-all → sprint-plan` ### Conditional Pipeline `status → if:pending>10 → sprint-plan → else → next` ### Iterative Pipeline `for:pending-tasks → expand → complexity-check` ### Smart Pipeline Patterns **1. Project Setup Pipeline** **2. Daily Work Pipeline** **3. Task Completion Pipeline** **4. Quality Check Pipeline** ### Pipeline Features **Variables** - Store results: `s...
Execute a pipeline of commands based on a specification.
Arguments: $ARGUMENTS
Parse pipeline specification from arguments. Supported formats:
init → expand-all → sprint-plan
status → if:pending>10 → sprint-plan → else → next
for:pending-tasks → expand → complexity-check
1. Project Setup Pipeline
init [prd] →
expand-all →
complexity-report →
sprint-plan →
show first-sprint
2. Daily Work Pipeline
standup →
if:in-progress → continue →
else → next → start
3. Task Completion Pipeline
complete [id] →
git-commit →
if:blocked-tasks-freed → show-freed →
next
4. Quality Check Pipeline
list in-progress →
for:each → check-idle-time →
if:idle>1day → prompt-update
Variables
status → $count=pending-countif:$count>10expand $high-priority-tasksError Handling
try:complete → catch:show-blockersoptional:test-runretry:3:commitParallel Execution
[analyze | test | lint]parallel → join:reportThis enables complex workflows like:
parse-prd → expand-all → filter:complex>70 → assign:senior → sprint-plan:weighted
npx claudepluginhub eyaltoledano/claude-task-master --plugin taskmaster/run-programExecutes a declarative YAML pipeline from the programs/ directory, supporting human review gates, conditional steps, parallel execution, and variable substitution.
/flowOrchestrates the full development cycle from idea to pull request — feature definition, contracts, planning, implementation, review, validation, and PR creation. Also supports a bug fix pipeline via --fix.
/orchestrateDecomposes complex tasks into ordered sub-tasks with dependencies and parallel execution, tracks progress and failures, verifies results, and outputs a status summary table.
/just-do-itExecutes all remaining Groundwork tasks in sequence until completion, stopping on first failure. Resolves monorepo project context and shows model recommendations.
/executeExecutes tasks from a completed plan using isolated subagents. Prompts for project directory, verifies planning, runs task-executor subagents, handles checkpointing and crash recovery.
/pm-workExecutes batches of project tasks through 8-phase loop: prioritize, select, research, decompose, execute, validate, checkpoint. Supports --task, --serial, --batch-size, --dry-run, --gate flags.