create-merlin-brain 3.15.2 → 3.17.0
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/dist/server/session-coach.d.ts +11 -0
- package/dist/server/session-coach.d.ts.map +1 -1
- package/dist/server/session-coach.js +77 -6
- package/dist/server/session-coach.js.map +1 -1
- package/dist/server/tools/route.d.ts.map +1 -1
- package/dist/server/tools/route.js +15 -1
- package/dist/server/tools/route.js.map +1 -1
- package/files/CLAUDE.md +201 -26
- package/files/agents/merlin-edge-case-hunter.md +340 -0
- package/files/agents/merlin-party-review.md +274 -0
- package/files/agents/merlin-reviewer.md +121 -20
- package/files/agents/merlin.md +300 -239
- package/files/hooks/session-start.sh +1 -1
- package/package.json +1 -1
|
@@ -201,7 +201,7 @@ _voice_note=""
|
|
|
201
201
|
printf '{
|
|
202
202
|
"hookSpecificOutput": {
|
|
203
203
|
"hookEventName": "SessionStart",
|
|
204
|
-
"additionalContext": "STOP. Your FIRST action must be: call merlin_get_selected_repo, then call merlin_get_project_status, then
|
|
204
|
+
"additionalContext": "STOP. Your FIRST action must be: call merlin_get_selected_repo, then call merlin_get_project_status, then call merlin_get_rules and merlin_get_brief in parallel. After boot, auto-detect the user intent and take action — do NOT just show options. Do not respond to the user until you complete the boot sequence.%s"
|
|
205
205
|
}
|
|
206
206
|
}\n' "${_voice_note}"
|
|
207
207
|
|
package/package.json
CHANGED