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 shipitThis skill is limited to using the following tools:
Execute tasks from a plan using a 3-stage subagent pipeline per task with native Task coordination.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
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