create-merlin-brain 3.3.0 → 3.3.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.
Files changed (2) hide show
  1. package/bin/install.cjs +12 -14
  2. package/package.json +1 -1
package/bin/install.cjs CHANGED
@@ -135,23 +135,21 @@ function logWarn(msg) {
135
135
  }
136
136
 
137
137
  function banner() {
138
+ const version = require('../package.json').version;
138
139
  console.log(`
139
- ${colors.magenta}${colors.bright}
140
- ███╗ ███╗███████╗██████╗ ██╗ ██╗███╗ ██╗
141
- ████╗ ████║██╔════╝██╔══██╗██║ ██║████╗ ██║
142
- ██╔████╔██║█████╗ ██████╔╝██║ ██║██╔██╗ ██║
143
- ██║╚██╔╝██║██╔══╝ ██╔══██╗██║ ██║██║╚██╗██║
144
- ██║ ╚═╝ ██║███████╗██║ ██║███████╗██║██║ ╚████║
145
- ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚══════╝╚═╝╚═╝ ╚═══╝
146
- ${colors.reset}
140
+ ${colors.magenta}${colors.bright} __ __ _____ ____ _ ___ _ _
141
+ | \\/ | ____| _ \\| | |_ _| \\ | |
142
+ | |\\/| | _| | |_) | | | || \\| |
143
+ | | | | |___| _ <| |___ | || |\\ |
144
+ |_| |_|_____|_| \\_\\_____|___|_| \\_|${colors.reset}
145
+
147
146
  ${colors.cyan}The Ultimate AI Brain for Claude Code${colors.reset}
148
- ${colors.bright}v3 — One Install, Everything Included${colors.reset}
147
+ ${colors.bright}v${version}${colors.reset}
149
148
 
150
- Four integrated layers:
151
- ${colors.bright}Merlin Loop${colors.reset} - Autonomous orchestration (hours of unattended work)
152
- ${colors.bright}Merlin Sights${colors.reset} - Knowledge layer (instant codebase context)
153
- ${colors.bright}Merlin Workflows${colors.reset} - Planning & execution (/merlin:* commands)
154
- • ${colors.bright}Merlin Agents${colors.reset} - Specialist agents for every task
149
+ ${colors.bright}Loop${colors.reset} Autonomous orchestration
150
+ ${colors.bright}Sights${colors.reset} Instant codebase context
151
+ ${colors.bright}Workflows${colors.reset} Planning & execution
152
+ ${colors.bright}Agents${colors.reset} 28 specialist agents
155
153
  `);
156
154
  }
157
155
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-merlin-brain",
3
- "version": "3.3.0",
3
+ "version": "3.3.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",