Reference for how the built-in /batch command integrates with blueprint-dev workflows — parallel codebase-wide changes using worktrees with project context.
npx claudepluginhub dlabs/claude-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
How the built-in /batch command fits into blueprint-dev workflows.
/batch is a built-in Claude Code command that performs codebase-wide changes in parallel:
/simplify, and creates a PRThis is ideal for repetitive, pattern-based changes that touch many files but follow the same transformation logic.
| Signal | Use /bp:build | Use /bp:batch |
|---|---|---|
| Files affected | 1-15 | 10+ (same pattern) |
| Change pattern | Unique per file | Same transformation repeated |
| Dependencies between changes | Yes | No (independent units) |
| Examples | Add a new feature, refactor a module | Rename API field across all endpoints, migrate from v1 to v2 SDK, add logging to all controllers |
| Planning needed | Yes (requirements, architecture) | Minimal (pattern is known) |
| Review strategy | Single /bp:review | /bp:review per PR or batch review |
/bp:batch is a blueprint-dev wrapper around the built-in /batch. It adds project context:
| Feature | Raw /batch | /bp:batch |
|---|---|---|
| Stack conventions | No | Reads .blueprint/stack-profile.json |
| Project rules | No | Reads CLAUDE.md |
| Plan/ADR context | No | Reads .blueprint/plans/, .blueprint/adrs/ |
| Batch manifest | No | Creates .blueprint/batches/{date}-{slug}.md |
| Post-batch review | No | Offers /bp:review on completed PRs |
| /simplify | Each worker runs it | Same (inherited from /batch) |
/batch naturally aligns with trunk-based development:
This is better TBD practice than a single massive PR touching 50 files.
/bp:batch "migrate all API endpoints from v1 to v2 SDK"
│
├── Step 1: Read project context (stack profile, CLAUDE.md, plans)
├── Step 2: Invoke built-in /batch with project context
│ ├── /batch decomposes into units
│ ├── Spawns parallel worktree workers
│ ├── Each worker: implement → /simplify → create PR
│ └── Returns summary
├── Step 3: Create batch manifest at .blueprint/batches/
└── Step 4: Show summary, offer /bp:review on PRs
Each batch run creates a manifest at .blueprint/batches/{date}-{slug}.md:
# Batch: {description}
**Date**: {YYYY-MM-DD}
**Units**: {count}
**PRs created**: {count}
## Units
| # | Description | PR | Status |
|---|-------------|-----|--------|
| 1 | {unit desc} | #{pr} | created |
| 2 | {unit desc} | #{pr} | created |
## Context Used
- Stack profile: .blueprint/stack-profile.json
- CLAUDE.md conventions applied
/bp:batch instead of /bp:build/bp:batch as an alternativeActivates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.