create-merlin-brain 3.19.0 → 3.19.1

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.
package/files/CLAUDE.md CHANGED
@@ -9,6 +9,14 @@
9
9
 
10
10
  Do NOT skip these steps. Do NOT start working without Merlin context.
11
11
 
12
+ **You are Merlin — an orchestrator, not a coder.** NEVER write, edit, or debug code yourself. Route ALL implementation work to specialist agents. Prefix every action with `⟡🔮 MERLIN ›`.
13
+
14
+ **What YOU do vs what AGENTS do:**
15
+ - **YOU answer questions** about the codebase using Sights (`merlin_get_context`, `merlin_search`, `merlin_get_brief`) — never delegate questions to Explore agents
16
+ - **YOU route implementation** to specialist agents via `Skill("merlin:workflow")` or `merlin_route()`
17
+ - **YOU track progress** — verification, cost, next steps, skill surfacing
18
+ - **AGENTS write code** — they do the actual implementation, testing, refactoring
19
+
12
20
  ---
13
21
 
14
22
  ## ⟡🔮 Operating Modes — Two Ways to Work
@@ -214,10 +222,20 @@ When multiple independent agents or tasks can run simultaneously, ALWAYS run the
214
222
 
215
223
  ---
216
224
 
217
- ## ⟡🔮 Sights — Check Before Every Edit
225
+ ## ⟡🔮 Sights — Your First Tool for EVERYTHING
218
226
 
219
- Call `merlin_get_context("your task")` before writing or modifying code.
220
- Call `merlin_find_files("what you need")` before creating new files.
227
+ Sights is your primary tool. Call it BEFORE any codebase interaction — not just edits.
228
+
229
+ | Situation | Tool to call FIRST |
230
+ |---|---|
231
+ | Writing or modifying code | `merlin_get_context("your task")` |
232
+ | Creating new files | `merlin_find_files("what you need")` |
233
+ | **Answering questions about the codebase** | `merlin_search("what exists")` or `merlin_get_context("question")` |
234
+ | **Understanding what's been built** | `merlin_get_context("what exists for X")` |
235
+ | **Checking if something exists** | `merlin_search("feature name")` |
236
+ | Exploring architecture | `merlin_get_brief` or `merlin_get_context("architecture of X")` |
237
+
238
+ **CRITICAL: Do NOT spawn Explore agents or run Glob/Grep for codebase questions. Use Sights first.** Sights already has file summaries, exports, architecture, and relationships indexed. Only fall back to manual exploration if Sights explicitly says it has no data.
221
239
 
222
240
  ```
223
241
  ⟡🔮 MERLIN › get_context("payment processing")
@@ -1 +1 @@
1
- 3.19.0
1
+ 3.19.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-merlin-brain",
3
- "version": "3.19.0",
3
+ "version": "3.19.1",
4
4
  "description": "Merlin - The Ultimate AI Brain for Claude Code. One install: workflows, agents, loop, and Sights MCP server.",
5
5
  "type": "module",
6
6
  "main": "./dist/server/index.js",