mother-brain 0.0.8 → 0.0.9

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 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.8";
651
+ var VERSION = "0.0.9";
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mother-brain",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "AI-powered project management framework for GitHub Copilot CLI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -46,3 +46,4 @@
46
46
  "typescript": "^5.3.0"
47
47
  }
48
48
  }
49
+
@@ -372,18 +372,21 @@ This pattern ensures NO workflow ever traps the user—there's always an escape
372
372
  - Last Session: [Date/Time]
373
373
  ```
374
374
 
375
- - Use `ask_user` with choices:
376
- - "Continue where I left off"
377
- - "Start next task"
378
- - "Review/update roadmap"
379
- - "Realign with vision"
380
- - "View all skills"
381
- - "Create new skill"
382
- - "Update Mother Brain (report issues/improvements)"
383
- - "Release Mother Brain (commit & PR)"
384
- - "Archive project (save & reset for new project)"
385
- - "Eject project (reset to framework + learnings)"
386
- - "🚨 Report Issue (something's not working)"
375
+ - **IMMEDIATELY after displaying status**, use `ask_user` tool with this EXACT structure:
376
+ - Question: "What would you like to do?"
377
+ - Choices (MUST be provided as array):
378
+ - "Continue where I left off"
379
+ - "Start next task"
380
+ - "Review/update roadmap"
381
+ - "Realign with vision"
382
+ - "View all skills"
383
+ - "Create new skill"
384
+ - "Update Mother Brain (report issues/improvements)"
385
+ - "Release Mother Brain (commit & PR)"
386
+ - "Archive project (save & reset for new project)"
387
+ - "Eject project (reset to framework + learnings)"
388
+ - "🚨 Report Issue (something's not working)"
389
+ - **CRITICAL**: Do NOT ask what to do as freeform text. ALWAYS use the `ask_user` tool.
387
390
  - Freeform automatically available for custom actions
388
391
 
389
392
  **If existing project WITHOUT Mother Brain artifacts (ONBOARDING):**
@@ -425,16 +428,17 @@ This pattern ensures NO workflow ever traps the user—there's always an escape
425
428
  - Identifying needed skills
426
429
  - Breaking down tasks
427
430
  - Tracking your progress
428
-
429
- Ready to begin?
430
431
  ```
431
- - Use `ask_user` with choices:
432
- - "Yes, start vision discovery"
433
- - "Just talk (brainstorm mode)"
434
- - "I have a vision document already (import it)"
435
- - "Show me an example first"
436
- - "Update Mother Brain (report issues/improvements)"
437
- - "Release Mother Brain (commit & PR)"
432
+ - **IMMEDIATELY after displaying the welcome message**, use `ask_user` tool with this EXACT structure:
433
+ - Question: "What would you like to do?"
434
+ - Choices (MUST be provided as array):
435
+ - "Yes, start vision discovery"
436
+ - "Just talk (brainstorm mode)"
437
+ - "I have a vision document already (import it)"
438
+ - "Show me an example first"
439
+ - "Update Mother Brain (report issues/improvements)"
440
+ - "Release Mother Brain (commit & PR)"
441
+ - **CRITICAL**: Do NOT ask "Ready to begin?" as freeform text. ALWAYS use the `ask_user` tool with the choices above.
438
442
  - Proceed based on selection
439
443
 
440
444
  ### 2.2. **Existing Project Onboarding**