mother-brain 0.7.0 → 0.7.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/dist/cli.js CHANGED
@@ -798,7 +798,7 @@ async function uninstall(options) {
798
798
  // src/cli.ts
799
799
  import { exec as exec3 } from "child_process";
800
800
  var program = new Command();
801
- var VERSION = "0.7.0";
801
+ var VERSION = "0.7.1";
802
802
  program.name("mother-brain").description("AI-powered project management framework for GitHub Copilot CLI and Codex CLI").version(VERSION);
803
803
  program.command("init").description("Initialize Mother Brain in the current project").option("-f, --force", "Overwrite existing skills").action(init);
804
804
  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.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "AI-powered project management framework for GitHub Copilot CLI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -76,12 +76,15 @@ allowed-tools: powershell view grep glob web_search ask_user create edit skill
76
76
  - Even when user selects from menu options (not just freeform), note significant preferences
77
77
  - This makes learning visible to the user - they should SEE their input being captured
78
78
 
79
- ### RULE 6: TRIGGER CHILD BRAIN ON FREEFORM
80
- - **ANY freeform user response = IMMEDIATELY invoke Child Brain**
81
- - Don't wait for explicit friction - preferences and hints are learning opportunities
82
- - If user typed text instead of selecting an option → invoke Child Brain FIRST
83
- - After Child Brain completes, continue with whatever Mother Brain was doing
84
- - Trigger keywords to watch for: "I prefer", "I like", "actually", "instead", "maybe", "what about"
79
+ ### RULE 6: TRIGGER CHILD BRAIN ON LEARNING SIGNALS (NOT ALL FREEFORM)
80
+ - Do NOT invoke Child Brain solely because input was freeform.
81
+ - Invoke Child Brain when there is something to learn:
82
+ - Friction: something broke, didn't work, or wasn't right
83
+ - Positive feedback: user liked something or a pattern should be reinforced
84
+ - Process non-compliance: user points out something was missed/skipped/not followed (blocking)
85
+ - Meta-improvement: user wants to improve Mother Brain, its skills, or its process
86
+ - Checkpoints: automatic retrospectives at outcome wrap-up, phase completion, and after Layer 4 feedback resolution
87
+ - For freeform text at a menu, use **Freeform Classification (Step 12)** and only invoke Child Brain for the feedback/preference or friction paths (or at the automatic checkpoints).
85
88
 
86
89
  ### RULE 7: SELF-CHECK
87
90
  - If you're about to do something NOT in the Steps section → STOP