mother-brain 0.5.2 → 0.6.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.5.2";
801
+ var VERSION = "0.6.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.5.2",
3
+ "version": "0.6.1",
4
4
  "description": "AI-powered project management framework for GitHub Copilot CLI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -211,9 +211,12 @@ Mother Brain transforms high-level visions into executable reality by:
211
211
  - **Product-first thinking**: Focus on outcomes, not implementation details
212
212
  - **Vision clarity**: Always trace back to the WHY
213
213
  - **Adaptive planning**: Roadmaps are living documents, not contracts
214
+ - **Outcome-Driven Roadmap (CORE PRINCIPLE)**: Roadmaps are organized by **Outcomes** (user abilities), not tasks. Each outcome is an "Ability to [do something]" that fulfills a user need. Tasks exist only as internal implementation details. Users validate **acceptance criteria** for outcomes, never technical tasks. This keeps validation meaningful ("Can I now do X?") rather than abstract ("Does this code look right?").
215
+ - **User Needs as Foundation**: During Vision Discovery, capture explicit user needs as "Ability to..." statements. These become the outcomes in the roadmap. Every outcome traces back to which user need it fulfills.
216
+ - **Acceptance Criteria Validation**: User signs off on acceptance criteria for each outcome, not on individual tasks. For each criterion, ask: "Can you do this now? Yes/No". If "No" → invoke Child Brain to analyze and fix.
214
217
  - **Best practice structure**: Organize projects using standard dev conventions
215
218
  - **Skill automation**: Create skills for repetitive tasks proactively
216
- - **User validation**: Always confirm work meets expectations before marking complete
219
+ - **User validation**: Always confirm outcomes meet expectations via acceptance criteria before marking complete
217
220
  - **Self-improvement**: Learn from user feedback and update own SKILL.md to prevent future issues
218
221
  - **Transparency**: Document decisions, rationale, and changes
219
222
  - **Wizard pattern for all interactions**: Use `ask_user` tool with numbered, selectable choices (2-3 options) for ALL user decisions—never ask freeform yes/no questions in text
@@ -1700,10 +1703,11 @@ Key rules: Use `allow_freeform: true` on all `ask_user` calls. Check freeform re
1700
1703
  - **The Problem/Opportunity**: What pain point or gap exists?
1701
1704
  - **The Vision**: What does success look like?
1702
1705
  - **The Users**: Who benefits? Who uses it?
1706
+ - **User Needs (CRITICAL)**: What specific abilities does the user need? Capture these as "Ability to [do something]" statements. These become the foundation for the outcome-driven roadmap.
1703
1707
  - **Differentiators**: What makes this unique in the space?
1704
1708
  - **Aesthetic/Experience**: How should it feel? Look? Sound?
1705
1709
  - **Constraints**: Budget, skills, platform limitations?
1706
- - **MVP Scope**: What proves the concept works?
1710
+ - **MVP Scope**: Which user needs are essential for MVP vs nice-to-have?
1707
1711
  - **Data Sensitivity (MANDATORY)**: If project involves user/customer data:
1708
1712
  - Identify what data is handled (PII, orders, payments, health data, financial data, personal info)
1709
1713
  - Ask: "Who should have access to this data?"
@@ -1876,8 +1880,43 @@ Key rules: Use `allow_freeform: true` on all `ask_user` calls. Check freeform re
1876
1880
  - **Proceed to Step 4** (Vision Document Creation)
1877
1881
 
1878
1882
  ### 4. **Vision Document Creation**
1879
- - **Read `references/doc-templates.md`** and use the Vision Document Template
1880
- - Create `docs/vision.md` using the loaded template, filling in content from vision discovery
1883
+ - Create `docs/vision.md` with structured content:
1884
+ ```markdown
1885
+ # [Project Name] - Vision
1886
+
1887
+ ## The Problem
1888
+ [User's pain point/opportunity]
1889
+
1890
+ ## The Vision
1891
+ [3-12 month desired future state]
1892
+
1893
+ ## Target Users
1894
+ [Who benefits and how]
1895
+
1896
+ ## Why This Matters
1897
+ [The deeper purpose]
1898
+
1899
+ ## User Needs
1900
+ > These are the core abilities users need. Each becomes an outcome in the roadmap.
1901
+
1902
+ | Need | Description | MVP? |
1903
+ |------|-------------|------|
1904
+ | Ability to [do X] | [Why this matters] | ✅/❌ |
1905
+ | Ability to [do Y] | [Why this matters] | ✅/❌ |
1906
+ | Ability to [do Z] | [Why this matters] | ✅/❌ |
1907
+
1908
+ ## Success Looks Like
1909
+ [Measurable outcomes - tied to user needs being fulfilled]
1910
+
1911
+ ## Constraints
1912
+ [Budget, skills, tech preferences. NOT timeline - AI has no time constraints.]
1913
+
1914
+ ## MVP Definition
1915
+ [Which user needs must be fulfilled for minimum viable success]
1916
+
1917
+ ## Strategic Themes
1918
+ [3-5 key focus areas derived from vision]
1919
+ ```
1881
1920
 
1882
1921
  - Create `README.md` with project overview
1883
1922
  - Display vision summary to user
@@ -2345,17 +2384,19 @@ Key rules: Use `allow_freeform: true` on all `ask_user` calls. Check freeform re
2345
2384
 
2346
2385
  **Step 7.0: Load Value Framework**
2347
2386
  - Read `.mother-brain/docs/value-framework.md`
2348
- - Use the priority dimensions and weights to order tasks
2349
- - Every task in the roadmap must be scored (even roughly) against the framework
2387
+ - Use the priority dimensions and weights to order **outcomes** (not tasks)
2388
+ - Every outcome in the roadmap must be scored against the framework
2350
2389
 
2351
- **Step 7.1: Define Phase 1 = MVP (Core Problem Solution)**
2352
- - Phase 1 scope = shortest path to solve core problem from vision
2390
+ **Step 7.1: Define Phase 1 = MVP (Core User Needs)**
2391
+ - Phase 1 scope = shortest path to fulfill core user needs from vision
2353
2392
  - Use:
2354
- - MVP definition from Step 4 (vision document)
2393
+ - User Needs table from Step 4 (vision document) — filter by MVP=✅
2355
2394
  - Delivery research from Step 6A
2356
2395
  - Mother Brain's expert judgment on optimal scope
2357
- - Mother Brain determines what's essential for Phase 1 vs what can wait
2358
- - Break Phase 1 into tasks that deliver only MVP
2396
+ - Mother Brain determines which user needs are essential for Phase 1 vs can wait
2397
+ - Each user need becomes an **Outcome** (📋 Ability to...)
2398
+ - Each outcome has **Acceptance Criteria** (testable by user)
2399
+ - Tasks are internal implementation details — user validates outcomes, not tasks
2359
2400
 
2360
2401
  **Step 7.2: Structure Post-MVP Work (Research-Driven)**
2361
2402
  - Phase 2+ content based on iteration pattern from Step 6A research
@@ -2363,12 +2404,151 @@ Key rules: Use `allow_freeform: true` on all `ask_user` calls. Check freeform re
2363
2404
  - Mark clearly as "post-MVP" and "subject to learning/validation"
2364
2405
  - Don't over-plan: assume learnings will inform these phases
2365
2406
 
2366
- **Step 7.3: Create `docs/roadmap.md` (Research-Driven Structure)**:
2367
- - **Read `references/doc-templates.md`** and use the Roadmap Template
2368
- - Create `docs/roadmap.md` using the loaded template
2369
- - Fill in from research findings (Steps 5, 5A, 6A) and Value Framework (Step 4A)
2370
- - Order tasks by Value Framework score
2371
- - Include "Why this order" explanation for each phase
2407
+ **Step 7.3: Create `docs/roadmap.md` (Outcome-Driven Structure)**:
2408
+ ```markdown
2409
+ # [Project Name] - Roadmap
2410
+
2411
+ ## Delivery Strategy (Research-Based)
2412
+ **Project Type**: [From Step 5 research]
2413
+ **MVP Approach**: [From Step 6A research - what minimum viable means for this type]
2414
+ **Launch Pattern**: [From Step 6A research - how to reach users]
2415
+ **Iteration Strategy**: [From Step 6A research - how to improve post-launch]
2416
+
2417
+ ---
2418
+
2419
+ ## User Needs Traceability
2420
+
2421
+ | User Need (from Vision) | Fulfilled By |
2422
+ |-------------------------|--------------|
2423
+ | Ability to [X] | Outcome 1, Outcome 3 |
2424
+ | Ability to [Y] | Outcome 2 |
2425
+ | Ability to [Z] | Outcome 4 (Phase 2) |
2426
+
2427
+ ---
2428
+
2429
+ ## Phase 1: MVP — [Core Problem Solution]
2430
+
2431
+ **Goal**: Shortest path to deliver user value
2432
+ **Success Gate**: User can [primary outcome from vision]
2433
+ **Strategy**: Fulfill core user needs, defer everything else
2434
+
2435
+ ---
2436
+
2437
+ ### 📋 Ability to [do something concrete]
2438
+
2439
+ > So [the benefit/why this matters — traced to user need]
2440
+
2441
+ **Acceptance Criteria:**
2442
+ - [ ] [Testable condition 1 — user can verify this]
2443
+ - [ ] [Testable condition 2 — user can verify this]
2444
+ - [ ] [Testable condition 3 — user can verify this]
2445
+
2446
+ **Priority Score:** [N] (Vision: X, MVP: X, User Impact: X)
2447
+
2448
+ **🔧 Tasks (internal — not shown to user during validation):**
2449
+ - Task 001: [Technical implementation step]
2450
+ - Task 002: [Technical implementation step]
2451
+ - Task 003: [Technical implementation step]
2452
+
2453
+ ---
2454
+
2455
+ ### 📋 Ability to [second outcome]
2456
+
2457
+ > So [benefit — traced to user need]
2458
+
2459
+ **Acceptance Criteria:**
2460
+ - [ ] [Testable condition 1]
2461
+ - [ ] [Testable condition 2]
2462
+
2463
+ **Priority Score:** [N]
2464
+
2465
+ **🔧 Tasks (internal):**
2466
+ - Task 004: [Technical step]
2467
+ - Task 005: [Technical step]
2468
+
2469
+ ---
2470
+
2471
+ ## Phase 2+: Post-MVP Iteration
2472
+
2473
+ **Strategy**: [Iteration approach from Step 6A research]
2474
+ **Trigger**: Phase 1 complete + user feedback
2475
+ **Focus**: Learn from users and iterate
2476
+
2477
+ ### 📋 Ability to [future outcome]
2478
+
2479
+ > So [benefit]
2480
+
2481
+ **Acceptance Criteria:**
2482
+ - [ ] [Criterion 1]
2483
+ - [ ] [Criterion 2]
2484
+
2485
+ **Note**: Subject to validation — may change based on user feedback
2486
+
2487
+ ---
2488
+
2489
+ ## MVP Checkpoint (End of Phase 1)
2490
+
2491
+ ✅ **Phase 1 Complete When ALL acceptance criteria verified for:**
2492
+ - Outcome 1: [name]
2493
+ - Outcome 2: [name]
2494
+ - Outcome 3: [name]
2495
+
2496
+ **Validation Method**: User confirms each criterion with "Yes, I can do this"
2497
+
2498
+ **Next Step After MVP**: [From Step 6A research]
2499
+
2500
+ ---
2501
+
2502
+ ## Future Enhancements (Post-MVP Backlog)
2503
+
2504
+ **Defer Until After MVP** (nice-to-have):
2505
+ - 📋 Ability to [future feature 1]
2506
+ - 📋 Ability to [future feature 2]
2507
+
2508
+ **Validation Required**: Don't build until validated by user feedback
2509
+
2510
+ ---
2511
+
2512
+ ## Internal Task Index
2513
+
2514
+ > Tasks exist for implementation tracking but are NOT validated by user.
2515
+ > User validates outcomes (acceptance criteria), not tasks.
2516
+
2517
+ | Task | Under Outcome | Status |
2518
+ |------|---------------|--------|
2519
+ | 001 | Ability to X | ⬜ |
2520
+ | 002 | Ability to X | ⬜ |
2521
+ | 003 | Ability to Y | ⬜ |
2522
+
2523
+ ---
2524
+
2525
+ ## Iteration & Learning Plan (Research-Based)
2526
+
2527
+ **Feedback Collection** (from Step 6A research):
2528
+ - [How we'll gather user input for this project type]
2529
+ - [Metrics/analytics to track]
2530
+
2531
+ **Iteration Cycle**:
2532
+ 1. Complete Phase 1 outcomes
2533
+ 2. User validates all acceptance criteria
2534
+ 3. Collect feedback, analyze learnings
2535
+ 4. Prioritize Phase 2 outcomes based on data
2536
+
2537
+ ---
2538
+
2539
+ ## Risk Mitigation
2540
+
2541
+ **MVP Risks**: [Potential issues with Phase 1 approach]
2542
+
2543
+ **Delivery Strategy**: Protect MVP outcomes at all costs. Phase 2+ can be deferred.
2544
+
2545
+ ---
2546
+
2547
+ **Total Tasks**: [Count]
2548
+ **Phase 1 (MVP) Tasks**: [Count essential tasks]
2549
+ **Post-MVP Tasks**: [Count - subject to change based on feedback]
2550
+ **Estimated Timeline**: [From vision document]
2551
+ ```
2372
2552
 
2373
2553
  **Step 7.3.5: CHECKPOINT - Review Roadmap Against Elder Brain**
2374
2554
  - **Purpose**: Surface known pitfalls for the tech stack BEFORE task execution begins
@@ -2451,16 +2631,54 @@ Key rules: Use `allow_freeform: true` on all `ask_user` calls. Check freeform re
2451
2631
 
2452
2632
  ### 8. **Task Document Creation**
2453
2633
  - Create `docs/tasks/` directory
2454
- - **Read `references/doc-templates.md`** and use the Task Document Template
2455
- - For first task in Phase 1, create `docs/tasks/001-[task-name].md` using the loaded template
2634
+ - Tasks are internal implementation details users validate **outcomes**, not tasks
2635
+ - For each task in Phase 1, create `docs/tasks/001-[task-name].md`:
2636
+ ```markdown
2637
+ # Task 001: [Task Name]
2638
+
2639
+ **Status**: 🟡 In Progress
2640
+ **Phase**: Phase 1 - MVP
2641
+ **Parent Outcome**: 📋 Ability to [outcome name this task contributes to]
2642
+ **Assigned**: [Date]
2643
+
2644
+ ## Objective
2645
+ [What this task achieves — how it contributes to the parent outcome]
2646
+
2647
+ ## Technical Details
2648
+ - **Type**: [Logic | UI | Animation | Integration | Testing]
2649
+ - **Focus**: [What this task implements specifically]
2650
+ - **NOT in scope**: [What related features are in other tasks]
2651
+
2652
+ ## Implementation Notes
2653
+ [Technical approach — user does NOT see this during validation]
2654
+
2655
+ ## Dependencies
2656
+ - [What must exist before this]
2657
+
2658
+ ## Skills to Use
2659
+ - [Relevant skill name and purpose]
2660
+
2661
+ ## Deliverables
2662
+ - [Specific files/outputs]
2663
+
2664
+ ## Notes & Decisions
2665
+ [Log decisions made during execution]
2666
+
2667
+ ## Internal Verification (NOT user validation)
2668
+ [ ] Built successfully
2669
+ [ ] Tests pass
2670
+ [ ] Deliverables created
2671
+
2672
+ ---
2673
+
2674
+ **Note**: User validates the parent outcome's acceptance criteria,
2675
+ not this task directly. This task is complete when deliverables
2676
+ are ready and internal verification passes.
2677
+ ```
2456
2678
 
2457
- - Display task to user
2458
- - Use `ask_user` with choices:
2459
- - "Yes, start this task now"
2460
- - "Skip to next task"
2461
- - "Let me review the roadmap first"
2462
- - "🚨 Report Issue (something's not working)"
2463
- - Proceed based on selection
2679
+ - **DO NOT ask user to validate individual tasks**
2680
+ - Tasks complete silently when internal verification passes
2681
+ - User validates only when ALL tasks under an outcome are complete (Step 10)
2464
2682
 
2465
2683
  ### 9. **Task Execution**
2466
2684
 
@@ -2825,48 +3043,50 @@ Key rules: Use `allow_freeform: true` on all `ask_user` calls. Check freeform re
2825
3043
  - ✅ **Verification**: Test against success criteria
2826
3044
 
2827
3045
  - **Roadmap Cross-Check** (CRITICAL - prevents out-of-order implementation):
2828
- 1. Load current task document from `docs/tasks/[number]-[name].md`
2829
- 2. Load roadmap from `docs/roadmap.md`
2830
- 3. Identify:
2831
- - What THIS task's deliverables are (from task doc "Deliverables" section)
2832
- - What FUTURE tasks will deliver (scan roadmap for uncompleted tasks)
2833
- 4. **Only validate what THIS task was supposed to deliver**
2834
- 5. If user mentions missing features during validation:
2835
- - Check if feature is in a future task
2836
- - Explain: "That's planned for Task [X] - [Name]"
2837
- - Offer choices: "Continue with roadmap as planned" or "Adjust roadmap to include this now"
2838
- - If user chooses continue: Mark current task complete, proceed to next
2839
- - If user chooses adjust: Update roadmap, then implement requested feature
2840
-
2841
- - Ask user to review:
2842
- ```
2843
- ✅ Task [Number]: [Task Name] - Ready for Review
2844
-
2845
- What was created in THIS task:
2846
- - [List deliverables with paths - only from this task]
2847
-
2848
- Success criteria for THIS task:
2849
- - [✓] [Criterion met from task doc]
2850
- - [✓] [Criterion met from task doc]
2851
-
2852
- Coming in future tasks (not expected yet):
2853
- - Task [X]: [Future feature user might expect]
2854
- - Task [Y]: [Future feature user might expect]
2855
-
2856
- Questions about THIS task specifically:
2857
- 1. Does this task's output look how you expected?
2858
- 2. Does THIS task's functionality work properly?
2859
- 3. Anything you'd like changed about THIS task?
2860
- ```
2861
-
2862
- - Use `ask_user` to get feedback with choices:
2863
- - "Looks perfect, mark as complete"
2864
- - "Works but needs adjustment"
2865
- - "Doesn't meet expectations, needs rework"
2866
- - "🚨 Report Issue (something's not working)"
2867
- - Provide freeform for detailed feedback
3046
+ 1. Load current outcome from `docs/roadmap.md`
3047
+ 2. Identify which acceptance criteria this work addresses
3048
+ 3. If user mentions missing features:
3049
+ - Check if feature is in a future outcome
3050
+ - Explain: "That's planned for [Outcome Name]"
3051
+ - Offer: "Continue as planned" or "Adjust roadmap"
3052
+
3053
+ - **OUTCOME VALIDATION (User validates acceptance criteria, not tasks)**:
3054
+
3055
+ When ALL tasks under an outcome are complete, present the outcome for validation:
3056
+
3057
+ ```
3058
+ 📋 Outcome Complete: [Ability to do X]
3059
+
3060
+ Please verify each criterion — can you do this now?
3061
+ ```
2868
3062
 
2869
- - If user confirms: Mark task complete (🟢 Complete)
3063
+ - For EACH acceptance criterion, use `ask_user` with choices:
3064
+ - "Yes, I can do this ✅"
3065
+ - "No, something's wrong ❌"
3066
+
3067
+ - **If "Yes"**: Mark criterion complete, proceed to next
3068
+ - **If "No"**:
3069
+ - Invoke Child Brain immediately (friction detected)
3070
+ - Child Brain analyzes what went wrong
3071
+ - Fix applied, re-validate this criterion
3072
+
3073
+ - **Example validation flow**:
3074
+ ```
3075
+ 📋 Ability to see my emails inside the portal
3076
+
3077
+ Criterion 1: I can see my inbox with sender, subject, and preview
3078
+ → [Yes, I can do this] [No, something's wrong]
3079
+
3080
+ Criterion 2: I can click an email to read the full content
3081
+ → [Yes, I can do this] [No, something's wrong]
3082
+
3083
+ Criterion 3: New emails appear without refreshing the page
3084
+ → [Yes, I can do this] [No, something's wrong]
3085
+ ```
3086
+
3087
+ - **All criteria pass**: Mark outcome complete (✅)
3088
+ - Update roadmap.md to check off the outcome
3089
+ - Display: "✅ [Outcome name] — complete!"
2870
3090
  - If issues: Jump to **Step 10A: Three-Layered Learning from Feedback**
2871
3091
  - Update task document with final status
2872
3092
  - Update roadmap checklist
@@ -3387,15 +3607,86 @@ When heal fixes an issue:
3387
3607
 
3388
3608
  ## Example Session Flow
3389
3609
 
3390
- **Read `examples/session-flow.md` for full new project and returning project examples.**
3610
+ **New Project:**
3611
+ ```
3612
+ User: I want to build a music marketing SaaS platform
3613
+
3614
+ Mother Brain:
3615
+ 🧠 Welcome to Mother Brain!
3616
+
3617
+ [Runs vision discovery wizard - captures user needs]
3618
+
3619
+ User Needs Identified:
3620
+ - Ability to connect Spotify and see my artist analytics
3621
+ - Ability to schedule social media posts for releases
3622
+ - Ability to build email lists and send campaigns
3623
+ - Ability to track which promotions drive streams
3624
+
3625
+ Creates:
3626
+ - docs/vision.md (with User Needs table)
3627
+ - docs/roadmap.md (outcomes organized by phase)
3628
+ - README.md
3629
+
3630
+ Skills created:
3631
+ - spotify-api-integrator
3632
+ - social-media-scheduler
3633
+ - email-campaign-manager
3634
+
3635
+ Phase 1 (MVP) Outcomes:
3636
+ 📋 Ability to connect Spotify and see my artist analytics
3637
+ 📋 Ability to track which promotions drive streams
3638
+
3639
+ [Mother Brain executes tasks internally - user doesn't validate each task]
3640
+
3641
+ When outcome tasks complete:
3642
+
3643
+ Mother Brain:
3644
+ 📋 Outcome Complete: Ability to connect Spotify and see my artist analytics
3645
+
3646
+ Please verify each criterion:
3647
+
3648
+ 1. I can connect my Spotify artist account
3649
+ → [Yes, I can do this] [No, something's wrong]
3650
+
3651
+ 2. I can see my streaming numbers and top tracks
3652
+ → [Yes, I can do this] [No, something's wrong]
3653
+
3654
+ 3. Data updates automatically each day
3655
+ → [Yes, I can do this] [No, something's wrong]
3656
+
3657
+ User: "Yes" to all
3658
+
3659
+ Mother Brain: ✅ Outcome complete! Moving to next outcome...
3660
+ ```
3661
+
3662
+ **Returning to Project:**
3663
+ ```
3664
+ User: /mother-brain
3665
+
3666
+ Mother Brain:
3667
+ 🧠 Welcome back to MusicMarketingSaaS!
3668
+
3669
+ Current Status:
3670
+ Phase: 1 - MVP (2 of 4 outcomes complete)
3671
+ Current Outcome: 📋 Ability to track which promotions drive streams
3672
+ Progress: 50% of MVP outcomes validated
3673
+ Skills: 3 available
3674
+
3675
+ What would you like to do?
3676
+ 1. Continue where I left off
3677
+ 2. Review roadmap
3678
+ 3. 💡 I have a new idea
3679
+ ...
3680
+ ```
3391
3681
 
3392
3682
  ## Notes
3393
3683
 
3394
- - **Not a replacement for the user**: Mother Brain guides, but user makes final decisions
3395
- - **Living documents**: Vision and roadmap can be updated as project evolves
3396
- - **Flexible pacing**: Work on tasks in any order if dependencies allow
3397
- - **Session state**: All progress saved in docs/ folder
3398
- - **Best practices**: Uses industry-standard project structure
3684
+ - **Outcome-driven**: Users validate abilities, not technical tasks
3685
+ - **User Needs as foundation**: Every outcome traces to a captured user need
3686
+ - **Living documents**: Vision and roadmap evolve with user feedback
3687
+ - **Acceptance criteria validation**: Each criterion gets explicit Yes/No
3688
+ - **Child Brain on "No"**: Any failed criterion triggers learning
3689
+ - **Session state**: All progress saved in .mother-brain/ folder
3399
3690
  - **Skill ecosystem**: Builds project-specific skill library over time
3400
3691
 
3401
3692
  ## Resources