mother-brain 0.0.13 → 0.0.15
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/cli.js +1 -1
- package/package.json +3 -1
- package/skills/mother-brain/SKILL.md +6 -18
package/dist/cli.js
CHANGED
|
@@ -648,7 +648,7 @@ async function uninstall(options) {
|
|
|
648
648
|
// src/cli.ts
|
|
649
649
|
import { exec as exec3 } from "child_process";
|
|
650
650
|
var program = new Command();
|
|
651
|
-
var VERSION = "0.0.
|
|
651
|
+
var VERSION = "0.0.15";
|
|
652
652
|
program.name("mother-brain").description("AI-powered project management framework for GitHub Copilot CLI").version(VERSION);
|
|
653
653
|
program.command("init").description("Initialize Mother Brain in the current project").option("-f, --force", "Overwrite existing skills").action(init);
|
|
654
654
|
program.command("update").description("Update Mother Brain skills to the latest version").action(update);
|
package/package.json
CHANGED
|
@@ -414,16 +414,8 @@ This pattern ensures NO workflow ever traps the user—there's always an escape
|
|
|
414
414
|
|
|
415
415
|
**If project exists:**
|
|
416
416
|
- Load session state from `docs/session-state.json`
|
|
417
|
-
- **MANDATORY: Output ASCII art banner using PowerShell** (not as markdown text - that causes rendering corruption):
|
|
418
|
-
```powershell
|
|
419
|
-
Write-Host ""
|
|
420
|
-
Write-Host ""
|
|
421
|
-
Write-Host "┳┳┓┏┓┏┳┓┓┏┏┓┳┓ ┳┓┳┓┏┓┳┳┓"
|
|
422
|
-
Write-Host "┃┃┃┃┃ ┃ ┣┫┣ ┣┫ ┣┫┣┫┣┫┃┃┃"
|
|
423
|
-
Write-Host "┛ ┗┗┛ ┻ ┛┗┗┛┛┗ ┻┛┛┗┛┗┻┛┗"
|
|
424
|
-
```
|
|
425
417
|
|
|
426
|
-
-
|
|
418
|
+
- Display welcome back message:
|
|
427
419
|
```
|
|
428
420
|
🧠 Welcome back to [Project Name]!
|
|
429
421
|
|
|
@@ -471,16 +463,12 @@ This pattern ensures NO workflow ever traps the user—there's always an escape
|
|
|
471
463
|
- **If user selects onboarding**: Jump to **Step 2.2: Existing Project Onboarding**
|
|
472
464
|
|
|
473
465
|
**If new project (empty directory or user chose fresh start):**
|
|
474
|
-
- **MANDATORY:
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
Write-Host "┳┳┓┏┓┏┳┓┓┏┏┓┳┓ ┳┓┳┓┏┓┳┳┓"
|
|
479
|
-
Write-Host "┃┃┃┃┃ ┃ ┣┫┣ ┣┫ ┣┫┣┫┣┫┃┃┃"
|
|
480
|
-
Write-Host "┛ ┗┗┛ ┻ ┛┗┗┛┛┗ ┻┛┛┗┛┗┻┛┗"
|
|
481
|
-
```
|
|
466
|
+
- **MANDATORY: Use the `powershell` tool to output ASCII art banner**:
|
|
467
|
+
- Call the `powershell` tool with this exact command (single string):
|
|
468
|
+
`Write-Host ""; Write-Host ""; Write-Host "┳┳┓┏┓┏┳┓┓┏┏┓┳┓ ┳┓┳┓┏┓┳┳┓"; Write-Host "┃┃┃┃┃ ┃ ┣┫┣ ┣┫ ┣┫┣┫┣┫┃┃┃"; Write-Host "┛ ┗┗┛ ┻ ┛┗┗┛┛┗ ┻┛┛┗┛┗┻┛┗"`
|
|
469
|
+
- Do NOT output the ASCII art as markdown text - it corrupts in rendering
|
|
482
470
|
|
|
483
|
-
-
|
|
471
|
+
- Display:
|
|
484
472
|
```
|
|
485
473
|
🧠 Welcome to Mother Brain!
|
|
486
474
|
|