@allthingsclaude/blueprints 0.3.0-beta.25 → 0.3.0-beta.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -323,7 +323,7 @@ Examples (assuming 2 plans already exist — `PLAN_00_INITIAL.md` and `PLAN_01_A
323
323
 
324
324
  ## Update Active Plan Tracker (MANDATORY)
325
325
 
326
- **This step is NOT optional.** After writing the plan file, you MUST create or update `{{STATE_FILE}}`. Other commands (`/auto`, `/kickoff`, `/implement`, `/parallelize`) depend on this file to detect the active plan. If STATE.md is missing, the entire workflow breaks.
326
+ **This step is NOT optional.** After writing the plan file, you MUST create or update `{{STATE_FILE}}`. Other commands (`/autopilot`, `/kickoff`, `/implement`, `/parallelize`) depend on this file to detect the active plan. If STATE.md is missing, the entire workflow breaks.
327
327
 
328
328
  ```bash
329
329
  mkdir -p $(dirname {{STATE_FILE}})
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: codebase-research
2
+ name: research-codebase
3
3
  description: Use PROACTIVELY when user asks to research, explore, investigate, analyze, or understand the codebase structure, code patterns, architecture, file organization, implementation details, or how something works in the code. Triggers on keywords - research codebase, explore code, investigate implementation, analyze architecture, find in code, how does X work, where is X implemented.
4
4
  tools: Glob, Grep, Read, Bash
5
5
  model: {{MODEL}}
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: docs-research
2
+ name: research-docs
3
3
  description: Use PROACTIVELY when user asks about library APIs, framework documentation, package usage, dependency documentation, or how to use a specific library/framework. Triggers on keywords - library docs, API reference, how to use [library], [framework] documentation, package documentation, dependency usage, official docs for [library].
4
4
  tools: mcp__context7__get-library-docs, mcp__context7__resolve-library-id, Read, Grep
5
5
  model: {{MODEL}}
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: web-research
2
+ name: research-web
3
3
  description: Use PROACTIVELY when user asks to research, find, look up, or investigate online resources, documentation, best practices, tutorials, guides, or examples from the web. Triggers on keywords - research online, find docs, look up best practices, search web, what's the latest, how to do X (modern approach), industry standards, check documentation.
4
4
  tools: WebSearch, WebFetch
5
5
  model: {{MODEL}}
@@ -326,7 +326,7 @@ The hero is the first impression — make it count.
326
326
 
327
327
  ## Integration with Other Commands
328
328
 
329
- When called from `/auto`, `/implement`, or `/parallelize`:
329
+ When called from `/autopilot`, `/implement`, or `/parallelize`:
330
330
  - This agent handles any plan task tagged as "landing page", "homepage design", "marketing page", or similar
331
331
  - It replaces the generic implement agent for these specific tasks
332
332
  - After completion, control returns to the calling workflow
@@ -4,7 +4,7 @@ argument-hint: [--full] [feature description or plan name]
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
7
- # Auto Mode
7
+ # Autopilot Mode
8
8
 
9
9
  Full autonomous development loop. I'll take it from idea to committed code on a feature branch.
10
10
 
@@ -34,9 +34,9 @@ $ARGUMENTS
34
34
 
35
35
  ---
36
36
 
37
- ## Auto Mode Protocol
37
+ ## Autopilot Protocol
38
38
 
39
- You are now in **AUTO MODE** — a full development loop that orchestrates the entire workflow from idea to committed code. Follow these steps precisely and in order.
39
+ You are now in **AUTOPILOT MODE** — a full development loop that orchestrates the entire workflow from idea to committed code. Follow these steps precisely and in order.
40
40
 
41
41
  ### Step 0: Parse Arguments
42
42
 
@@ -296,7 +296,7 @@ Review security report:
296
296
  After everything is done (or stopped), provide a final summary:
297
297
 
298
298
  ```markdown
299
- **Auto Mode Complete**
299
+ **Autopilot Complete**
300
300
 
301
301
  **Branch**: `feat/{name}`
302
302
  **Plan**: {NAME}
@@ -319,14 +319,14 @@ After everything is done (or stopped), provide a final summary:
319
319
  **Next Steps**:
320
320
  - Review changes: `git log main..feat/{name} --oneline`
321
321
  - Create PR when ready: `gh pr create`
322
- - Or continue working: `/auto` (will resume from STATE.md)
322
+ - Or continue working: `/autopilot` (will resume from STATE.md)
323
323
  ```
324
324
 
325
325
  ---
326
326
 
327
327
  ## Commit Checkpoint Rules
328
328
 
329
- Auto mode commits **early and often** using the commit agent (`subagent_type="commit"`). The commit agent determines the right prefix (`feat:`, `fix:`, `refactor:`, `chore:`, `docs:`, etc.) based on the changes.
329
+ Autopilot commits **early and often** using the commit agent (`subagent_type="commit"`). The commit agent determines the right prefix (`feat:`, `fix:`, `refactor:`, `chore:`, `docs:`, etc.) based on the changes.
330
330
 
331
331
  **When to commit:**
332
332
  - After bootstrap scaffolding is created
@@ -395,7 +395,7 @@ Auto mode commits **early and often** using the commit agent (`subagent_type="co
395
395
  - Mark all tasks as `✅` in the plan's task tables
396
396
  - Set `**Status**` to `✅ Complete`
397
397
 
398
- If `/auto` is interrupted or paused, ensure STATE.md reflects where it stopped so the next `/auto` run can resume correctly. Plan document checkboxes are updated by the implement/parallelize agents.
398
+ If `/autopilot` is interrupted or paused, ensure STATE.md reflects where it stopped so the next `/autopilot` run can resume correctly. Plan document checkboxes are updated by the implement/parallelize agents.
399
399
 
400
400
  ### Keep the User Informed
401
401
  - Brief status updates between major steps
@@ -26,7 +26,7 @@ Before brainstorming, quickly assess the current project:
26
26
  **Is this an empty/new project?** If there are fewer than 5 source files and no meaningful project configuration, this is likely a **new project**. In that case:
27
27
  - Mention to the user that this looks like a new project and brainstorming is a great starting point
28
28
  - The brainstorm should focus heavily on **tech stack decisions** (see Step 1 below)
29
- - When brainstorming is complete, suggest `/auto` which will handle planning, bootstrapping, and implementation end-to-end
29
+ - When brainstorming is complete, suggest `/autopilot` which will handle planning, bootstrapping, and implementation end-to-end
30
30
 
31
31
  ## Brainstorming Framework
32
32
 
@@ -112,7 +112,7 @@ Throughout brainstorming, actively use the `/critique`, `/verify`, and `/challen
112
112
 
113
113
  If the user shares images during brainstorming (screenshots, mockups, design references, wireframes, inspiration), **track their file paths**. These are critical for downstream plan creation.
114
114
 
115
- When brainstorming is complete and you suggest `/plan` or `/auto`:
115
+ When brainstorming is complete and you suggest `/plan` or `/autopilot`:
116
116
  - Mention the collected image paths in your handoff so the plan agent copies them to `{{TASKS_DIR}}/references/`
117
117
  - If images were shared via the conversation (e.g., user provided a file path or pasted a screenshot), note them explicitly in the brainstorm summary
118
118
 
@@ -140,14 +140,14 @@ Once we've thoroughly explored the problem space, settled on a tech stack, and c
140
140
  | Command | What it does |
141
141
  |---|---|
142
142
  | `/bootstrap {NAME}` | Generate a plan + bootstrap script to scaffold the project. Good when you want to review the scaffolding before building. |
143
- | `/auto {NAME}` | Full autonomous loop — planning, bootstrapping, implementation, and commit. Good when you want to go hands-off. |
143
+ | `/autopilot {NAME}` | Full autonomous loop — planning, bootstrapping, implementation, and commit. Good when you want to go hands-off. |
144
144
 
145
145
  **For existing projects:**
146
146
 
147
147
  | Command | What it does |
148
148
  |---|---|
149
149
  | `/plan {NAME}` | Capture brainstorming findings into a structured implementation plan. Good when you want to review before implementing. |
150
- | `/auto {NAME}` | Full autonomous loop — planning, implementation, validation, and commit. Good when you want to go hands-off. |
150
+ | `/autopilot {NAME}` | Full autonomous loop — planning, implementation, validation, and commit. Good when you want to go hands-off. |
151
151
 
152
152
  Always present the relevant options and let the user choose how they want to proceed.
153
153
 
@@ -18,27 +18,27 @@ $ARGUMENTS
18
18
 
19
19
  Analyze the query to determine the best research agent:
20
20
 
21
- **Use `codebase-research` agent when:**
21
+ **Use `research-codebase` agent when:**
22
22
  - Query mentions "in this codebase", "how does X work here", "where is X implemented"
23
23
  - Looking for files, components, functions, or code patterns
24
24
  - Understanding architecture, structure, or current implementation
25
25
  - Keywords: "explore", "find in code", "how does our", "where is", "codebase structure"
26
26
 
27
- **Use `docs-research` agent when:**
27
+ **Use `research-docs` agent when:**
28
28
  - Query mentions specific library/framework APIs (React, Next.js, Prisma, tRPC, etc.)
29
29
  - Looking for package documentation or how to use a dependency
30
30
  - Questions about official API references
31
31
  - Keywords: "library docs", "API reference", "how to use [library]", "documentation for"
32
32
  - Check package.json first to see if mentioned library is a project dependency
33
33
 
34
- **Use `web-research` agent when:**
34
+ **Use `research-web` agent when:**
35
35
  - Query asks for "latest", "best practices", "how to do X"
36
36
  - Looking for online tutorials, guides, or examples
37
37
  - Researching industry standards or modern approaches
38
38
  - No specific library mentioned, or general "how to" questions
39
39
  - Keywords: "research online", "best practices", "modern approach", "latest", "tutorial"
40
40
 
41
- **Default to `codebase-research`** if the query is ambiguous and could apply to understanding existing code.
41
+ **Default to `research-codebase`** if the query is ambiguous and could apply to understanding existing code.
42
42
 
43
43
  ---
44
44
 
@@ -46,9 +46,9 @@ Analyze the query to determine the best research agent:
46
46
 
47
47
  Based on the query above, determine which agent to use and launch it with the Task tool:
48
48
 
49
- - `subagent_type="codebase-research"` for codebase exploration
50
- - `subagent_type="docs-research"` for library documentation
51
- - `subagent_type="web-research"` for web searching
49
+ - `subagent_type="research-codebase"` for codebase exploration
50
+ - `subagent_type="research-docs"` for library documentation
51
+ - `subagent_type="research-web"` for web searching
52
52
 
53
53
  Pass the full query as the prompt to the agent.
54
54
 
@@ -49,7 +49,7 @@ If no references are provided, the agent will ask you to choose a style directio
49
49
 
50
50
  ### How It Integrates
51
51
 
52
- - In `/auto` or `/implement` — if the plan includes a landing page task, the showcase agent is used instead of the generic implement agent for that task
52
+ - In `/autopilot` or `/implement` — if the plan includes a landing page task, the showcase agent is used instead of the generic implement agent for that task
53
53
  - In `/parallelize` — landing page work can be a dedicated stream using the showcase agent
54
54
  - Standalone — run `/showcase` directly to design a landing page from scratch or redesign an existing one
55
55
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allthingsclaude/blueprints",
3
- "version": "0.3.0-beta.25",
3
+ "version": "0.3.0-beta.27",
4
4
  "description": "Claude Code commands and agents for enhanced AI-assisted development workflows",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",