@allthingsclaude/blueprints 0.3.0-beta.26 → 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.
@@ -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}}
@@ -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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allthingsclaude/blueprints",
3
- "version": "0.3.0-beta.26",
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",