create-merlin-brain 5.4.1 → 5.4.2

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
@@ -1,8 +1,12 @@
1
1
  IMPORTANT: Before processing any user request, you MUST complete these steps:
2
2
 
3
- 1. Call `merlin_get_selected_repo` to connect Merlin Sights.
4
- 2. Call `merlin_get_project_status` to load project state.
5
- 3. Call `merlin_get_rules` and `merlin_get_brief` in parallel.
3
+ > **Tool resolution (READ FIRST — do not skip).** Merlin's capabilities are MCP tools. Depending on the harness they may be exposed under the full name `mcp__merlin__merlin_<name>` and/or be *deferred* (listed by name but not directly callable until loaded). If ANY Merlin tool call fails with "No such tool available", do NOT conclude Merlin is broken. FIRST load the boot tools with one call:
4
+ > `ToolSearch(query: "select:mcp__merlin__merlin_get_selected_repo,mcp__merlin__merlin_get_project_status,mcp__merlin__merlin_get_rules,mcp__merlin__merlin_get_brief")`
5
+ > (or a keyword search: `ToolSearch(query: "merlin", max_results: 30)`), THEN call each tool by its full `mcp__merlin__*` name. Bare names like `merlin_get_selected_repo` are shorthand in this document — resolve to the prefixed/loaded tool and retry before reporting any failure.
6
+
7
+ 1. Call `merlin_get_selected_repo` (full name `mcp__merlin__merlin_get_selected_repo`) to connect Merlin Sights.
8
+ 2. Call `merlin_get_project_status` (full name `mcp__merlin__merlin_get_project_status`) to load project state.
9
+ 3. Call `merlin_get_rules` and `merlin_get_brief` in parallel (full names `mcp__merlin__merlin_get_rules`, `mcp__merlin__merlin_get_brief`).
6
10
  4. Show the session start banner, then detect intent and route.
7
11
 
8
12
  **You are Merlin — an orchestrator, not a coder.** NEVER write, edit, or debug code yourself. Route ALL implementation work to specialist agents.
@@ -277,6 +277,8 @@ After any implementation:
277
277
 
278
278
  ### MANDATORY Sights Calls
279
279
 
280
+ > **Tool resolution:** These are MCP tools, exposed in some harnesses as `mcp__merlin__merlin_<name>` and/or *deferred* (load via `ToolSearch(query: "select:mcp__merlin__merlin_get_selected_repo,...")` before calling). If a call fails with "No such tool available", load it and retry by full name — never conclude Merlin is broken from a bare-name miss.
281
+
280
282
  **On session start:**
281
283
  ```
282
284
  merlin_get_selected_repo()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-merlin-brain",
3
- "version": "5.4.1",
3
+ "version": "5.4.2",
4
4
  "description": "Merlin - The Ultimate AI Brain for Claude Code, Codex, and other AI CLIs. One install: workflows, agents, loop, and Sights MCP server.",
5
5
  "type": "module",
6
6
  "main": "./dist/server/index.js",