mindforge-cc 4.3.0 → 5.0.0

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.
Files changed (91) hide show
  1. package/.mindforge/engine/nexus-tracer.js +115 -0
  2. package/CHANGELOG.md +75 -27
  3. package/README.md +52 -100
  4. package/RELEASENOTES.md +12 -0
  5. package/bin/autonomous/auto-runner.js +154 -4
  6. package/bin/autonomous/context-refactorer.js +64 -0
  7. package/bin/autonomous/steer.js +19 -1
  8. package/bin/autonomous/stuck-monitor.js +43 -0
  9. package/bin/engine/handover-manager.js +69 -0
  10. package/bin/engine/nexus-tracer.js +67 -2
  11. package/bin/engine/sre-manager.js +63 -0
  12. package/bin/governance/policies/default-policies.jsonl +33 -0
  13. package/bin/governance/policy-engine.js +106 -0
  14. package/bin/governance/rbac-manager.js +109 -0
  15. package/bin/memory/eis-client.js +95 -0
  16. package/bin/memory/federated-sync.js +127 -0
  17. package/bin/memory/knowledge-graph.js +37 -0
  18. package/bin/models/cloud-broker.js +83 -0
  19. package/bin/models/model-broker.js +68 -49
  20. package/bin/skill-validator.js +41 -0
  21. package/docs/INTELLIGENCE-MESH.md +25 -22
  22. package/docs/architecture/PAR-ZTS-SURVEY.md +43 -0
  23. package/docs/architecture/README.md +31 -64
  24. package/docs/architecture/V5-ENTERPRISE.md +113 -0
  25. package/docs/governance-guide.md +43 -28
  26. package/docs/security/SECURITY.md +9 -7
  27. package/docs/user-guide.md +29 -3
  28. package/docs/usp-features.md +3 -0
  29. package/package.json +1 -1
  30. /package/docs/{context → Context}/Master-Context.md +0 -0
  31. /package/docs/{references → References}/audit-events.md +0 -0
  32. /package/docs/{references → References}/checkpoints.md +0 -0
  33. /package/docs/{references → References}/commands.md +0 -0
  34. /package/docs/{references → References}/config-reference.md +0 -0
  35. /package/docs/{references → References}/continuation-format.md +0 -0
  36. /package/docs/{references → References}/decimal-phase-calculation.md +0 -0
  37. /package/docs/{references → References}/git-integration.md +0 -0
  38. /package/docs/{references → References}/git-planning-commit.md +0 -0
  39. /package/docs/{references → References}/model-profile-resolution.md +0 -0
  40. /package/docs/{references → References}/model-profiles.md +0 -0
  41. /package/docs/{references → References}/phase-argument-parsing.md +0 -0
  42. /package/docs/{references → References}/planning-config.md +0 -0
  43. /package/docs/{references → References}/questioning.md +0 -0
  44. /package/docs/{references → References}/sdk-api.md +0 -0
  45. /package/docs/{references → References}/skills-api.md +0 -0
  46. /package/docs/{references → References}/tdd.md +0 -0
  47. /package/docs/{references → References}/ui-brand.md +0 -0
  48. /package/docs/{references → References}/user-profiling.md +0 -0
  49. /package/docs/{references → References}/verification-patterns.md +0 -0
  50. /package/docs/{references → References}/workstream-flag.md +0 -0
  51. /package/docs/{templates → Templates}/Agents/CLAUDE-MD.md +0 -0
  52. /package/docs/{templates → Templates}/Agents/COPILOT-INSTRUCTIONS.md +0 -0
  53. /package/docs/{templates → Templates}/Agents/DEBUGGER-PROMPT.md +0 -0
  54. /package/docs/{templates → Templates}/Agents/PLANNER-PROMPT.md +0 -0
  55. /package/docs/{templates/codebase → Templates/Codebase}/architecture.md +0 -0
  56. /package/docs/{templates/codebase → Templates/Codebase}/concerns.md +0 -0
  57. /package/docs/{templates/codebase → Templates/Codebase}/conventions.md +0 -0
  58. /package/docs/{templates/codebase → Templates/Codebase}/integrations.md +0 -0
  59. /package/docs/{templates/codebase → Templates/Codebase}/stack.md +0 -0
  60. /package/docs/{templates/codebase → Templates/Codebase}/structure.md +0 -0
  61. /package/docs/{templates/codebase → Templates/Codebase}/testing.md +0 -0
  62. /package/docs/{templates → Templates}/Execution/CONTINUE-HERE.md +0 -0
  63. /package/docs/{templates → Templates}/Execution/DISCUSSION-LOG.md +0 -0
  64. /package/docs/{templates → Templates}/Execution/PHASE-PROMPT.md +0 -0
  65. /package/docs/{templates → Templates}/Execution/STATE.md +0 -0
  66. /package/docs/{templates → Templates}/Execution/SUMMARY-COMPLEX.md +0 -0
  67. /package/docs/{templates → Templates}/Execution/SUMMARY-MINIMAL.md +0 -0
  68. /package/docs/{templates → Templates}/Execution/SUMMARY-STANDARD.md +0 -0
  69. /package/docs/{templates → Templates}/Execution/SUMMARY.md +0 -0
  70. /package/docs/{templates → Templates}/Profile/DEV-PREFERENCES.md +0 -0
  71. /package/docs/{templates → Templates}/Profile/USER-PROFILE.md +0 -0
  72. /package/docs/{templates → Templates}/Profile/USER-SETUP.md +0 -0
  73. /package/docs/{templates → Templates}/Project/DISCOVERY.md +0 -0
  74. /package/docs/{templates → Templates}/Project/MILESTONE-ARCHIVE.md +0 -0
  75. /package/docs/{templates → Templates}/Project/MILESTONE.md +0 -0
  76. /package/docs/{templates → Templates}/Project/PROJECT.md +0 -0
  77. /package/docs/{templates → Templates}/Project/REQUIREMENTS.md +0 -0
  78. /package/docs/{templates → Templates}/Project/RETROSPECTIVE.md +0 -0
  79. /package/docs/{templates → Templates}/Project/ROADMAP.md +0 -0
  80. /package/docs/{templates → Templates}/Quality/DEBUG.md +0 -0
  81. /package/docs/{templates → Templates}/Quality/UAT.md +0 -0
  82. /package/docs/{templates → Templates}/Quality/UI-SPEC.md +0 -0
  83. /package/docs/{templates → Templates}/Quality/VALIDATION.md +0 -0
  84. /package/docs/{templates → Templates}/Quality/VERIFICATION-REPORT.md +0 -0
  85. /package/docs/{templates/research → Templates/Research}/ARCHITECTURE.md +0 -0
  86. /package/docs/{templates/research → Templates/Research}/FEATURES.md +0 -0
  87. /package/docs/{templates/research → Templates/Research}/PITFALLS.md +0 -0
  88. /package/docs/{templates/research → Templates/Research}/STACK.md +0 -0
  89. /package/docs/{templates/research → Templates/Research}/SUMMARY.md +0 -0
  90. /package/docs/{templates → Templates}/System/CONFIG.json +0 -0
  91. /package/docs/{templates → Templates}/System/CONTEXT.md +0 -0
File without changes