Help us improve
Share bugs, ideas, or general feedback.
From shipit
Use when you have a task plan and need to execute it with parallel subagents following implement-review-verify pipeline
npx claudepluginhub jugrajsingh/skillgarden --plugin shipitHow this skill is triggered — by the user, by Claude, or both
Slash command
/shipit:executingThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Execute tasks from a plan using a 3-stage subagent pipeline per task with native Task coordination.
Creates p5.js generative art with seeded randomness, noise fields, and interactive parameter exploration. Use for algorithmic art, flow fields, or particle systems.
Share bugs, ideas, or general feedback.
Execute tasks from a plan using a 3-stage subagent pipeline per task with native Task coordination.
$ARGUMENTS = path to task_plan.md or slug.
If $ARGUMENTS is empty:
For each task in the current batch, create three native Tasks using TaskCreate:
Implementation Task
Spec Review Task
Quality Review Task
This creates a dependency chain: Implement -> Spec Review -> Quality Review
For each task in the batch, run the 3-stage pipeline sequentially: Implement → Spec Review → Quality Review. Each stage spawns a Task agent.
Full agent instructions, prompts, and failure handling: references/pipeline-stages.md
After all tasks in the current batch complete (or are flagged):
Mirror native Task statuses to progress.md:
Log batch completion in progress.md Batch Log section:
### Batch {N} — {DATE}
- Tasks completed: {N}/{total}
- Spec reviews: {pass_count} pass, {fail_count} fail
- Quality findings: {critical} critical, {major} major, {minor} minor
Present batch checkpoint via AskUserQuestion with three options:
After all batches complete:
shipit:verifying skill for final verification against the full plan's acceptance criteria## Execution Complete
Plan: {slug}
Batches: {completed}/{total}
Tasks: {done}/{total} ({blocked} blocked, {skipped} skipped)
### Review Summary
- Spec reviews: {pass}/{total}
- Quality findings: {critical} critical, {major} major, {minor} minor
### Verification
{ result from verifying skill }
### Next Steps
{ recommend /shipit:ship if verification passes }
{ recommend fixing issues if verification fails }
references/batch-protocol.md for detailed pipeline and failure handling protocol