brainforge-ai 1.2.1 → 1.2.3

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.
@@ -1 +1 @@
1
- {"version":3,"file":"templates.d.ts","sourceRoot":"","sources":["../../src/core/templates.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAE5C,wBAAgB,iBAAiB,CAAC,MAAM,EAAE,gBAAgB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CA+lElF;AAED,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,gBAAgB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAk/BpF;AAED,wBAAgB,iBAAiB,CAAC,MAAM,EAAE,gBAAgB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CA62KlF;AAED,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,gBAAgB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CA+QrF"}
1
+ {"version":3,"file":"templates.d.ts","sourceRoot":"","sources":["../../src/core/templates.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAE5C,wBAAgB,iBAAiB,CAAC,MAAM,EAAE,gBAAgB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CA+lElF;AAED,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,gBAAgB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAk/BpF;AAED,wBAAgB,iBAAiB,CAAC,MAAM,EAAE,gBAAgB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CA62KlF;AAED,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,gBAAgB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CA2YrF"}
@@ -8485,92 +8485,129 @@ styles/global.css:18 → [CONTRAST] Background #fff + text #aaa fails 4.5:1
8485
8485
  function getRootFileTemplates(config) {
8486
8486
  const stackStr = config.stack.join(', ');
8487
8487
  return {
8488
- 'AGENTS.md': `# BrainForge Agent Instructions
8488
+ 'AGENTS.md': `# ${config.projectName} Agent Rules & Mandates
8489
+
8490
+ You are an elite autonomous AI software engineer. This file defines the core behavioral rules that govern our entire interaction for this project. You must abide by these mandates without exception.
8489
8491
 
8490
8492
  **Project:** ${config.projectName}
8491
8493
  **Stack:** ${stackStr}
8492
8494
  **Code Level:** ${config.codeLevel}
8493
8495
  **User Level:** ${config.userLevel}
8494
8496
 
8495
- ## For All AI Agents
8496
-
8497
- This project uses BrainForge — a structured, phase-based AI development system.
8498
-
8499
- ### Golden Rule
8497
+ ## 1. Session Start — BrainForge Brain
8500
8498
 
8501
- > Never write code without a plan. Always follow the workflow.
8499
+ - **Always load \`.brainforge/brain.md\` at the start of every session** — it gives you project config, code rules, and current phase in one compact read.
8500
+ - Then load the active phase file only when you are executing that phase.
8501
+ - Do NOT load \`config.json\` + \`project.md\` + \`coding-style.md\` separately — brain.md covers them all.
8502
+ - **Plan First**: Never write code without a plan. Always follow the workflow.
8502
8503
 
8503
- ### Workflow
8504
+ ## 2. Workflow — Phase System (MANDATORY)
8504
8505
 
8505
8506
  \`\`\`
8506
- Idea → /start-project → /create-roadmap → /initiate-phase → /execute-phase → /review-phase → /checkpoint → /update-dashboard
8507
+ Idea → /start-project → /create-roadmap → /initiate-phase N → /execute-phase N → /review-phase N → /checkpoint → /update-dashboard
8507
8508
  \`\`\`
8508
8509
 
8509
- ### Session Start (token-efficient)
8510
+ - \`/initiate-phase N\` — research + plan before any code
8511
+ - \`/execute-phase N\` — code exactly what was planned, nothing more
8512
+ - \`/review-phase N\` — bugs, level check, scope check
8513
+ - \`/checkpoint\` — local git commit, never push
8510
8514
 
8511
- **Load only one file to get full context:**
8515
+ ## 3. Version Control & Memory
8512
8516
 
8513
- \`\`\`
8514
- .brainforge/brain.md
8515
- \`\`\`
8517
+ - **Auto-Commit**: Use \`/checkpoint\` after every successful change.
8518
+ - **No Unpermitted Push**: Never use \`git push\` without explicit user permission. Never use \`--force\`.
8519
+ - **Atomic Commits**: Make small, focused commits so we can easily revert if something breaks.
8520
+ - **Memory**: Update \`.brainforge/memory/\` files after significant changes (architecture, bugs, decisions).
8516
8521
 
8517
- brain.md contains project config, code rules, and phase status in a single compact file.
8518
- Then load the active phase file only when you are executing that phase.
8519
- Do NOT load config.json, project.md, and coding-style.md separately — brain.md covers them all.
8522
+ ## 4. Code Level: ${config.codeLevel}
8520
8523
 
8521
- ### Code Rules
8524
+ - Do not write code above the declared level.
8525
+ - Always read \`.brainforge/memory/coding-style.md\` before coding.
8526
+ - Do not over-engineer. Do not add features outside the current phase scope.
8527
+ - Target user level: ${config.userLevel}
8522
8528
 
8523
- - Code at **${config.codeLevel}** level
8524
- - Do not over-engineer
8525
- - Do not add features outside the current phase scope
8526
- - Update \`.brainforge/memory/\` after significant changes
8527
- - Commit with \`/checkpoint\` — never \`git push\`
8529
+ ## 5. Clean Code & Comments (CRITICAL)
8528
8530
 
8529
- ### After Each Phase
8531
+ - **NO TRIVIAL COMMENTS**: Do not add obvious or boilerplate comments (e.g., \`# This function adds two numbers\`).
8532
+ - **Self-Documenting Code**: Code should be clean and self-documenting through naming.
8533
+ - **Explain the WHY**: Comments should only explain WHY (business logic, edge cases) — never WHAT.
8534
+ - **Professional Standard**: Keep the codebase clean and uncluttered.
8530
8535
 
8531
- 1. Check off phase tasks
8532
- 2. Update \`.brainforge/memory/architecture.md\` if needed
8536
+ ## 6. Efficiency & Reliability
8537
+
8538
+ - **Test-Driven Delivery**: Write validation tests alongside new features.
8539
+ - **Fail Fast**: If a command or test fails, stop, diagnose, and fix the root cause. Do not blindly continue.
8540
+ - **Use Context7**: Always use Context7 MCP for library or framework questions before guessing.
8541
+
8542
+ ## 7. After Each Phase
8543
+
8544
+ 1. Check off all phase tasks in \`.brainforge/phases/phase-0N.md\`
8545
+ 2. Update \`.brainforge/memory/architecture.md\` if the structure changed
8533
8546
  3. Run \`/checkpoint\`
8534
8547
  4. Run \`/update-dashboard\`
8535
8548
 
8536
- ### Slash Commands Available
8549
+ ## 8. Tool Selection & Delegation
8550
+
8551
+ - Always pick the most specialized agent or skill for the task.
8552
+ - Use the right agent from \`.brainforge/agents/\` for each task type.
8553
+ - Use slash commands for all structured work — see \`.brainforge/commands/\` for the full list.
8554
+
8555
+ ## 9. Communication
8537
8556
 
8538
- See \`.brainforge/commands/\` for all available commands.
8557
+ - **Style**: Concise, technical, proactive.
8558
+ - **Intent**: Briefly explain what you are about to do before acting.
8559
+ - **No padding**: No unnecessary summaries, no trailing "is there anything else?".
8539
8560
  `,
8540
- 'CLAUDE.md': `# Claude Code Instructions BrainForge
8561
+ 'CLAUDE.md': `# ${config.projectName} Rules & Mandates
8562
+
8563
+ You are an elite autonomous AI software engineer. This file defines the core behavioral rules that govern our entire interaction for this project. You must abide by these mandates without exception.
8541
8564
 
8542
8565
  **Project:** ${config.projectName}
8543
8566
  **Stack:** ${stackStr}
8567
+ **Code Level:** ${config.codeLevel}
8544
8568
 
8545
- ## Context
8546
-
8547
- This project is managed by BrainForge. Read \`AGENTS.md\` and the \`.brainforge/\` folder before doing anything.
8569
+ ## 1. Session Start — BrainForge Brain
8548
8570
 
8549
- ## Session Start — Use brain.md to save tokens
8571
+ - **Always load \`.brainforge/brain.md\` at the start of every session** — it gives you project config, code rules, and current phase in one compact read.
8572
+ - Load other \`.brainforge/\` files only when the specific task requires them.
8573
+ - Do NOT load \`config.json\` + \`project.md\` + \`coding-style.md\` separately — brain.md covers them all.
8574
+ - **Plan First**: Never write code without a plan. Always follow the workflow.
8550
8575
 
8551
- **Always begin every session with one read:**
8576
+ ## 2. Workflow Phase System (MANDATORY)
8552
8577
 
8553
8578
  \`\`\`
8554
- .brainforge/brain.md
8579
+ Idea → /start-project → /create-roadmap → /initiate-phase N → /execute-phase N → /review-phase N → /checkpoint → /update-dashboard
8555
8580
  \`\`\`
8556
8581
 
8557
- brain.md is a compact summary of project config, code rules, and current phase.
8558
- It replaces loading config.json + project.md + coding-style.md separately.
8559
- Load other \`.brainforge/\` files only when the specific task requires them.
8582
+ - \`/initiate-phase N\` research + plan before any code
8583
+ - \`/execute-phase N\` code exactly what was planned, nothing more
8584
+ - \`/review-phase N\` bugs, level check, scope check
8585
+ - \`/checkpoint\` — local git commit, never push
8586
+
8587
+ ## 3. Version Control & Memory
8560
8588
 
8561
- ## Slash Commands
8589
+ - **Auto-Commit**: Use \`/checkpoint\` after every successful change.
8590
+ - **No Unpermitted Push**: Never use \`git push\` without explicit user permission. Never use \`--force\`.
8591
+ - **Atomic Commits**: Make small, focused commits so we can easily revert if something breaks.
8592
+ - **Memory**: Update \`.brainforge/memory/\` files after significant changes (architecture, bugs, decisions).
8593
+ - **Dashboard**: Run \`brainforge update-dashboard\` after each phase or checkpoint.
8562
8594
 
8563
- All slash commands are defined in \`.brainforge/commands/\`. Use them as your workflow guide.
8595
+ ## 4. Code Level: ${config.codeLevel}
8564
8596
 
8565
- ## Code Level
8597
+ - Do not write code above the declared level.
8598
+ - Always read \`.brainforge/memory/coding-style.md\` before coding.
8599
+ - Do not over-engineer. Do not add features outside the current phase scope.
8566
8600
 
8567
- Target: **${config.codeLevel}**
8601
+ ## 5. Clean Code & Comments (CRITICAL)
8568
8602
 
8569
- Read \`.brainforge/memory/coding-style.md\` before writing code.
8603
+ - **NO TRIVIAL COMMENTS**: Do not add obvious or boilerplate comments (e.g., \`# This function adds two numbers\`).
8604
+ - **Self-Documenting Code**: Code should be clean and self-documenting through naming.
8605
+ - **Explain the WHY**: Comments should only explain WHY (business logic, edge cases) — never WHAT.
8606
+ - **Professional Standard**: Keep the codebase clean and uncluttered.
8570
8607
 
8571
- ## Skills — ALWAYS USE THE APPROPRIATE SKILL
8608
+ ## 6. Skills — MANDATORY BEFORE EVERY TASK
8572
8609
 
8573
- Claude Code skills are installed in \`.claude/skills/\`. **You MUST use the matching skill before starting any task listed below. Skills contain project-specific rules, checklists, and patterns you must follow.**
8610
+ Claude Code skills are installed in \`.claude/skills/\`. **You MUST read the matching skill file before starting any task. Skills contain project-specific rules, checklists, and patterns you must follow. No exceptions.**
8574
8611
 
8575
8612
  | Task type | Skill to use |
8576
8613
  |-----------|-------------|
@@ -8578,7 +8615,7 @@ Claude Code skills are installed in \`.claude/skills/\`. **You MUST use the matc
8578
8615
  | Writing or fixing tests | \`test-driven-development\` |
8579
8616
  | Reviewing code, audit, quality check | \`code-review\` |
8580
8617
  | Any git operation | \`git-workflow\` |
8581
- | Debugging, tracing errors | \`debugging\` |
8618
+ | Debugging, tracing errors | \`ag-systematic-debugging\` |
8582
8619
  | Generating changelogs or release notes | \`changelog\` |
8583
8620
  | Writing docs, README, inline comments | \`documentation\` |
8584
8621
  | Crafting AI prompts, optimizing interactions | \`prompt-engineering\` |
@@ -8600,7 +8637,7 @@ Claude Code skills are installed in \`.claude/skills/\`. **You MUST use the matc
8600
8637
  | Figma design handoff, CSS mapping | \`figma-to-code\` |
8601
8638
  | Meta tags, schema markup, SEO | \`seo-optimization\` |
8602
8639
  | Property-based / fuzz testing | \`property-based-testing\` |
8603
- | React Native, Expo, mobile | \`react-native-best-practices\` |
8640
+ | React Native, Expo, mobile | \`ag-mobile-design\` |
8604
8641
  | Terraform, IaC, cloud provisioning | \`terraform-infrastructure\` |
8605
8642
  | GraphQL schema, Apollo, DataLoader | \`graphql-api\` |
8606
8643
  | Docker, compose, multi-stage builds | \`docker-devops\` |
@@ -8670,84 +8707,171 @@ Claude Code skills are installed in \`.claude/skills/\`. **You MUST use the matc
8670
8707
 
8671
8708
  **Rule:** If the user's request matches a skill above, read that skill file first. Do not proceed without it.
8672
8709
 
8673
- ## Git Rules
8710
+ ## 7. Efficiency & Reliability
8711
+
8712
+ - **Test-Driven Delivery**: Write validation tests alongside new features.
8713
+ - **Fail Fast**: If a command or test fails, stop, diagnose, and fix the root cause. Do not blindly continue.
8714
+ - **Use Context7**: Always use Context7 MCP for library or framework questions before guessing, even for well-known libraries.
8674
8715
 
8675
- - git add, git commit
8676
- - ✅ git status, git log
8677
- - ❌ git push (NEVER)
8678
- - ❌ git push --force (NEVER)
8716
+ ## 8. Tool Selection & Delegation
8679
8717
 
8680
- ## Memory
8718
+ - Always pick the most specialized agent or skill for the task rather than a generalist.
8719
+ - Use the right agent from \`.brainforge/agents/\` for each task type.
8720
+ - Use slash commands for all structured work — see \`.brainforge/commands/\` for the full list.
8681
8721
 
8682
- Update \`.brainforge/memory/\` files after major changes.
8722
+ ## 9. Git Rules
8683
8723
 
8684
- ## Dashboard
8724
+ - ✅ \`git add\`, \`git commit\` (via \`/checkpoint\`)
8725
+ - ✅ \`git status\`, \`git log\`
8726
+ - ❌ \`git push\` — NEVER without explicit user permission
8727
+ - ❌ \`git push --force\` — NEVER
8685
8728
 
8686
- Run \`brainforge update-dashboard\` after each phase or checkpoint.
8729
+ ## 10. Communication
8730
+
8731
+ - **Style**: Concise, technical, proactive.
8732
+ - **Intent**: Briefly explain what you are about to do before acting.
8733
+ - **No padding**: No unnecessary summaries, no trailing "is there anything else?".
8687
8734
  `,
8688
- 'GEMINI.md': `# Gemini CLI Instructions BrainForge
8735
+ 'GEMINI.md': `# ${config.projectName} Rules & Mandates
8736
+
8737
+ You are an elite autonomous AI software engineer. This file defines the core behavioral rules that govern our entire interaction for this project. You must abide by these mandates without exception.
8738
+
8739
+ ## 1. Session Start — BrainForge Brain
8740
+
8741
+ - **Always load \`.brainforge/brain.md\` at the start of every session** — it gives you project config, code rules, and current phase in one compact read.
8742
+ - Do NOT load \`AGENTS.md\` + \`project.md\` + \`coding-style.md\` separately — brain.md covers them all.
8743
+ - **Plan First**: Always plan before executing. Use \`/initiate-phase N\` before \`/execute-phase N\`.
8689
8744
 
8690
8745
  **Project:** ${config.projectName}
8691
8746
  **Stack:** ${stackStr}
8747
+ **Code Level:** ${config.codeLevel}
8692
8748
 
8693
- ## Session Start Use brain.md to save tokens
8749
+ ## 2. Version Control & Memory
8694
8750
 
8695
- **Load one file at the start of every session:**
8751
+ - **Auto-Commit**: Use \`/checkpoint\` after every successful change.
8752
+ - **No Unpermitted Push**: Never use \`git push\` without explicit user permission. Never use \`--force\`.
8753
+ - **Atomic Commits**: Make small, focused commits so we can easily revert if something breaks.
8754
+ - **Changelog**: Maintain \`.brainforge/memory/decisions.md\` with timestamps and details.
8755
+
8756
+ ## 3. Workflow — Follow the Phase System
8757
+
8758
+ - Strictly follow the BrainForge phase workflow defined in \`AGENTS.md\`.
8759
+ - Never write code without a plan. Always use \`/initiate-phase N\` first.
8760
+ - Use the right slash command for each step:
8696
8761
 
8697
8762
  \`\`\`
8698
- .brainforge/brain.md
8763
+ /initiate-phase N → plan before coding
8764
+ /execute-phase N → code only what was planned
8765
+ /review-phase N → quality check
8766
+ /checkpoint → save progress (local only)
8699
8767
  \`\`\`
8700
8768
 
8701
- brain.md gives you project config, code rules, and current phase in one compact read.
8702
- Do NOT load AGENTS.md + project.md + coding-style.md separately — brain.md covers them all.
8769
+ ## 4. Code Level: ${config.codeLevel}
8703
8770
 
8704
- ## Workflow
8771
+ - Do not write code above the declared level.
8772
+ - Always read \`.brainforge/memory/coding-style.md\` before coding.
8773
+ - Target user level: ${config.userLevel || config.codeLevel}
8705
8774
 
8706
- Follow the BrainForge workflow defined in \`AGENTS.md\`.
8775
+ ## 5. Clean Code & Comments (CRITICAL)
8707
8776
 
8708
- ## Code Level: ${config.codeLevel}
8777
+ - **NO TRIVIAL COMMENTS**: Do not add obvious, boilerplate comments (e.g., \`# This function adds two numbers\`).
8778
+ - **Self-Documenting Code**: Code should be clean and self-documenting through naming.
8779
+ - **Explain the WHY**: Comments should only explain WHY (business logic, edge cases) — never WHAT.
8780
+ - **Professional Standard**: Keep the codebase clean and uncluttered.
8709
8781
 
8710
- Do not write code above this level. Read \`.brainforge/memory/coding-style.md\` when coding.
8782
+ ## 6. Efficiency & Reliability
8711
8783
 
8712
- ## Git
8784
+ - **Test-Driven Delivery**: Write validation tests alongside new features.
8785
+ - **Fail Fast**: If a command or test fails, stop, diagnose, and fix the root cause immediately. Do not blindly continue.
8786
+ - **Use Context7**: Always use Context7 MCP for library and framework questions before guessing, even for well-known libraries.
8713
8787
 
8714
- Local commits only NO push, NO force.
8788
+ ## 7. Documentation & Structure
8715
8789
 
8716
- ## Commands
8790
+ - **Auto-Update**: Update \`.brainforge/memory/architecture.md\` when the project structure changes.
8791
+ - **Skill Files**: Always read the relevant skill file from \`.claude/skills/\` before starting a task.
8792
+ - **Agents**: Use the right agent from \`.brainforge/agents/\` for each task type.
8793
+
8794
+ ## 8. Tool Selection & Delegation
8717
8795
 
8718
- See \`.brainforge/commands/\` for all slash commands.
8796
+ - Always pick the most specialized agent/skill for the task rather than a generalist.
8797
+ - Use slash commands for all structured work — see \`.brainforge/commands/\` for the full list.
8798
+
8799
+ ## 9. Communication
8800
+
8801
+ - **Style**: Concise, technical, proactive.
8802
+ - **Intent**: Briefly explain what you are about to do before acting.
8803
+ - **No padding**: No unnecessary summaries, no trailing "is there anything else?".
8719
8804
  `,
8720
- 'OPENAI.md': `# OpenAI / Codex Instructions — BrainForge
8805
+ 'OPENAI.md': `# ${config.projectName} Rules & Mandates
8806
+
8807
+ You are an elite autonomous AI software engineer. This file defines the core behavioral rules that govern our entire interaction for this project. You must abide by these mandates without exception.
8721
8808
 
8722
8809
  **Project:** ${config.projectName}
8723
8810
  **Stack:** ${stackStr}
8811
+ **Code Level:** ${config.codeLevel}
8812
+
8813
+ ## 1. Session Start — BrainForge Brain
8724
8814
 
8725
- ## Session Start — Use brain.md to save tokens
8815
+ - **Always load \`.brainforge/brain.md\` at the start of every session** — it gives you project config, code rules, and current phase in one compact read.
8816
+ - Do NOT load \`config.json\` + \`project.md\` + \`coding-style.md\` separately — brain.md covers them all.
8817
+ - **Plan First**: Never write code without a plan. Always follow the workflow.
8726
8818
 
8727
- **Load one file at the start of every session:**
8819
+ ## 2. Workflow Phase System (MANDATORY)
8728
8820
 
8729
8821
  \`\`\`
8730
- .brainforge/brain.md
8822
+ Idea → /start-project → /create-roadmap → /initiate-phase N → /execute-phase N → /review-phase N → /checkpoint → /update-dashboard
8731
8823
  \`\`\`
8732
8824
 
8733
- brain.md gives you project config, code rules, and current phase in one compact read.
8734
- Do NOT load config.json + project.md + coding-style.md separately brain.md covers them all.
8825
+ - \`/initiate-phase N\` research + plan before any code
8826
+ - \`/execute-phase N\` code exactly what was planned, nothing more
8827
+ - \`/review-phase N\` — bugs, level check, scope check
8828
+ - \`/checkpoint\` — local git commit, never push
8735
8829
 
8736
- ## Code Level: ${config.codeLevel}
8830
+ ## 3. Version Control & Memory
8737
8831
 
8738
- Target user level: ${config.userLevel}
8832
+ - **Auto-Commit**: Use \`/checkpoint\` after every successful change.
8833
+ - **No Unpermitted Push**: Never use \`git push\` without explicit user permission. Never use \`--force\`.
8834
+ - **Atomic Commits**: Make small, focused commits so we can easily revert if something breaks.
8835
+ - **Memory**: Update \`.brainforge/memory/\` files after significant changes (architecture, bugs, decisions).
8739
8836
 
8740
- ## Workflow
8837
+ ## 4. Code Level: ${config.codeLevel}
8838
+
8839
+ - Do not write code above the declared level.
8840
+ - Always read \`.brainforge/memory/coding-style.md\` before coding.
8841
+ - Do not over-engineer. Do not add features outside the current phase scope.
8842
+ - Target user level: ${config.userLevel || config.codeLevel}
8843
+
8844
+ ## 5. Clean Code & Comments (CRITICAL)
8845
+
8846
+ - **NO TRIVIAL COMMENTS**: Do not add obvious or boilerplate comments (e.g., \`# This function adds two numbers\`).
8847
+ - **Self-Documenting Code**: Code should be clean and self-documenting through naming.
8848
+ - **Explain the WHY**: Comments should only explain WHY (business logic, edge cases) — never WHAT.
8849
+ - **Professional Standard**: Keep the codebase clean and uncluttered.
8741
8850
 
8742
- Strictly follow the BrainForge phase workflow. No code without a plan.
8851
+ ## 6. Efficiency & Reliability
8852
+
8853
+ - **Test-Driven Delivery**: Write validation tests alongside new features.
8854
+ - **Fail Fast**: If a command or test fails, stop, diagnose, and fix the root cause. Do not blindly continue.
8855
+ - **Use Context7**: Always use Context7 MCP for library or framework questions before guessing, even for well-known libraries.
8856
+
8857
+ ## 7. After Each Phase
8858
+
8859
+ 1. Check off all phase tasks in \`.brainforge/phases/phase-0N.md\`
8860
+ 2. Update \`.brainforge/memory/architecture.md\` if the structure changed
8861
+ 3. Run \`/checkpoint\`
8862
+ 4. Run \`/update-dashboard\`
8743
8863
 
8744
- ## Git Policy
8864
+ ## 8. Tool Selection & Delegation
8745
8865
 
8746
- Commits: yes. Push: NEVER.
8866
+ - Always pick the most specialized agent or skill for the task rather than a generalist.
8867
+ - Use the right agent from \`.brainforge/agents/\` for each task type.
8868
+ - Use slash commands for all structured work — see \`.brainforge/commands/\` for the full list.
8747
8869
 
8748
- ## Commands Reference
8870
+ ## 9. Communication
8749
8871
 
8750
- All commands in \`.brainforge/commands/\`.
8872
+ - **Style**: Concise, technical, proactive.
8873
+ - **Intent**: Briefly explain what you are about to do before acting.
8874
+ - **No padding**: No unnecessary summaries, no trailing "is there anything else?".
8751
8875
  `,
8752
8876
  };
8753
8877
  }
@@ -1 +1 @@
1
- {"version":3,"file":"templates.js","sourceRoot":"","sources":["../../src/core/templates.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"templates.js","sourceRoot":"","sources":["../../src/core/templates.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brainforge-ai",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "description": "CLI to transform a vague idea into a structured, AI-assisted project with agents, slash commands, memory, and a live dashboard",
5
5
  "keywords": [
6
6
  "ai",
@@ -30,7 +30,7 @@
30
30
  "scripts": {
31
31
  "build": "tsc",
32
32
  "dev": "ts-node src/cli.ts",
33
- "lint": "eslint src --ext .ts",
33
+ "lint": "tsc --noEmit",
34
34
  "test": "npm run build && node --test tests/critical-commands.test.js",
35
35
  "smoke:init": "npm run build && npm link && brainforge init",
36
36
  "test:install": "node scripts/test-install.js",