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.
- package/bin/install.cjs +12 -14
- 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}
|
|
147
|
+
${colors.bright}v${version}${colors.reset}
|
|
149
148
|
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
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