gabbe 1.0.0__tar.gz

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 (585) hide show
  1. gabbe-1.0.0/CHANGELOG.md +439 -0
  2. gabbe-1.0.0/LICENSE +25 -0
  3. gabbe-1.0.0/LICENSE-CODE +202 -0
  4. gabbe-1.0.0/MANIFEST.in +39 -0
  5. gabbe-1.0.0/PKG-INFO +856 -0
  6. gabbe-1.0.0/README.md +817 -0
  7. gabbe-1.0.0/agents/.gitignore +9 -0
  8. gabbe-1.0.0/agents/AGENTS.md +542 -0
  9. gabbe-1.0.0/agents/CONSTITUTION.md +188 -0
  10. gabbe-1.0.0/agents/guides/00-index.md +142 -0
  11. gabbe-1.0.0/agents/guides/ai/a2ui-protocols.md +71 -0
  12. gabbe-1.0.0/agents/guides/ai/actor-agent-frameworks.md +82 -0
  13. gabbe-1.0.0/agents/guides/ai/agent-communication.md +146 -0
  14. gabbe-1.0.0/agents/guides/ai/agent-identity-trust.md +69 -0
  15. gabbe-1.0.0/agents/guides/ai/agent-only-cognition.md +73 -0
  16. gabbe-1.0.0/agents/guides/ai/agent-only-swarms.md +70 -0
  17. gabbe-1.0.0/agents/guides/ai/agent-operating-ergonomics.md +52 -0
  18. gabbe-1.0.0/agents/guides/ai/agent-ui.md +106 -0
  19. gabbe-1.0.0/agents/guides/ai/ai-agentic.md +309 -0
  20. gabbe-1.0.0/agents/guides/ai/beyond-llms.md +60 -0
  21. gabbe-1.0.0/agents/guides/ai/dynamic-capability-loading.md +121 -0
  22. gabbe-1.0.0/agents/guides/ai/gabbe-innovations.md +111 -0
  23. gabbe-1.0.0/agents/guides/ai/model-customization-decisions.md +78 -0
  24. gabbe-1.0.0/agents/guides/ai/multi-agent-systems.md +85 -0
  25. gabbe-1.0.0/agents/guides/ai/self-evolving-skills.md +137 -0
  26. gabbe-1.0.0/agents/guides/ai/self-healing-summary.md +21 -0
  27. gabbe-1.0.0/agents/guides/ai/visual-mcp-integration.md +106 -0
  28. gabbe-1.0.0/agents/guides/architecture/api-standards.md +61 -0
  29. gabbe-1.0.0/agents/guides/architecture/blockchain-dlt.md +36 -0
  30. gabbe-1.0.0/agents/guides/architecture/critical-systems-arch.md +66 -0
  31. gabbe-1.0.0/agents/guides/architecture/event-driven-architecture.md +39 -0
  32. gabbe-1.0.0/agents/guides/architecture/microservices.md +292 -0
  33. gabbe-1.0.0/agents/guides/architecture/monolith.md +303 -0
  34. gabbe-1.0.0/agents/guides/architecture/orchestration.md +75 -0
  35. gabbe-1.0.0/agents/guides/architecture/system-qualities.md +51 -0
  36. gabbe-1.0.0/agents/guides/architecture/system-scalability.md +47 -0
  37. gabbe-1.0.0/agents/guides/architecture/systems-architecture.md +506 -0
  38. gabbe-1.0.0/agents/guides/data/semantic-web.md +23 -0
  39. gabbe-1.0.0/agents/guides/data/sql-nosql.md +305 -0
  40. gabbe-1.0.0/agents/guides/industry/engineering-standards.md +36 -0
  41. gabbe-1.0.0/agents/guides/industry/global-standards.md +24 -0
  42. gabbe-1.0.0/agents/guides/industry/healthcare-fhir.md +33 -0
  43. gabbe-1.0.0/agents/guides/industry/industrial-iot.md +33 -0
  44. gabbe-1.0.0/agents/guides/industry/telecom-networks.md +34 -0
  45. gabbe-1.0.0/agents/guides/languages/c-sharp.md +66 -0
  46. gabbe-1.0.0/agents/guides/languages/go-lang.md +251 -0
  47. gabbe-1.0.0/agents/guides/languages/java.md +73 -0
  48. gabbe-1.0.0/agents/guides/languages/js-ts-nodejs.md +361 -0
  49. gabbe-1.0.0/agents/guides/languages/nodejs-advanced.md +56 -0
  50. gabbe-1.0.0/agents/guides/languages/php-laravel.md +376 -0
  51. gabbe-1.0.0/agents/guides/languages/python-fastapi-ai.md +257 -0
  52. gabbe-1.0.0/agents/guides/languages/rust.md +73 -0
  53. gabbe-1.0.0/agents/guides/ops/compliance-audit.md +177 -0
  54. gabbe-1.0.0/agents/guides/ops/cost-optimization.md +57 -0
  55. gabbe-1.0.0/agents/guides/ops/dev-environments.md +67 -0
  56. gabbe-1.0.0/agents/guides/ops/dev-workflow.md +44 -0
  57. gabbe-1.0.0/agents/guides/ops/gabbe-cli-workflows.md +252 -0
  58. gabbe-1.0.0/agents/guides/ops/production-health.md +62 -0
  59. gabbe-1.0.0/agents/guides/ops/troubleshooting-guide.md +69 -0
  60. gabbe-1.0.0/agents/guides/patterns/agentic-design-patterns.md +308 -0
  61. gabbe-1.0.0/agents/guides/patterns/agentic-patterns.md +43 -0
  62. gabbe-1.0.0/agents/guides/patterns/ai-native-scenarios.md +71 -0
  63. gabbe-1.0.0/agents/guides/patterns/autonomous-swarm-patterns.md +42 -0
  64. gabbe-1.0.0/agents/guides/patterns/design-patterns.md +68 -0
  65. gabbe-1.0.0/agents/guides/patterns/enterprise-migration-scenario.md +58 -0
  66. gabbe-1.0.0/agents/guides/patterns/enterprise-patterns.md +56 -0
  67. gabbe-1.0.0/agents/guides/patterns/software-design-patterns.md +106 -0
  68. gabbe-1.0.0/agents/guides/patterns/time-complexity-analysis.md +116 -0
  69. gabbe-1.0.0/agents/guides/planning/product-requirements.md +407 -0
  70. gabbe-1.0.0/agents/guides/planning/strategic-analysis.md +98 -0
  71. gabbe-1.0.0/agents/guides/planning/visual-product-specs.md +162 -0
  72. gabbe-1.0.0/agents/guides/principles/clean-code-standards.md +51 -0
  73. gabbe-1.0.0/agents/guides/principles/computing-foundations.md +87 -0
  74. gabbe-1.0.0/agents/guides/principles/diagramming-standards.md +568 -0
  75. gabbe-1.0.0/agents/guides/principles/evaluation-strategy.md +103 -0
  76. gabbe-1.0.0/agents/guides/principles/future-tech.md +35 -0
  77. gabbe-1.0.0/agents/guides/principles/human-agent-collaboration.md +54 -0
  78. gabbe-1.0.0/agents/guides/principles/legacy-tech.md +61 -0
  79. gabbe-1.0.0/agents/guides/principles/mathematical-foundations.md +103 -0
  80. gabbe-1.0.0/agents/guides/principles/modeling-methods.md +97 -0
  81. gabbe-1.0.0/agents/guides/principles/no-code-integration.md +84 -0
  82. gabbe-1.0.0/agents/guides/principles/testing-strategy.md +97 -0
  83. gabbe-1.0.0/agents/guides/principles/visual-design-system.md +44 -0
  84. gabbe-1.0.0/agents/guides/processes/RARV_CYCLE.md +262 -0
  85. gabbe-1.0.0/agents/guides/processes/extension-protocol.md +183 -0
  86. gabbe-1.0.0/agents/guides/processes/full-system-lifecycle.md +47 -0
  87. gabbe-1.0.0/agents/guides/processes/knowledge-integration.md +82 -0
  88. gabbe-1.0.0/agents/guides/processes/loki-sdlc-phases.md +446 -0
  89. gabbe-1.0.0/agents/guides/product/green-software.md +38 -0
  90. gabbe-1.0.0/agents/guides/product/sustainability-checks.md +29 -0
  91. gabbe-1.0.0/agents/guides/security/ai-risk-standards-map.md +98 -0
  92. gabbe-1.0.0/agents/guides/security/api-security.md +51 -0
  93. gabbe-1.0.0/agents/guides/security/cryptography-standards.md +38 -0
  94. gabbe-1.0.0/agents/guides/security/privacy-data-protection.md +41 -0
  95. gabbe-1.0.0/agents/guides/security/secure-architecture.md +43 -0
  96. gabbe-1.0.0/agents/guides/security/threat-modeling.md +46 -0
  97. gabbe-1.0.0/agents/memory/AUDIT_LOG.md +48 -0
  98. gabbe-1.0.0/agents/memory/CONTINUITY.md +49 -0
  99. gabbe-1.0.0/agents/memory/PROJECT_STATE.md +134 -0
  100. gabbe-1.0.0/agents/memory/RESUME_POINTER.md +15 -0
  101. gabbe-1.0.0/agents/memory/episodic/DECISION_LOG_TEMPLATE.md +104 -0
  102. gabbe-1.0.0/agents/memory/semantic/PROJECT_KNOWLEDGE_TEMPLATE.md +194 -0
  103. gabbe-1.0.0/agents/memory/semantic/VECTOR_DB_CONFIG_TEMPLATE.json +46 -0
  104. gabbe-1.0.0/agents/personas/00-index.md +148 -0
  105. gabbe-1.0.0/agents/personas/biz-compliance.md +112 -0
  106. gabbe-1.0.0/agents/personas/biz-legal.md +131 -0
  107. gabbe-1.0.0/agents/personas/eng-api.md +110 -0
  108. gabbe-1.0.0/agents/personas/eng-backend.md +113 -0
  109. gabbe-1.0.0/agents/personas/eng-data.md +50 -0
  110. gabbe-1.0.0/agents/personas/eng-database.md +95 -0
  111. gabbe-1.0.0/agents/personas/eng-frontend.md +75 -0
  112. gabbe-1.0.0/agents/personas/eng-infra.md +105 -0
  113. gabbe-1.0.0/agents/personas/eng-messaging.md +50 -0
  114. gabbe-1.0.0/agents/personas/eng-ml.md +50 -0
  115. gabbe-1.0.0/agents/personas/eng-mobile.md +75 -0
  116. gabbe-1.0.0/agents/personas/eng-perf.md +90 -0
  117. gabbe-1.0.0/agents/personas/eng-qa.md +125 -0
  118. gabbe-1.0.0/agents/personas/eng-tooling.md +49 -0
  119. gabbe-1.0.0/agents/personas/ops-compliance.md +109 -0
  120. gabbe-1.0.0/agents/personas/ops-cost.md +92 -0
  121. gabbe-1.0.0/agents/personas/ops-devops.md +85 -0
  122. gabbe-1.0.0/agents/personas/ops-incident.md +123 -0
  123. gabbe-1.0.0/agents/personas/ops-monitor.md +89 -0
  124. gabbe-1.0.0/agents/personas/ops-release.md +91 -0
  125. gabbe-1.0.0/agents/personas/ops-security.md +104 -0
  126. gabbe-1.0.0/agents/personas/ops-sre.md +85 -0
  127. gabbe-1.0.0/agents/personas/orch-coordinator.md +140 -0
  128. gabbe-1.0.0/agents/personas/orch-judge.md +135 -0
  129. gabbe-1.0.0/agents/personas/orch-planner.md +114 -0
  130. gabbe-1.0.0/agents/personas/orch-researcher.md +165 -0
  131. gabbe-1.0.0/agents/personas/prod-architect.md +110 -0
  132. gabbe-1.0.0/agents/personas/prod-design.md +112 -0
  133. gabbe-1.0.0/agents/personas/prod-ethicist.md +50 -0
  134. gabbe-1.0.0/agents/personas/prod-integration.md +120 -0
  135. gabbe-1.0.0/agents/personas/prod-pm.md +115 -0
  136. gabbe-1.0.0/agents/personas/prod-product-ops.md +128 -0
  137. gabbe-1.0.0/agents/personas/prod-research.md +49 -0
  138. gabbe-1.0.0/agents/personas/prod-safety-engineer.md +28 -0
  139. gabbe-1.0.0/agents/personas/prod-tech-lead.md +119 -0
  140. gabbe-1.0.0/agents/personas/ui-design.md +81 -0
  141. gabbe-1.0.0/agents/scripts/check_skills_docs.py +120 -0
  142. gabbe-1.0.0/agents/scripts/compile_skills.py +284 -0
  143. gabbe-1.0.0/agents/scripts/comprehensive_checker.py +187 -0
  144. gabbe-1.0.0/agents/scripts/dump-context.sh +37 -0
  145. gabbe-1.0.0/agents/scripts/eval_skills.py +268 -0
  146. gabbe-1.0.0/agents/scripts/preflight_summary.sh +80 -0
  147. gabbe-1.0.0/agents/scripts/report_duplicates.py +125 -0
  148. gabbe-1.0.0/agents/scripts/setup-context.ps1 +250 -0
  149. gabbe-1.0.0/agents/scripts/setup-context.sh +398 -0
  150. gabbe-1.0.0/agents/scripts/state_export.sh +84 -0
  151. gabbe-1.0.0/agents/scripts/state_import.sh +99 -0
  152. gabbe-1.0.0/agents/scripts/validate_integrity.py +98 -0
  153. gabbe-1.0.0/agents/scripts/validate_links.py +96 -0
  154. gabbe-1.0.0/agents/scripts/validate_methodology_graph.py +194 -0
  155. gabbe-1.0.0/agents/scripts/validate_skills.py +81 -0
  156. gabbe-1.0.0/agents/scripts/verify_e2e_init_flows.py +246 -0
  157. gabbe-1.0.0/agents/scripts/verify_setup_simulation.py +104 -0
  158. gabbe-1.0.0/agents/scripts/verify_triggers_and_mcps.py +159 -0
  159. gabbe-1.0.0/agents/scripts/verify_use_cases.py +498 -0
  160. gabbe-1.0.0/agents/skills/00-index.md +322 -0
  161. gabbe-1.0.0/agents/skills/ai/a2ui-protocols.skill.md +31 -0
  162. gabbe-1.0.0/agents/skills/ai/actor-agent-frameworks.skill.md +31 -0
  163. gabbe-1.0.0/agents/skills/ai/agent-communication.skill.md +36 -0
  164. gabbe-1.0.0/agents/skills/ai/agent-ui.skill.md +31 -0
  165. gabbe-1.0.0/agents/skills/ai/autonomous-swarm-patterns.skill.md +31 -0
  166. gabbe-1.0.0/agents/skills/ai/beyond-llms.skill.md +31 -0
  167. gabbe-1.0.0/agents/skills/ai/context-engineering.skill.md +79 -0
  168. gabbe-1.0.0/agents/skills/ai/llm-as-judge.skill.md +97 -0
  169. gabbe-1.0.0/agents/skills/ai/multi-agent-systems.skill.md +31 -0
  170. gabbe-1.0.0/agents/skills/ai/rag-evaluation.skill.md +93 -0
  171. gabbe-1.0.0/agents/skills/ai/reasoning-patterns.skill.md +125 -0
  172. gabbe-1.0.0/agents/skills/architecture/adaptive-architecture.skill.md +51 -0
  173. gabbe-1.0.0/agents/skills/architecture/api-design.skill.md +92 -0
  174. gabbe-1.0.0/agents/skills/architecture/api-standards.skill.md +31 -0
  175. gabbe-1.0.0/agents/skills/architecture/arch-debt.skill.md +180 -0
  176. gabbe-1.0.0/agents/skills/architecture/arch-design.skill.md +304 -0
  177. gabbe-1.0.0/agents/skills/architecture/arch-patterns.skill.md +52 -0
  178. gabbe-1.0.0/agents/skills/architecture/arch-review.skill.md +326 -0
  179. gabbe-1.0.0/agents/skills/architecture/architecture-governance.skill.md +62 -0
  180. gabbe-1.0.0/agents/skills/architecture/attribute-driven-design.skill.md +108 -0
  181. gabbe-1.0.0/agents/skills/architecture/blockchain-dlt.skill.md +28 -0
  182. gabbe-1.0.0/agents/skills/architecture/compatibility-design.skill.md +51 -0
  183. gabbe-1.0.0/agents/skills/architecture/critical-systems-arch.skill.md +31 -0
  184. gabbe-1.0.0/agents/skills/architecture/design-patterns.skill.md +59 -0
  185. gabbe-1.0.0/agents/skills/architecture/diagramming.skill.md +380 -0
  186. gabbe-1.0.0/agents/skills/architecture/domain-model.skill.md +294 -0
  187. gabbe-1.0.0/agents/skills/architecture/enterprise-migration-scenario.skill.md +31 -0
  188. gabbe-1.0.0/agents/skills/architecture/enterprise-patterns.skill.md +31 -0
  189. gabbe-1.0.0/agents/skills/architecture/error-handling-strategy.skill.md +58 -0
  190. gabbe-1.0.0/agents/skills/architecture/event-driven-architecture.skill.md +31 -0
  191. gabbe-1.0.0/agents/skills/architecture/event-governance.skill.md +55 -0
  192. gabbe-1.0.0/agents/skills/architecture/fitness-functions.skill.md +111 -0
  193. gabbe-1.0.0/agents/skills/architecture/graphql-schema.skill.md +64 -0
  194. gabbe-1.0.0/agents/skills/architecture/legacy-modernization.skill.md +51 -0
  195. gabbe-1.0.0/agents/skills/architecture/microservices.skill.md +31 -0
  196. gabbe-1.0.0/agents/skills/architecture/middleware-design.skill.md +59 -0
  197. gabbe-1.0.0/agents/skills/architecture/monolith.skill.md +31 -0
  198. gabbe-1.0.0/agents/skills/architecture/realtime-comm.skill.md +52 -0
  199. gabbe-1.0.0/agents/skills/architecture/state-management.skill.md +72 -0
  200. gabbe-1.0.0/agents/skills/architecture/system-qualities.skill.md +31 -0
  201. gabbe-1.0.0/agents/skills/architecture/system-scalability.skill.md +31 -0
  202. gabbe-1.0.0/agents/skills/architecture/systems-architecture.skill.md +31 -0
  203. gabbe-1.0.0/agents/skills/architecture/visual-whiteboarding.skill.md +33 -0
  204. gabbe-1.0.0/agents/skills/brain/README.md +70 -0
  205. gabbe-1.0.0/agents/skills/brain/active-inference.skill.md +74 -0
  206. gabbe-1.0.0/agents/skills/brain/brain-mode.skill.md +125 -0
  207. gabbe-1.0.0/agents/skills/brain/cognitive-architectures.skill.md +53 -0
  208. gabbe-1.0.0/agents/skills/brain/cognitive-testing.skill.md +62 -0
  209. gabbe-1.0.0/agents/skills/brain/consciousness-loop.skill.md +68 -0
  210. gabbe-1.0.0/agents/skills/brain/cost-benefit-router.skill.md +89 -0
  211. gabbe-1.0.0/agents/skills/brain/episodic-consolidation.skill.md +43 -0
  212. gabbe-1.0.0/agents/skills/brain/epistemology-knowledge.skill.md +54 -0
  213. gabbe-1.0.0/agents/skills/brain/global-workspace.skill.md +77 -0
  214. gabbe-1.0.0/agents/skills/brain/learning-adaptation.skill.md +68 -0
  215. gabbe-1.0.0/agents/skills/brain/loki-mode.skill.md +267 -0
  216. gabbe-1.0.0/agents/skills/brain/neuroscience-foundations.skill.md +52 -0
  217. gabbe-1.0.0/agents/skills/brain/scripts/active_inference_loop.py +92 -0
  218. gabbe-1.0.0/agents/skills/brain/scripts/cognition_test.py +80 -0
  219. gabbe-1.0.0/agents/skills/brain/scripts/global_workspace.py +104 -0
  220. gabbe-1.0.0/agents/skills/brain/self-improvement.skill.md +80 -0
  221. gabbe-1.0.0/agents/skills/brain/sensory-motor.skill.md +61 -0
  222. gabbe-1.0.0/agents/skills/brain/sequential-thinking.skill.md +48 -0
  223. gabbe-1.0.0/agents/skills/brain/working-memory.skill.md +47 -0
  224. gabbe-1.0.0/agents/skills/coding/agent-trajectory-eval.skill.md +92 -0
  225. gabbe-1.0.0/agents/skills/coding/artisan-commands.skill.md +52 -0
  226. gabbe-1.0.0/agents/skills/coding/browser-tdd.skill.md +131 -0
  227. gabbe-1.0.0/agents/skills/coding/chaos-fault-injection.skill.md +116 -0
  228. gabbe-1.0.0/agents/skills/coding/ci-autofix.skill.md +53 -0
  229. gabbe-1.0.0/agents/skills/coding/clean-coder.skill.md +58 -0
  230. gabbe-1.0.0/agents/skills/coding/code-review.skill.md +100 -0
  231. gabbe-1.0.0/agents/skills/coding/debug.skill.md +100 -0
  232. gabbe-1.0.0/agents/skills/coding/documentation.skill.md +149 -0
  233. gabbe-1.0.0/agents/skills/coding/eval-driven-development.skill.md +107 -0
  234. gabbe-1.0.0/agents/skills/coding/evals/code-review.eval.yaml +29 -0
  235. gabbe-1.0.0/agents/skills/coding/excalidraw.skill.md +90 -0
  236. gabbe-1.0.0/agents/skills/coding/file-processing.skill.md +55 -0
  237. gabbe-1.0.0/agents/skills/coding/git-workflow.skill.md +153 -0
  238. gabbe-1.0.0/agents/skills/coding/metamorphic-testing.skill.md +113 -0
  239. gabbe-1.0.0/agents/skills/coding/mobile-dev.skill.md +41 -0
  240. gabbe-1.0.0/agents/skills/coding/nodejs-expert.skill.md +23 -0
  241. gabbe-1.0.0/agents/skills/coding/output-validation.skill.md +57 -0
  242. gabbe-1.0.0/agents/skills/coding/pbt-strategy.skill.md +117 -0
  243. gabbe-1.0.0/agents/skills/coding/performant-ai.skill.md +62 -0
  244. gabbe-1.0.0/agents/skills/coding/performant-go.skill.md +61 -0
  245. gabbe-1.0.0/agents/skills/coding/performant-laravel.skill.md +70 -0
  246. gabbe-1.0.0/agents/skills/coding/performant-nodejs.skill.md +67 -0
  247. gabbe-1.0.0/agents/skills/coding/performant-php.skill.md +53 -0
  248. gabbe-1.0.0/agents/skills/coding/performant-python.skill.md +62 -0
  249. gabbe-1.0.0/agents/skills/coding/refactor.skill.md +124 -0
  250. gabbe-1.0.0/agents/skills/coding/secure-coding.skill.md +57 -0
  251. gabbe-1.0.0/agents/skills/coding/sketch-to-diagram.skill.md +106 -0
  252. gabbe-1.0.0/agents/skills/coding/spec-driven-development.skill.md +110 -0
  253. gabbe-1.0.0/agents/skills/coding/tdd-cycle.skill.md +92 -0
  254. gabbe-1.0.0/agents/skills/coding/testing-strategy.skill.md +74 -0
  255. gabbe-1.0.0/agents/skills/coding/time-complexity.skill.md +112 -0
  256. gabbe-1.0.0/agents/skills/coding/tldraw-canvas.skill.md +109 -0
  257. gabbe-1.0.0/agents/skills/coding/tool-construction.skill.md +47 -0
  258. gabbe-1.0.0/agents/skills/coding/ui-gen.skill.md +64 -0
  259. gabbe-1.0.0/agents/skills/coding/vibe-coding.skill.md +63 -0
  260. gabbe-1.0.0/agents/skills/coding/visual-design.skill.md +65 -0
  261. gabbe-1.0.0/agents/skills/coordination/agent-interop.skill.md +72 -0
  262. gabbe-1.0.0/agents/skills/coordination/agent-protocol.skill.md +62 -0
  263. gabbe-1.0.0/agents/skills/coordination/agent-workflow-patterns.skill.md +123 -0
  264. gabbe-1.0.0/agents/skills/coordination/agentic-linter.skill.md +134 -0
  265. gabbe-1.0.0/agents/skills/coordination/agentic-patterns.skill.md +79 -0
  266. gabbe-1.0.0/agents/skills/coordination/meta-optimize.skill.md +62 -0
  267. gabbe-1.0.0/agents/skills/coordination/meta-prompting.skill.md +46 -0
  268. gabbe-1.0.0/agents/skills/coordination/multi-agent-orch.skill.md +78 -0
  269. gabbe-1.0.0/agents/skills/coordination/persona-selector.skill.md +78 -0
  270. gabbe-1.0.0/agents/skills/coordination/self-optimize.skill.md +81 -0
  271. gabbe-1.0.0/agents/skills/coordination/swarm-consensus.skill.md +52 -0
  272. gabbe-1.0.0/agents/skills/core/agent-analytics.skill.md +74 -0
  273. gabbe-1.0.0/agents/skills/core/audit-trail.skill.md +122 -0
  274. gabbe-1.0.0/agents/skills/core/clarify.skill.md +89 -0
  275. gabbe-1.0.0/agents/skills/core/emerging-tech.skill.md +52 -0
  276. gabbe-1.0.0/agents/skills/core/empirical-methods.skill.md +101 -0
  277. gabbe-1.0.0/agents/skills/core/evals/clarify.eval.yaml +29 -0
  278. gabbe-1.0.0/agents/skills/core/evals/integrity-check.eval.yaml +23 -0
  279. gabbe-1.0.0/agents/skills/core/evals/research.eval.yaml +23 -0
  280. gabbe-1.0.0/agents/skills/core/final-review.skill.md +66 -0
  281. gabbe-1.0.0/agents/skills/core/integrity-check.skill.md +149 -0
  282. gabbe-1.0.0/agents/skills/core/knowledge-connect.skill.md +77 -0
  283. gabbe-1.0.0/agents/skills/core/knowledge-gap.skill.md +123 -0
  284. gabbe-1.0.0/agents/skills/core/preflight.skill.md +106 -0
  285. gabbe-1.0.0/agents/skills/core/research.skill.md +107 -0
  286. gabbe-1.0.0/agents/skills/core/retrospective.skill.md +59 -0
  287. gabbe-1.0.0/agents/skills/core/sdlc-checkpoint.skill.md +151 -0
  288. gabbe-1.0.0/agents/skills/core/self-heal.skill.md +163 -0
  289. gabbe-1.0.0/agents/skills/core/session-resume.skill.md +125 -0
  290. gabbe-1.0.0/agents/skills/core/skills-registry.skill.md +65 -0
  291. gabbe-1.0.0/agents/skills/core/state-portability.skill.md +89 -0
  292. gabbe-1.0.0/agents/skills/core/state-preserve.skill.md +76 -0
  293. gabbe-1.0.0/agents/skills/core/system-lifecycle.skill.md +51 -0
  294. gabbe-1.0.0/agents/skills/core/update-scan.skill.md +92 -0
  295. gabbe-1.0.0/agents/skills/data/data-engineering.skill.md +56 -0
  296. gabbe-1.0.0/agents/skills/data/data-governance.skill.md +49 -0
  297. gabbe-1.0.0/agents/skills/data/db-migration.skill.md +136 -0
  298. gabbe-1.0.0/agents/skills/data/semantic-web.skill.md +28 -0
  299. gabbe-1.0.0/agents/skills/data/sql-optimization.skill.md +78 -0
  300. gabbe-1.0.0/agents/skills/industry/engineering-standards.skill.md +31 -0
  301. gabbe-1.0.0/agents/skills/industry/global-standards.skill.md +30 -0
  302. gabbe-1.0.0/agents/skills/industry/healthcare-fhir.skill.md +28 -0
  303. gabbe-1.0.0/agents/skills/industry/industrial-iot.skill.md +30 -0
  304. gabbe-1.0.0/agents/skills/industry/telecom-networks.skill.md +30 -0
  305. gabbe-1.0.0/agents/skills/ops/caching-strategy.skill.md +77 -0
  306. gabbe-1.0.0/agents/skills/ops/capacity-planning.skill.md +67 -0
  307. gabbe-1.0.0/agents/skills/ops/cloud-deploy.skill.md +55 -0
  308. gabbe-1.0.0/agents/skills/ops/configuration-management.skill.md +107 -0
  309. gabbe-1.0.0/agents/skills/ops/cost-optimization.skill.md +39 -0
  310. gabbe-1.0.0/agents/skills/ops/decommission-sunset.skill.md +64 -0
  311. gabbe-1.0.0/agents/skills/ops/dependency-lifecycle.skill.md +63 -0
  312. gabbe-1.0.0/agents/skills/ops/deployment.skill.md +217 -0
  313. gabbe-1.0.0/agents/skills/ops/dev-environments.skill.md +31 -0
  314. gabbe-1.0.0/agents/skills/ops/dev-workflow.skill.md +28 -0
  315. gabbe-1.0.0/agents/skills/ops/docker-dev.skill.md +52 -0
  316. gabbe-1.0.0/agents/skills/ops/enterprise-integration.skill.md +53 -0
  317. gabbe-1.0.0/agents/skills/ops/feature-flag-management.skill.md +59 -0
  318. gabbe-1.0.0/agents/skills/ops/incident-response.skill.md +40 -0
  319. gabbe-1.0.0/agents/skills/ops/infra-devops.skill.md +53 -0
  320. gabbe-1.0.0/agents/skills/ops/k8s-dev.skill.md +51 -0
  321. gabbe-1.0.0/agents/skills/ops/memory-optimization.skill.md +45 -0
  322. gabbe-1.0.0/agents/skills/ops/observability-stack-setup.skill.md +62 -0
  323. gabbe-1.0.0/agents/skills/ops/performance-audit.skill.md +178 -0
  324. gabbe-1.0.0/agents/skills/ops/performance-optimization.skill.md +51 -0
  325. gabbe-1.0.0/agents/skills/ops/production-health.skill.md +85 -0
  326. gabbe-1.0.0/agents/skills/ops/production-verifier.skill.md +50 -0
  327. gabbe-1.0.0/agents/skills/ops/queue-management.skill.md +52 -0
  328. gabbe-1.0.0/agents/skills/ops/release-management.skill.md +39 -0
  329. gabbe-1.0.0/agents/skills/ops/release-validation.skill.md +51 -0
  330. gabbe-1.0.0/agents/skills/ops/reliability-sre.skill.md +51 -0
  331. gabbe-1.0.0/agents/skills/ops/runbook-authoring.skill.md +64 -0
  332. gabbe-1.0.0/agents/skills/ops/system-benchmark.skill.md +69 -0
  333. gabbe-1.0.0/agents/skills/ops/tech-debt.skill.md +143 -0
  334. gabbe-1.0.0/agents/skills/ops/troubleshooting-guide.skill.md +31 -0
  335. gabbe-1.0.0/agents/skills/product/accessibility.skill.md +143 -0
  336. gabbe-1.0.0/agents/skills/product/adr-writer.skill.md +110 -0
  337. gabbe-1.0.0/agents/skills/product/business-case.skill.md +70 -0
  338. gabbe-1.0.0/agents/skills/product/change-management.skill.md +90 -0
  339. gabbe-1.0.0/agents/skills/product/decompose.skill.md +75 -0
  340. gabbe-1.0.0/agents/skills/product/design-thinking.skill.md +62 -0
  341. gabbe-1.0.0/agents/skills/product/estimation-sizing.skill.md +87 -0
  342. gabbe-1.0.0/agents/skills/product/evals/spec-writer.eval.yaml +22 -0
  343. gabbe-1.0.0/agents/skills/product/financial-governance.skill.md +88 -0
  344. gabbe-1.0.0/agents/skills/product/green-software.skill.md +46 -0
  345. gabbe-1.0.0/agents/skills/product/ideation-facilitation.skill.md +87 -0
  346. gabbe-1.0.0/agents/skills/product/market-analysis.skill.md +56 -0
  347. gabbe-1.0.0/agents/skills/product/opportunity-assessment.skill.md +89 -0
  348. gabbe-1.0.0/agents/skills/product/product-analytics.skill.md +92 -0
  349. gabbe-1.0.0/agents/skills/product/professional-practice.skill.md +105 -0
  350. gabbe-1.0.0/agents/skills/product/req-elicitation.skill.md +292 -0
  351. gabbe-1.0.0/agents/skills/product/req-review.skill.md +280 -0
  352. gabbe-1.0.0/agents/skills/product/spec-analyze.skill.md +98 -0
  353. gabbe-1.0.0/agents/skills/product/spec-writer.skill.md +114 -0
  354. gabbe-1.0.0/agents/skills/product/stakeholder-management.skill.md +54 -0
  355. gabbe-1.0.0/agents/skills/product/sustainability-checks.skill.md +29 -0
  356. gabbe-1.0.0/agents/skills/product/systems-thinking.skill.md +56 -0
  357. gabbe-1.0.0/agents/skills/product/user-research-synthesis.skill.md +85 -0
  358. gabbe-1.0.0/agents/skills/product/user-story-mapping.skill.md +54 -0
  359. gabbe-1.0.0/agents/skills/product/visual-specs.skill.md +112 -0
  360. gabbe-1.0.0/agents/skills/security/access-control.skill.md +45 -0
  361. gabbe-1.0.0/agents/skills/security/agent-sandboxing.skill.md +69 -0
  362. gabbe-1.0.0/agents/skills/security/ai-ethics-compliance.skill.md +46 -0
  363. gabbe-1.0.0/agents/skills/security/ai-red-teaming.skill.md +74 -0
  364. gabbe-1.0.0/agents/skills/security/ai-safety-guardrails.skill.md +60 -0
  365. gabbe-1.0.0/agents/skills/security/api-security.skill.md +31 -0
  366. gabbe-1.0.0/agents/skills/security/backup-recovery.skill.md +49 -0
  367. gabbe-1.0.0/agents/skills/security/compliance-review.skill.md +152 -0
  368. gabbe-1.0.0/agents/skills/security/cryptography-standards.skill.md +31 -0
  369. gabbe-1.0.0/agents/skills/security/dependency-security.skill.md +47 -0
  370. gabbe-1.0.0/agents/skills/security/hazard-analysis.skill.md +53 -0
  371. gabbe-1.0.0/agents/skills/security/legal-review.skill.md +41 -0
  372. gabbe-1.0.0/agents/skills/security/log-analysis.skill.md +68 -0
  373. gabbe-1.0.0/agents/skills/security/network-security.skill.md +64 -0
  374. gabbe-1.0.0/agents/skills/security/privacy-audit.skill.md +137 -0
  375. gabbe-1.0.0/agents/skills/security/privacy-data-protection.skill.md +31 -0
  376. gabbe-1.0.0/agents/skills/security/prompt-injection-defense.skill.md +67 -0
  377. gabbe-1.0.0/agents/skills/security/reliability-engineering.skill.md +47 -0
  378. gabbe-1.0.0/agents/skills/security/safety-scan.skill.md +49 -0
  379. gabbe-1.0.0/agents/skills/security/secrets-management.skill.md +65 -0
  380. gabbe-1.0.0/agents/skills/security/secure-architecture.skill.md +31 -0
  381. gabbe-1.0.0/agents/skills/security/security-audit.skill.md +164 -0
  382. gabbe-1.0.0/agents/skills/security/threat-model.skill.md +120 -0
  383. gabbe-1.0.0/agents/skills/security/traceability-audit.skill.md +48 -0
  384. gabbe-1.0.0/agents/templates/00-index.md +162 -0
  385. gabbe-1.0.0/agents/templates/architecture/ADAPTIVE_SYSTEM_TEMPLATE.md +35 -0
  386. gabbe-1.0.0/agents/templates/architecture/ADD_WORKBOOK_TEMPLATE.md +81 -0
  387. gabbe-1.0.0/agents/templates/architecture/ADR_TEMPLATE.md +136 -0
  388. gabbe-1.0.0/agents/templates/architecture/ARCHITECTURE_DECISION_MATRIX.md +169 -0
  389. gabbe-1.0.0/agents/templates/architecture/ARCHITECTURE_REVIEW_TEMPLATE.md +241 -0
  390. gabbe-1.0.0/agents/templates/architecture/ARCHITECTURE_VIEWS_TEMPLATE.md +353 -0
  391. gabbe-1.0.0/agents/templates/architecture/ARCH_DECISION_FRAMEWORK.md +32 -0
  392. gabbe-1.0.0/agents/templates/architecture/C4_ARCHITECTURE_TEMPLATE.md +185 -0
  393. gabbe-1.0.0/agents/templates/architecture/CAPABILITY_MAP_TEMPLATE.md +153 -0
  394. gabbe-1.0.0/agents/templates/architecture/CONTEXT_MAP_TEMPLATE.md +196 -0
  395. gabbe-1.0.0/agents/templates/architecture/DESIGN_PATTERN_USAGE.md +24 -0
  396. gabbe-1.0.0/agents/templates/architecture/DOMAIN_MODEL_TEMPLATE.md +254 -0
  397. gabbe-1.0.0/agents/templates/architecture/FITNESS_FUNCTION_TEMPLATE.md +59 -0
  398. gabbe-1.0.0/agents/templates/architecture/INTEGRATION_SPEC_TEMPLATE.md +38 -0
  399. gabbe-1.0.0/agents/templates/architecture/LEGACY_AUDIT_TEMPLATE.md +34 -0
  400. gabbe-1.0.0/agents/templates/architecture/QUALITY_ATTRIBUTES_TEMPLATE.md +210 -0
  401. gabbe-1.0.0/agents/templates/architecture/SCALABILITY_ANALYSIS_TEMPLATE.md +46 -0
  402. gabbe-1.0.0/agents/templates/architecture/SMART_CONTRACT_TEMPLATE.md +44 -0
  403. gabbe-1.0.0/agents/templates/architecture/SYSTEM_CONTEXT_TEMPLATE.md +197 -0
  404. gabbe-1.0.0/agents/templates/brain/ACTIVE_INFERENCE_LOOP_TEMPLATE.md +42 -0
  405. gabbe-1.0.0/agents/templates/brain/EPISODIC_MEMORY_LOG_TEMPLATE.md +28 -0
  406. gabbe-1.0.0/agents/templates/brain/GLOBAL_WORKSPACE_CONFIG_TEMPLATE.md +44 -0
  407. gabbe-1.0.0/agents/templates/brain/KNOWLEDGE_MAP_TEMPLATE.md +53 -0
  408. gabbe-1.0.0/agents/templates/brain/OODA_LOOP_TRACE_TEMPLATE.md +44 -0
  409. gabbe-1.0.0/agents/templates/brain/PREDICTION_ERROR_LOG_TEMPLATE.md +33 -0
  410. gabbe-1.0.0/agents/templates/brain/PROJECT_CONTEXT_TEMPLATE.md +36 -0
  411. gabbe-1.0.0/agents/templates/brain/SELF_IMPROVEMENT_LOG_TEMPLATE.md +39 -0
  412. gabbe-1.0.0/agents/templates/brain/WORKING_MEMORY_TEMPLATE.md +34 -0
  413. gabbe-1.0.0/agents/templates/coding/CLEAN_CODE_CHECKLIST.md +30 -0
  414. gabbe-1.0.0/agents/templates/coding/DESIGN_TOKENS_TEMPLATE.json +54 -0
  415. gabbe-1.0.0/agents/templates/coding/DEVCONTAINER_TEMPLATE.json +42 -0
  416. gabbe-1.0.0/agents/templates/coding/DEV_SPACE_TEMPLATE.yaml +48 -0
  417. gabbe-1.0.0/agents/templates/coding/E2E_TEST_SUITE_TEMPLATE.md +36 -0
  418. gabbe-1.0.0/agents/templates/coding/EVAL_PLAN_TEMPLATE.md +85 -0
  419. gabbe-1.0.0/agents/templates/coding/EVAL_RUBRIC_TEMPLATE.md +57 -0
  420. gabbe-1.0.0/agents/templates/coding/GOLDEN_DATASET_TEMPLATE.md +73 -0
  421. gabbe-1.0.0/agents/templates/coding/PROPERTY_TEST_CHECKLIST.md +77 -0
  422. gabbe-1.0.0/agents/templates/coding/SKETCH_TO_DIAGRAM_TEMPLATE.md +56 -0
  423. gabbe-1.0.0/agents/templates/coding/TEST_CASE_TEMPLATE.md +28 -0
  424. gabbe-1.0.0/agents/templates/coding/TEST_PLAN_TEMPLATE.md +36 -0
  425. gabbe-1.0.0/agents/templates/coding/TIME_COMPLEXITY_REPORT_TEMPLATE.md +61 -0
  426. gabbe-1.0.0/agents/templates/coordination/AGENTS_TEMPLATE.md +540 -0
  427. gabbe-1.0.0/agents/templates/coordination/AGENT_HANDSHAKE_TEMPLATE.json +37 -0
  428. gabbe-1.0.0/agents/templates/coordination/AGENT_PROFILE_TEMPLATE.md +28 -0
  429. gabbe-1.0.0/agents/templates/coordination/SWARM_ARCHITECTURE_TEMPLATE.md +53 -0
  430. gabbe-1.0.0/agents/templates/coordination/SWARM_CONFIG_TEMPLATE.json +45 -0
  431. gabbe-1.0.0/agents/templates/core/AUDIT_LOG_TEMPLATE.md +75 -0
  432. gabbe-1.0.0/agents/templates/core/BUG_REPORT_TEMPLATE.md +136 -0
  433. gabbe-1.0.0/agents/templates/core/DEPENDENCY_GRAPH_TEMPLATE.md +63 -0
  434. gabbe-1.0.0/agents/templates/core/ESTIMATION_TEMPLATE.md +70 -0
  435. gabbe-1.0.0/agents/templates/core/MCP_CONFIG_TEMPLATE.json +807 -0
  436. gabbe-1.0.0/agents/templates/core/PLAN_TEMPLATE.md +162 -0
  437. gabbe-1.0.0/agents/templates/core/PROJECT_RETROSPECTIVE_TEMPLATE.md +67 -0
  438. gabbe-1.0.0/agents/templates/core/SDLC_TRACKER.md +217 -0
  439. gabbe-1.0.0/agents/templates/core/SESSION_SNAPSHOT_TEMPLATE.md +168 -0
  440. gabbe-1.0.0/agents/templates/core/SYSTEM_ANALYSIS_TEMPLATE.md +52 -0
  441. gabbe-1.0.0/agents/templates/core/TASKS_TEMPLATE.md +104 -0
  442. gabbe-1.0.0/agents/templates/core/TRACEABILITY_MATRIX_TEMPLATE.md +18 -0
  443. gabbe-1.0.0/agents/templates/core/WHITEBOARD_DESIGN_TEMPLATE.md +46 -0
  444. gabbe-1.0.0/agents/templates/data/DATABASE_SCHEMA_TEMPLATE.md +38 -0
  445. gabbe-1.0.0/agents/templates/data/DATA_PIPELINE_TEMPLATE.md +44 -0
  446. gabbe-1.0.0/agents/templates/data/ONTOLOGY_TEMPLATE.md +52 -0
  447. gabbe-1.0.0/agents/templates/industry/ENGINEERING_STANDARDS_REVIEW_TEMPLATE.md +43 -0
  448. gabbe-1.0.0/agents/templates/industry/FHIR_INTEGRATION_TEMPLATE.md +53 -0
  449. gabbe-1.0.0/agents/templates/industry/GLOBAL_STANDARDS_AUDIT_TEMPLATE.md +45 -0
  450. gabbe-1.0.0/agents/templates/industry/IOT_TELEMETRY_TEMPLATE.md +59 -0
  451. gabbe-1.0.0/agents/templates/industry/TELECOM_API_TEMPLATE.md +50 -0
  452. gabbe-1.0.0/agents/templates/ops/BENCHMARK_REPORT_TEMPLATE.md +48 -0
  453. gabbe-1.0.0/agents/templates/ops/CAPACITY_PLAN_TEMPLATE.md +41 -0
  454. gabbe-1.0.0/agents/templates/ops/COST_OPTIMIZATION_REPORT_TEMPLATE.md +40 -0
  455. gabbe-1.0.0/agents/templates/ops/DECOMMISSION_PLAN_TEMPLATE.md +102 -0
  456. gabbe-1.0.0/agents/templates/ops/DEPLOY_CONFIG_TEMPLATE.md +88 -0
  457. gabbe-1.0.0/agents/templates/ops/INCIDENT_POSTMORTEM_TEMPLATE.md +39 -0
  458. gabbe-1.0.0/agents/templates/ops/INFRA_PLAN_TEMPLATE.md +37 -0
  459. gabbe-1.0.0/agents/templates/ops/RELEASE_READINESS_REPORT.md +35 -0
  460. gabbe-1.0.0/agents/templates/ops/RUNBOOK_TEMPLATE.md +103 -0
  461. gabbe-1.0.0/agents/templates/ops/TECH_DEBT_TEMPLATE.md +102 -0
  462. gabbe-1.0.0/agents/templates/product/BUSINESS_CASE_TEMPLATE.md +42 -0
  463. gabbe-1.0.0/agents/templates/product/CHANGE_MANAGEMENT_PLAN_TEMPLATE.md +68 -0
  464. gabbe-1.0.0/agents/templates/product/EMPATHY_MAP_TEMPLATE.md +47 -0
  465. gabbe-1.0.0/agents/templates/product/EXPERIMENT_PLAN_TEMPLATE.md +84 -0
  466. gabbe-1.0.0/agents/templates/product/GREEN_SOFTWARE_REPORT_TEMPLATE.md +42 -0
  467. gabbe-1.0.0/agents/templates/product/IDEATION_LOG_TEMPLATE.md +42 -0
  468. gabbe-1.0.0/agents/templates/product/NFR_TEMPLATE.md +31 -0
  469. gabbe-1.0.0/agents/templates/product/PRD_TEMPLATE.md +222 -0
  470. gabbe-1.0.0/agents/templates/product/PROBLEM_STATEMENT_TEMPLATE.md +32 -0
  471. gabbe-1.0.0/agents/templates/product/REQUIREMENTS_REVIEW_TEMPLATE.md +173 -0
  472. gabbe-1.0.0/agents/templates/product/SPEC_TEMPLATE.md +259 -0
  473. gabbe-1.0.0/agents/templates/product/STAKEHOLDER_REGISTER_TEMPLATE.md +127 -0
  474. gabbe-1.0.0/agents/templates/product/USER_STORY_MAP_TEMPLATE.md +35 -0
  475. gabbe-1.0.0/agents/templates/product/VISUAL_SPEC_PACKAGE_TEMPLATE.md +207 -0
  476. gabbe-1.0.0/agents/templates/security/DATASHEET_TEMPLATE.md +95 -0
  477. gabbe-1.0.0/agents/templates/security/ETHICAL_IMPACT_ASSESSMENT.md +32 -0
  478. gabbe-1.0.0/agents/templates/security/HAZARD_LOG.md +17 -0
  479. gabbe-1.0.0/agents/templates/security/MODEL_CARD_TEMPLATE.md +120 -0
  480. gabbe-1.0.0/agents/templates/security/SAFETY_CASE.md +39 -0
  481. gabbe-1.0.0/agents/templates/security/SAFETY_POLICY.md +25 -0
  482. gabbe-1.0.0/agents/templates/security/SECURITY_CHECKLIST.md +157 -0
  483. gabbe-1.0.0/agents/templates/security/SYSTEM_CARD_TEMPLATE.md +139 -0
  484. gabbe-1.0.0/agents/templates/security/THREAT_MODEL_TEMPLATE.md +171 -0
  485. gabbe-1.0.0/bin/install.js +572 -0
  486. gabbe-1.0.0/docs/CLI_REFERENCE.md +527 -0
  487. gabbe-1.0.0/docs/INSTALL.md +68 -0
  488. gabbe-1.0.0/docs/MCP_CONFIGURATIONS.md +1765 -0
  489. gabbe-1.0.0/docs/PLATFORM_CONTROLS.md +324 -0
  490. gabbe-1.0.0/docs/POST_INSTALL.md +75 -0
  491. gabbe-1.0.0/docs/QUICK_COMMANDS.md +131 -0
  492. gabbe-1.0.0/docs/QUICK_GUIDE.md +914 -0
  493. gabbe-1.0.0/docs/README_FULL.md +1451 -0
  494. gabbe-1.0.0/docs/SCHEMA.md +164 -0
  495. gabbe-1.0.0/docs/V1_RELEASE_CHECKLIST.md +144 -0
  496. gabbe-1.0.0/docs/VERIFICATION_GUIDE.md +283 -0
  497. gabbe-1.0.0/docs/adr/0001-record-architecture-decisions.md +26 -0
  498. gabbe-1.0.0/docs/adr/0002-brain-active-inference-runtime.md +27 -0
  499. gabbe-1.0.0/docs/adr/0003-additive-only-emitter-schema-evolution.md +33 -0
  500. gabbe-1.0.0/docs/assets/GABBE.png +0 -0
  501. gabbe-1.0.0/docs/gabbe.config.example.json +9 -0
  502. gabbe-1.0.0/docs/reports/duplication-report.md +30 -0
  503. gabbe-1.0.0/gabbe/__init__.py +10 -0
  504. gabbe-1.0.0/gabbe/audit.py +435 -0
  505. gabbe-1.0.0/gabbe/brain.py +273 -0
  506. gabbe-1.0.0/gabbe/budget.py +208 -0
  507. gabbe-1.0.0/gabbe/cache.py +87 -0
  508. gabbe-1.0.0/gabbe/config.py +225 -0
  509. gabbe-1.0.0/gabbe/context.py +176 -0
  510. gabbe-1.0.0/gabbe/database.py +198 -0
  511. gabbe-1.0.0/gabbe/doctor.py +143 -0
  512. gabbe-1.0.0/gabbe/escalation.py +129 -0
  513. gabbe-1.0.0/gabbe/evals.py +35 -0
  514. gabbe-1.0.0/gabbe/forecast.py +76 -0
  515. gabbe-1.0.0/gabbe/gateway.py +143 -0
  516. gabbe-1.0.0/gabbe/hardstop.py +62 -0
  517. gabbe-1.0.0/gabbe/installer.py +260 -0
  518. gabbe-1.0.0/gabbe/llm.py +168 -0
  519. gabbe-1.0.0/gabbe/main.py +446 -0
  520. gabbe-1.0.0/gabbe/mcp_server.py +242 -0
  521. gabbe-1.0.0/gabbe/policy.py +183 -0
  522. gabbe-1.0.0/gabbe/replay.py +175 -0
  523. gabbe-1.0.0/gabbe/route.py +79 -0
  524. gabbe-1.0.0/gabbe/status.py +42 -0
  525. gabbe-1.0.0/gabbe/sync.py +370 -0
  526. gabbe-1.0.0/gabbe/tests/__init__.py +1 -0
  527. gabbe-1.0.0/gabbe/tests/conftest.py +75 -0
  528. gabbe-1.0.0/gabbe/tests/test_audit.py +190 -0
  529. gabbe-1.0.0/gabbe/tests/test_audit_genai.py +188 -0
  530. gabbe-1.0.0/gabbe/tests/test_brain.py +200 -0
  531. gabbe-1.0.0/gabbe/tests/test_brain_integration.py +108 -0
  532. gabbe-1.0.0/gabbe/tests/test_brain_invariants.py +126 -0
  533. gabbe-1.0.0/gabbe/tests/test_brain_properties.py +88 -0
  534. gabbe-1.0.0/gabbe/tests/test_budget.py +257 -0
  535. gabbe-1.0.0/gabbe/tests/test_budget_properties.py +99 -0
  536. gabbe-1.0.0/gabbe/tests/test_cache.py +63 -0
  537. gabbe-1.0.0/gabbe/tests/test_chaos_fault_injection.py +63 -0
  538. gabbe-1.0.0/gabbe/tests/test_config.py +128 -0
  539. gabbe-1.0.0/gabbe/tests/test_context.py +155 -0
  540. gabbe-1.0.0/gabbe/tests/test_contract_api_surface.py +33 -0
  541. gabbe-1.0.0/gabbe/tests/test_contract_cli_help.py +70 -0
  542. gabbe-1.0.0/gabbe/tests/test_contract_config_schema.py +66 -0
  543. gabbe-1.0.0/gabbe/tests/test_database.py +84 -0
  544. gabbe-1.0.0/gabbe/tests/test_docs_cli_sync.py +51 -0
  545. gabbe-1.0.0/gabbe/tests/test_e2e.py +213 -0
  546. gabbe-1.0.0/gabbe/tests/test_e2e_workflow.py +1050 -0
  547. gabbe-1.0.0/gabbe/tests/test_edge_cases.py +404 -0
  548. gabbe-1.0.0/gabbe/tests/test_error_paths.py +57 -0
  549. gabbe-1.0.0/gabbe/tests/test_escalation.py +109 -0
  550. gabbe-1.0.0/gabbe/tests/test_forecast.py +114 -0
  551. gabbe-1.0.0/gabbe/tests/test_gateway.py +184 -0
  552. gabbe-1.0.0/gabbe/tests/test_hardstop.py +89 -0
  553. gabbe-1.0.0/gabbe/tests/test_llm.py +95 -0
  554. gabbe-1.0.0/gabbe/tests/test_llm_backoff.py +86 -0
  555. gabbe-1.0.0/gabbe/tests/test_llm_retries.py +77 -0
  556. gabbe-1.0.0/gabbe/tests/test_loki_shadow.py +140 -0
  557. gabbe-1.0.0/gabbe/tests/test_main.py +220 -0
  558. gabbe-1.0.0/gabbe/tests/test_mcp_contract.py +108 -0
  559. gabbe-1.0.0/gabbe/tests/test_mcp_fuzz.py +84 -0
  560. gabbe-1.0.0/gabbe/tests/test_mcp_server.py +406 -0
  561. gabbe-1.0.0/gabbe/tests/test_mva_core.py +55 -0
  562. gabbe-1.0.0/gabbe/tests/test_policy.py +272 -0
  563. gabbe-1.0.0/gabbe/tests/test_replay.py +140 -0
  564. gabbe-1.0.0/gabbe/tests/test_replay_properties.py +58 -0
  565. gabbe-1.0.0/gabbe/tests/test_route.py +97 -0
  566. gabbe-1.0.0/gabbe/tests/test_route_properties.py +53 -0
  567. gabbe-1.0.0/gabbe/tests/test_status.py +107 -0
  568. gabbe-1.0.0/gabbe/tests/test_sync.py +215 -0
  569. gabbe-1.0.0/gabbe/tests/test_sync_fallback.py +132 -0
  570. gabbe-1.0.0/gabbe/tests/test_sync_markers.py +53 -0
  571. gabbe-1.0.0/gabbe/tests/test_sync_properties.py +53 -0
  572. gabbe-1.0.0/gabbe/tests/test_verify.py +105 -0
  573. gabbe-1.0.0/gabbe/verify.py +237 -0
  574. gabbe-1.0.0/gabbe.egg-info/PKG-INFO +856 -0
  575. gabbe-1.0.0/gabbe.egg-info/SOURCES.txt +583 -0
  576. gabbe-1.0.0/gabbe.egg-info/dependency_links.txt +1 -0
  577. gabbe-1.0.0/gabbe.egg-info/entry_points.txt +2 -0
  578. gabbe-1.0.0/gabbe.egg-info/requires.txt +18 -0
  579. gabbe-1.0.0/gabbe.egg-info/top_level.txt +1 -0
  580. gabbe-1.0.0/install.ps1 +90 -0
  581. gabbe-1.0.0/install.sh +89 -0
  582. gabbe-1.0.0/package.json +48 -0
  583. gabbe-1.0.0/pyproject.toml +113 -0
  584. gabbe-1.0.0/scripts/init.py +1036 -0
  585. gabbe-1.0.0/setup.cfg +4 -0
@@ -0,0 +1,439 @@
1
+ # Changelog
2
+
3
+ All notable changes to GABBE are documented in this file.
4
+
5
+ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
+
7
+ ---
8
+
9
+ ## [1.0.0] — 2026-06-17 — Cradle-to-grave ADLC, evals & guardrails, advanced testing, reversible multi-OS install
10
+
11
+ The v1.0 release. Strictly **additive and backward-compatible**: all 6 CI gates
12
+ (api-surface, cli-help, config-schema, db-schema, emitter-vault, cve-delta) and
13
+ the additive-only emit pipeline stay green — no public API/CLI/config/DB/emit key
14
+ is removed or retyped, so existing agents, prior-version projects, and existing
15
+ procedures keep working unchanged. v1.0 broadens the methodology layer to the
16
+ **entire** lifecycle (S00–S13), adds an evaluation + standards-grounded guardrails
17
+ layer, deterministic property/fuzz/chaos/mutation testing, hardened self-*
18
+ capabilities, and a fully reversible, autodetecting, multi-OS install/update/
19
+ uninstall path.
20
+
21
+ > **Honesty note (carried into the skills themselves):** PBT/metamorphic tests and
22
+ > evals **sample** an input space and **raise confidence** — they do **not** prove
23
+ > correctness. LLM-as-judge is biased-but-useful and is calibrated against human
24
+ > labels, never treated as ground truth (`pass^k`/`pass@k` reliability is reported,
25
+ > never "proof"). The AI-risk standards map documents **coverage, not
26
+ > certification**. v1.0 claims best-in-class coverage, not mathematically guaranteed
27
+ > 100% correctness.
28
+
29
+ ### Added — Methodology layer
30
+ - **Cradle-to-grave ADLC.** New **Day-0 phase S00 — Strategy & Discovery** (opportunity
31
+ framing, ideation, Wardley mapping, market scan, North-Star/HEART, RICE; go/no-go
32
+ human gate before S01) and **Day-2 phases S11–S13** (S11 Operate & Maintain, S12
33
+ Evolve & Continuously Improve, S13 Decommission & Sunset) extend the existing
34
+ S01–S10 SDLC end to end.
35
+ - **~19 new skills** grounded in named industry methods — **ADD 3.0** (`attribute-driven-design`),
36
+ **ATAM** (explicit in `arch-review`), **Wardley/JTBD/RICE/North-Star** (`opportunity-assessment`,
37
+ `user-research-synthesis`, `ideation-facilitation`), **DORA/SPACE** (`product-analytics`),
38
+ **ADKAR** (`change-management`), plus `estimation-sizing`, `financial-governance`,
39
+ `fitness-functions`, `spec-driven-development`, `retrospective`, and the Day-2 ops
40
+ set (`observability-stack-setup`, `feature-flag-management`, `runbook-authoring`,
41
+ `dependency-lifecycle`, `decommission-sunset`). Self-contained prose, no inline
42
+ citation URLs.
43
+ - **New mid-phase quality gates:** **S02.5** Cost & Feasibility, **S04.5** Parallelism/
44
+ Dependency feasibility, **S06.5** Performance-regression, **S07.5** Sustainability
45
+ (green-software) — documented in `loki-sdlc-phases.md` and `orch-judge`.
46
+ - **2 new personas:** `prod-product-ops` (Day-2 metrics/analytics/experimentation owner;
47
+ wired into S11/S12) and `prod-integration` (third-party integration / vendor-SLA
48
+ architect; wired into S02/S03/S05).
49
+ - **~13 new templates** (estimation, ADD workbook, fitness function, retrospective,
50
+ runbook, dependency graph, experiment plan, change-management plan, decommission
51
+ plan, property-test checklist, eval plan/golden-dataset/rubric), each registered in
52
+ `agents/templates/00-index.md` and wired to the phase/skill that produces it.
53
+
54
+ ### Added — MCP ecosystem (SWEBOK v4 priority map)
55
+ - **8 new opt-in MCP servers** in `MCP_CONFIG_TEMPLATE.json` (now 65 total): `knowledge-graph-memory`
56
+ (Anthropic persistent memory), `mcp-evals` (↔ `eval-driven-development.skill`), `mcp-chaos-rig`
57
+ (↔ `chaos-fault-injection.skill` + `gabbe verify --chaos`), `supabase`, `pagerduty` (Day-2 S11),
58
+ `cloudflare`, `obsidian`, `discord`, plus `google-genai-toolbox`.
59
+ - **SWEBOK v4 priority map** in `docs/MCP_CONFIGURATIONS.md` — best self-hostable servers mapped to
60
+ the software-engineering knowledge areas, each tied to a GABBE phase/skill.
61
+ - `time-complexity` documented as a **local-GitHub** MCP server (build from source); `semgrep` and
62
+ `google-genai-toolbox` annotated with local-install steps.
63
+
64
+ ### Added — SWEBOK v4 alignment, agentic-AI patterns & AI assurance
65
+ - **SWEBOK v4 foundations** — full coverage of all knowledge areas via skills `professional-practice`
66
+ (ACM/IEEE-CS ethics), `empirical-methods` (measurement/experiment design), `configuration-management`
67
+ (SCM discipline), and guides `mathematical-foundations`, `computing-foundations`, `modeling-methods`.
68
+ - **Agentic-AI skills** — `context-engineering` (Write/Select/Compress/Isolate, prompt caching),
69
+ `ai-red-teaming` (offensive testing, ASR gating, PyRIT/Garak/Promptfoo), `agent-sandboxing`
70
+ (four-domain intrinsic isolation, locked at creation), `reasoning-patterns` (CoT/ToT/ReAct/Reflexion
71
+ selection), `agent-workflow-patterns` (chaining/routing/parallelization/orchestrator-workers/
72
+ evaluator-optimizer; workflow-vs-agent decision).
73
+ - **Agentic-AI guides** — `agent-identity-trust` (KYA, OAuth-for-agents, signed mandates, A2A/AGNTCY),
74
+ `model-customization-decisions` (prompt vs RAG vs fine-tune, SLMs, routing/cascades), plus two
75
+ catalogs: `agentic-design-patterns` (full agentic taxonomy) and `software-design-patterns`
76
+ (classical GoF / architectural / DDD / enterprise-integration patterns).
77
+ - **AI-assurance templates** — `MODEL_CARD`, `DATASHEET`, and `SYSTEM_CARD` to make governance concrete.
78
+ - **Standards map expanded** — ISO/IEC 5338 (AI lifecycle), 23894 (AI risk), 25059 (AI quality), 22989,
79
+ IEEE 7000-series, NIST AI 600-1 (GenAI Profile), EU AI Act GPAI Code of Practice, Google SAIF→CoSAI;
80
+ `agent-communication` refreshed for the converged protocol stack (A2A→Linux Foundation, AGNTCY /
81
+ Internet-of-Agents, MCP OAuth authorization).
82
+ - **Post-install workflow** — `gabbe doctor` prints which MCP servers to enable + how; new
83
+ `docs/POST_INSTALL.md` full environment-setup guide.
84
+ - **Methodology upgrades** — predictive cost admission control (reserve→reconcile), multi-agent
85
+ topology-selection matrix + named swarm failure modes, and a grounded-self-critique rule (reflection
86
+ loops require an external anchor) folded into the existing orchestration/patterns skills.
87
+ - **Security hardening** — installer agent-name validation + path-containment (the isolation invariant
88
+ holds even against a tampered manifest), with regression tests.
89
+
90
+ ### Added — Evaluation & guardrails (Track E)
91
+ - **Eval methodology skills:** `coding/eval-driven-development` (offline eval suites,
92
+ golden datasets, 3-tier assertions deterministic→semantic→LLM-judge, `pass@k`/`pass^k`
93
+ statistical gating), `ai/llm-as-judge` (rubric scoring + known-bias mitigations),
94
+ `ai/rag-evaluation` (Ragas-grounded faithfulness/relevance/context precision-recall),
95
+ `coding/agent-trajectory-eval` (tool-selection precision/recall/F1, trajectory
96
+ in-order match; τ-bench / SWE-bench Verified grounding).
97
+ - **Self-eval harness** `agents/scripts/eval_skills.py` (no new core dep; assertions-only
98
+ per-commit, optional LLM-judge under `live_llm`/nightly; emits a JSON scorecard) +
99
+ promptfoo-compatible `agents/skills/<cat>/evals/*.eval.yaml` golden datasets; optional
100
+ **`gabbe eval`** subcommand (new public `run_evals()`).
101
+ - **Standards-grounded guardrails:** `security/prompt-injection-defense` (direct vs.
102
+ indirect injection, lethal trifecta, dual-LLM/quarantine, spotlighting; OWASP
103
+ **LLM01:2025**) and `coding/output-validation` (schema-validated output, constrained
104
+ decoding, PII masking; OWASP **LLM05/LLM02**); `ai-safety-guardrails` upgraded with the
105
+ input/output/dialog/retrieval/execution rails taxonomy.
106
+ - **`agents/guides/security/ai-risk-standards-map.md`** — coverage map of every GABBE
107
+ skill/gate/persona to **OWASP LLM Top 10 (2025)**, **NIST AI RMF (+ GenAI Profile)**,
108
+ **MITRE ATLAS**, **ISO/IEC 42001**, and the **EU AI Act** (documents coverage, not
109
+ certification).
110
+ - **MCP contract hardening:** every string tool input bounded by charset + length
111
+ (`pattern` + `maxLength`); `test_mcp_contract.py` proves schemas valid + adversarial
112
+ payloads fail-closed.
113
+ - **Cognitive-mode tests:** `test_brain_invariants.py` and `test_loki_shadow.py`
114
+ (mutually-exclusive states, toy convergence, resume-pointer integrity, loop/resource
115
+ guards, confidence-threshold escalation, self-heal→restore) + new
116
+ `brain/cognitive-testing` skill.
117
+ - **`agents/scripts/validate_methodology_graph.py`** — lifecycle state-machine DAG +
118
+ persona-handoff graph + memory state model + skill-shape validator, joining the
119
+ `validate_*`/`verify_*` suite.
120
+
121
+ ### Added — Advanced testing (Track B)
122
+ - **Hypothesis property-based test suites** for `budget`/`sync`/`route`/`replay`
123
+ invariants (budget cap never exceeded, sync idempotency/convergence, route
124
+ PII→LOCAL + complexity threshold, replay round-trip).
125
+ - **MCP fuzzing** (`hypothesis-jsonschema` against the validated `run_command` handler +
126
+ malformed JSON-RPC envelope fuzzing).
127
+ - **Chaos / fault injection** (subprocess timeout, sqlite `OperationalError` mid-txn,
128
+ LLM failure → assert escalation/hardstop/rollback).
129
+ - **Mutation testing** (`mutmut`, nightly/non-blocking) and `slow`/`live_llm`/`mutation`
130
+ pytest markers.
131
+ - **`gabbe verify --chaos`** — new public `run_chaos_checks()` runs the fault-injection
132
+ self-checks (additive flag; only `cli_help/verify.txt` baseline regenerated).
133
+
134
+ ### Added — Distribution (Track D)
135
+ - **`.gabbe/manifest.json` install manifest** recording exactly what each installer
136
+ created (path/kind/points_to/agent/hash/backup_of/versions) — the backbone of
137
+ reversibility.
138
+ - **Multi-target install:** project (default), `--global`
139
+ (`$XDG_DATA_HOME/gabbe`, refcounted), and `--dir <abs-path>` custom scope, with a
140
+ tested isolation invariant (nothing written outside the chosen target unless
141
+ `--global`).
142
+ - **`uninstall` / `update`** (`npx gabbe …`, `gabbe …`, plus `uninstall.sh`/`uninstall.ps1`):
143
+ manifest-driven, idempotent, restores `.bak` backups, never touches preserve files
144
+ (`memory/*`, `project/*`, `policies.yml`, `AGENTS.md`/`CONSTITUTION.md` edits);
145
+ `--dry-run`, `--purge`, `--remove-agents <list>` deselection.
146
+ - **`gabbe doctor`** — single read-only environment + install report that autodetects
147
+ OS/arch, runtimes, installed agent clients, chosen scope, and manifest integrity, with
148
+ a PASS/FAIL per check; multi-OS install verification (`{ubuntu, macos, windows}` ×
149
+ `{npx / pip|pipx / curl|sh | install.ps1}`) plus post-publish `release-verify` of the
150
+ real published artifact.
151
+
152
+ ### Added — Self-* hardening (Track C)
153
+ - **Honest self-* guides:** `agents/guides/ai/self-evolving-skills.md`,
154
+ `agents/guides/ai/dynamic-capability-loading.md` (load-or-ask-the-user flow), and
155
+ `agents/guides/processes/extension-protocol.md` (the canonical additive way to add a
156
+ skill/template/persona/guide/agent-client/MCP/model without a breaking change).
157
+ - Each self-* capability (self-evolving, self-adaptive, self-healing, dynamic capability
158
+ loading) is paired with an executable proof scenario, and the **"brain inference via
159
+ skills" / self-evolving genes** framing is stated honestly: the production
160
+ `gabbe/brain.py` is epsilon-greedy with a monotonic success-rate, and the free-energy /
161
+ Active-Inference framing is conceptual, not literal math.
162
+
163
+ ## [0.9.6] — 2026-06-12 — Operating spine, universal install, more agents, registry interop
164
+
165
+ Strictly backward-compatible with the last released tag, v0.8.0-beta (6 gates +
166
+ golden + validators green). All new behavior is additive; the only removals are
167
+ pre-release internals that never shipped in any tagged release (see Removed).
168
+
169
+ ### Added — operating spine (markdown, runtime-agnostic)
170
+ - **`core/preflight`** (mandated Step 0): auto-check + load index summaries + memory
171
+ headers + cost posture + recommend the optimal capability set, then clarify.
172
+ - **`core/clarify`**: uncertainty-aware clarifying questions at every step + a
173
+ reasoning-pattern menu.
174
+ - **`core/state-preserve` + `core/state-portability`** (+ `state_export.sh` /
175
+ `state_import.sh`): continuous + pre-cutoff checkpointing (RESUME_POINTER) so a
176
+ token/time/crash cutoff never loses progress; portable, agent-agnostic state
177
+ export/import to continue in any other coding agent/LLM.
178
+ - **`core/update-scan`**: discover + adopt the best skills/tools/MCPs/models, gated
179
+ by `GABBE_AUTONOMY` + budget; A2-only evolution + misaligned-replay guard;
180
+ protected files; policy-as-code self-enforcement.
181
+ - **`coordination/persona-selector`** (selection/tiering/delegation/voting) +
182
+ **`coordination/self-optimize`** (autonomy levels L0–L3 + macro/meso/micro alignment).
183
+ - **`core/skills-registry`** + **`core/final-review`** skills.
184
+
185
+ ### Added — first-class concerns
186
+ - **Observability**: AGENTS.md/CONSTITUTION mandates + OTel GenAI semantic
187
+ conventions in `gabbe/audit.py` (`genai_usage_attributes`, `record_genai_usage`,
188
+ content-redaction toggle).
189
+ - **Spec-Driven**: spec → evals → test → code; EARS; golden-thread traceability.
190
+ - **Human–Agent Collaboration**: manager-not-operator; Purpose/Transparency/Control
191
+ (`guides/principles/human-agent-collaboration.md`, `guides/ai/agent-operating-ergonomics.md`).
192
+
193
+ ### Added — agents, install, registry, CLI
194
+ - **Six more coding agents**: Antigravity, OpenCode, Zed, Continue, Roo Code,
195
+ Kilo Code (Gemini split out, backward-compatible); universal `.agents/skills/`
196
+ emitter; new golden platforms `antigravity` + `opencode`.
197
+ - **Universal install**: `npx gabbe init` (`bin/install.js`), `install.sh` /
198
+ `install.ps1`, `MANIFEST.in` (kit in sdist), `release.yml` (wheel + npm + tarball).
199
+ - **Skills-registry interop**: `scripts/registry_export.py` / `registry_import.py`;
200
+ `gabbe registry publish|add` + `gabbe setup` CLI verbs.
201
+ - **Per-project policy**: `GABBE_AUTONOMY` + `project/gabbe.config.json`
202
+ (`gabbe/config.py`); pre-step cost reservation `budget.reserve()`/`can_afford()`.
203
+ - **`scripts/verify_all.sh` + `TESTING.md`**: one-stop verification + how-to-test.
204
+
205
+ ### Security — release-hardening sweeps (PRs #13–15)
206
+ - **Policy engine fail-closed**: a present `policies.yml` with no/empty/null
207
+ `tools` section now denies all (was allow-all / crashed on `tools:` null).
208
+ - **Audit redaction closure**: OTel `gabbe.input`/`gabbe.output` span attributes
209
+ are redacted like the JSONL path; non-JSON-serializable objects are
210
+ stringified-then-redacted so `__str__` output can't smuggle PII/secrets past
211
+ `json.dumps(default=str)`.
212
+ - **`state_import.sh` hardening**: fatal portable `mktemp` template (no
213
+ predictable temp dir), `pipefail`, `--no-same-owner --no-same-permissions`
214
+ extraction; symlink/hardlink + traversal members already rejected.
215
+ - **`setup-context.ps1`**: link detection by `LinkType` (SymbolicLink / Junction /
216
+ HardLink) — never moves a real file/dir mistaken for a link.
217
+ - **Consistency gate** grown to 8 invariants (dangling concrete-path scan with
218
+ `agents/` prefix handling, guides-count parity, fence balance, persona
219
+ resolution, gate-label drift, …).
220
+
221
+ ### Changed — typing + hardening pass (Gemini/Antigravity audit + follow-ups)
222
+ - **`gabbe/` core fully typed**: `mypy --strict` clean across all 23 core modules.
223
+ - **`brain.py`**: gene selection now implements the documented epsilon-greedy
224
+ policy (20% exploration of the newest generation) instead of pure greedy.
225
+ - **`sync.py`**: Windows-safe atomic writes (`os.replace` PermissionError retry).
226
+ - **`gateway.py`**: tool-argument validation is fail-closed — a parameterized
227
+ tool refuses to execute when `jsonschema` is unavailable (and `jsonschema>=4`
228
+ is now a required dependency, so it always is available on a normal install).
229
+ - **`llm.py`**: opt-in `GABBE_LLM_CACHE` (cache identical deterministic LLM
230
+ calls locally; 0 tokens on a hit; off by default) + malformed-JSON handling.
231
+ - **New checks**: `scripts/tests/test_capability_layer.py` (kit-wide link +
232
+ frontmatter CI test); `scripts/fill_placeholders.py` interactive setup utility.
233
+ - **`update-scan.skill.md`**: self-evolution git-branching workflow (never
234
+ mutate `main`; `evolve/{feature}` branch + tests + human review before merge).
235
+ - New regression tests: `GABBE_AUTONOMY` precedence (env > project config >
236
+ `hybrid`), `budget.reserve()` semantics, real-jsonschema gateway validation.
237
+
238
+ ### Removed — pre-release internals (never shipped in a tagged release)
239
+ - `gabbe.audit.traced` decorator, `gabbe.config.SKILLS_DIR`,
240
+ `gabbe.config.UNDERLINE` (unused internals; the public span API is
241
+ `start_span`/`end_span`).
242
+
243
+ ## [0.9.0] — 2026-06-10 — Audit Hardening (strict backward-compatible)
244
+
245
+ ### Security
246
+ - **MCP server fail-closed by default** (was unauthenticated + allow-all): `gabbe serve-mcp` now blocks commands unless `GABBE_MCP_ALLOWED_COMMANDS` is set and requires a token; `GABBE_MCP_INSECURE=1` restores legacy behavior. Added a subprocess timeout and MCP `protocolVersion` (2025-11-25).
247
+ - Skill-name slug sanitization blocks path traversal in the emitter.
248
+ - Audit logs (`project/logs/*.jsonl`) now redact emails/keys/tokens.
249
+
250
+ ### Added
251
+ - **Dual license**: Apache-2.0 (`LICENSE-CODE`) for code + CC-BY-SA-4.0 for content; SPDX headers on all `.py`.
252
+ - `docs/SCHEMA.md` (emitted-format contract), `SECURITY.md`, `CODE_OF_CONDUCT.md`, `docs/adr/` (3 ADRs).
253
+ - Golden emitter tests + `scripts/gates/` backward-compat gate harness.
254
+ - `requirements-lock.txt` (hashed); ruff/black/mypy tooling; `init.py --bench`.
255
+ - CI: docs-lint, security-baseline (osv/pip-audit/trivy), scorecard, SBOM release, dependabot; Python matrix 3.8–3.13.
256
+ - Root `AGENTS.md` + `GEMINI.md` emitters; `gabbe-schema-version` in all emitted artifacts.
257
+ - Cross-process advisory lock for `gabbe sync`.
258
+
259
+ ### Changed
260
+ - **Claude Code skills now emit `.claude/skills/<name>/SKILL.md` directories** (agent-skills standard) — previously symlinked `*.skill.md` files that Claude Code could not discover. Cursor rules are now agent-requested (no `globs: *`).
261
+ - `docs/MCP_CONFIGURATIONS.md`: corrected package names verified against npm/PyPI (2026-06-10).
262
+
263
+ ### Fixed
264
+ - Installer no longer clobbers user files on the symlink-fallback path.
265
+ - `compile_skills.py` backup `.bak` no longer drops file extensions.
266
+
267
+ ---
268
+
269
+ ## [0.8.0] — 2026-03-05
270
+
271
+ ### Changed
272
+ - Refactored directories, filenames, and structure
273
+ - Updated README.md and fixed inaccuracies in QUICK_GUIDE.md
274
+ - Fixed full docs links
275
+
276
+ ### Added
277
+ - **Kit Installation Safeguards**: Upgraded `init.py` with `safe_merge_directory()` to natively block overarching uninstalls and safeguard all files in `project/`, `memory/`, `TASKS.md`, `policies.yml`, and `config.json` when pulling GABBE ecosystem upgrades across Local, Global, and Custom architectures.
278
+ - **Time Complexity MCP Integration**: Added `time-complexity-mcp` (Big-O static analysis via tree-sitter) as a first-class capability:
279
+ - New skill: `agents/skills/coding/time-complexity.skill.md`
280
+ - New guide: `agents/guides/patterns/time-complexity-analysis.md`
281
+ - New template: `agents/templates/coding/TIME_COMPLEXITY_REPORT_TEMPLATE.md`
282
+ - MCP config entry in `MCP_CONFIG_TEMPLATE.json` (Security & Code Quality section)
283
+ - Updated all index files, `README.md`, and `README_FULL.md`
284
+ - **MCP Configurations Guide**: Created `docs/MCP_CONFIGURATIONS.md` — comprehensive per-server installation, API key setup, and usage guides for all 42+ MCP servers in the template. Cross-referenced from `README.md`, `README_FULL.md`, `QUICK_GUIDE.md`, and `MCP_CONFIG_TEMPLATE.json`.
285
+ - **Excalidraw MCP Integration**: Added `@cmd8/excalidraw-mcp` for programmatic Excalidraw diagram creation:
286
+ - New skill: `agents/skills/coding/excalidraw.skill.md`
287
+ - MCP config entry in `MCP_CONFIG_TEMPLATE.json` (Design & Visual section)
288
+ - **Sketch-to-Diagram Pipeline**: Added `mcp-image-recognition` + Excalidraw for converting hand-drawn sketches to formal diagrams:
289
+ - New skill: `agents/skills/coding/sketch-to-diagram.skill.md`
290
+ - New template: `agents/templates/coding/SKETCH_TO_DIAGRAM_TEMPLATE.md`
291
+ - Updated guide: `agents/guides/ai/visual-mcp-integration.md` (Sections 4-5)
292
+ - MCP config entry for `image-recognition` in `MCP_CONFIG_TEMPLATE.json`
293
+ - **tldraw MCP Integration**: Added `@talhaorak/tldraw-mcp` for persistent visual canvas (9 tools):
294
+ - New skill: `agents/skills/coding/tldraw-canvas.skill.md`
295
+ - MCP config entry in `MCP_CONFIG_TEMPLATE.json` (Design & Visual section)
296
+ - Updated guide: `agents/guides/ai/visual-mcp-integration.md` (Section 5)
297
+ - **Visual Product Design Phase**: End-to-end pipeline for processing visual inputs into structured specs before implementation:
298
+ - New guide: `agents/guides/planning/visual-product-specs.md` (input catalogue, recognition pipeline, output mapping, design readiness gate)
299
+ - New skill: `agents/skills/product/visual-specs.skill.md` (5-phase workflow: collect → recognize → structure → generate → assemble)
300
+ - New template: `agents/templates/product/VISUAL_SPEC_PACKAGE_TEMPLATE.md` (7-section package with design readiness checklist)
301
+ - Updated PRD template: Section 6.1 Visual Data Model + Section 8 tldraw/Visual Spec Package refs
302
+ - Updated guide: `agents/guides/ai/visual-mcp-integration.md` (Section 7 cross-ref)
303
+
304
+ ### Added (Phase 13: Specialized Systems & Standards)
305
+ - **Industry Category**: Added specialized software engineering support for:
306
+ - **Telecom & Networks**: TMF ODA, CAMARA APIs, GSMA eSIM (skill, guide, template).
307
+ - **Healthcare**: HL7 FHIR clinical data exchange (skill, guide, template).
308
+ - **Industrial IoT**: OPC UA, MQTT, Purdue Model (skill, guide, template).
309
+ - **Global Standards**: UN SDGs, ITU-T, OSI/OpenSSF compliance (skill, guide, template).
310
+ - **Engineering Standards**: IEEE, ACM Ethics, ISO/IEC 12207 audits (skill, guide, template).
311
+ - **Core Specialized Systems**:
312
+ - **FinOps**: Cloud cost optimization auditing (guide, skill).
313
+ - **Scalability**: Horizontal and Vertical scaling architecture audit (skill, guide, template).
314
+ - **Green Tech & Sustainability**: ESG checks, Carbon intensity (SCI) reporting (skills, guides, template).
315
+ - **Blockchain & DLT**: Smart contract and distributed ledger design (skill, guide, template).
316
+ - **Semantic Web**: RDF/OWL Ontology design for meta-knowledge (skill, guide, template).
317
+
318
+
319
+ ### Fixed
320
+ - Quote Mermaid node labels with parentheses
321
+ - Fixed diagrams
322
+ - General CLI, format, and Windows compatibility fixes
323
+
324
+ ### Removed
325
+ - Removed Android/iOS installation instructions
326
+ - Removed loki leftovers from tests
327
+
328
+ ### Audited & Verified
329
+ - Conducted a full GABBE deep-audit to guarantee stability across workflows, codebase, and documentation.
330
+ - **Workflows & Logic Verification**: `init.py` handles step 0 / step 1 initialization perfectly. The `gabbe` CLI tool `sync`, `router`, and `status` modes execute accurately.
331
+ - **Test Suite Execution**: Checked the baseline test health using `pytest`. **`251 / 251` tests passed** natively with zero regressions.
332
+ - **Documentation Parity**: `agents/skills/00-index.md` matches exactly 126 backend `.skill.md` files. `agents/templates/00-index.md` categorizes all 60+ template definitions. Markdown structure tree diagrams (`README.md`, `README_FULL.md`) correctly reflect the recent refactoring.
333
+ - **Codebase Cleanliness**: Swept the repository for `TODO`, `FIXME`, and `HACK`. No loose tech-debt markers exist in the source code; they correctly only exist inside rules or testing string assertions.
334
+ - **Architectural Purity**: Clean workspace with zero stranded, orphaned, or unused script files left behind.
335
+ - **Scripts Validation**: Validated that all 126 skills and 60+ templates exist exactly as advertised with zero broken internal links using `agents/scripts/comprehensive_checker.py` and `validate_skills.py`.
336
+ - **CLI Reference Fixed**: Replaced outdated `0.3.0` CLI references across the docs with the actual `0.7.0` version to perfectly reflect the release state.
337
+
338
+ ---
339
+
340
+ ## [0.7.1] — 2026-02-25
341
+
342
+ ### Added — MVA Platform Control Layer
343
+ - **`gabbe/budget.py`**: `Budget` and `BudgetEnforcer` — token, cost, tool call, wall-time, and iteration limits per run; pricing loaded from `pricing_registry` table; `BudgetExceeded` exception.
344
+ - **`gabbe/hardstop.py`**: `HardStop` — absolute iteration/depth/timeout guards with `tick()`, `remaining_steps()`, and `should_wrap_up()`.
345
+ - **`gabbe/policy.py`**: `PolicyEngine` with YAML-driven `ToolAllowlistPolicy`, `RolePolicy`, `ContentSafetyPolicy`, `ParameterRangePolicy`; deny-all secure default when policy file is absent.
346
+ - **`gabbe/gateway.py`**: `ToolGateway` — single mediated execution point with rate limiting, circuit breaker, JSON Schema validation, and audit integration.
347
+ - **`gabbe/audit.py`**: `AuditTracer` — structured spans to SQLite `audit_spans` + JSONL + optional OTel; `snapshot_budget()`.
348
+ - **`gabbe/escalation.py`**: `EscalationHandler` — three modes (`cli`, `file`, `silent`); `EscalationPaused` exception for `file` mode; `[e]dit context` option in CLI mode.
349
+ - **`gabbe/replay.py`**: `CheckpointStore` + `ReplayRunner` — deterministic replay from `checkpoints` table; `diff()` to compare two runs.
350
+ - **`gabbe/context.py`**: `RunContext` context manager wiring all platform controls together; `from_checkpoint()` for replay.
351
+ - **`gabbe/forecast.py`**: `run_forecast()` — project remaining work cost/token estimates; writes to `forecast_snapshots`.
352
+ - **New CLI commands**: `gabbe runs`, `gabbe audit`, `gabbe replay`, `gabbe resume`.
353
+ - **Schema v3**: 7 new tables — `pricing_registry`, `runs`, `audit_spans`, `budget_snapshots`, `checkpoints`, `pending_escalations`, `forecast_snapshots`.
354
+ - **New env vars**: `GABBE_MAX_COST_USD`, `GABBE_MAX_TOKENS_PER_RUN`, `GABBE_MAX_TOOL_CALLS_PER_RUN`, `GABBE_MAX_ITERATIONS`, `GABBE_MAX_WALL_TIME`, `GABBE_MAX_RECURSION_DEPTH`, `GABBE_MAX_RETRIES_PER_TOOL`, `GABBE_POLICY_FILE`, `GABBE_ESCALATION_MODE`, `GABBE_OTEL_ENABLED`, `GABBE_SUBPROCESS_TIMEOUT`, `GABBE_MCP_TOKEN`, `GABBE_MCP_ALLOWED_COMMANDS`.
355
+ - MCP server: `GABBE_MCP_TOKEN` authentication and `GABBE_MCP_ALLOWED_COMMANDS` allowlist for `run_command`.
356
+ - 251-test suite covering all platform control modules (`test_budget`, `test_hardstop`, `test_gateway`, `test_policy`, `test_audit`, `test_replay`, `test_escalation`, `test_context`, `test_brain_integration`).
357
+ - `docs/PLATFORM_CONTROLS.md` and `docs/CLI_REFERENCE.md` documenting the full control layer.
358
+
359
+ ### Fixed
360
+ - Reasoning token cost calculation for o1/o3-class models (`budget.py`).
361
+ - Audit span timestamps now reflect span start time, not end time (`audit.py`).
362
+ - Exception detection uses `isinstance()` instead of string matching (`context.py`).
363
+ - `EscalationPaused` correctly propagates without double-escalation (`brain.py`).
364
+ - Deny-all default when `project/policies.yml` is absent (`policy.py`).
365
+ - Forecast zero-tasks division-by-zero and DB connection leak (`forecast.py`).
366
+ - Checkpoint replay lookup uses per-node occurrence index (`replay.py`).
367
+ - Hash delimiter added in sync state hash (`sync.py`).
368
+ - LIMIT query parameterized in `gabbe runs` (`main.py`).
369
+
370
+ ---
371
+
372
+ ## [0.7.0] — 2026-02-19
373
+
374
+ ### Added
375
+ - GABBE CLI 0.7.0 (Stable) with Zero-Dependency architecture.
376
+ - Full Antigravity / Gemini support.
377
+ - Comprehensive Troubleshooting Guide.
378
+ - AI-Native Engineering Scenarios guide.
379
+ - Self-Healing loop with 5-attempt limit and human escalation.
380
+ - Multi-agent swarm (Loki Mode) with 30+ personas.
381
+ - 4-layer memory architecture (Working, Episodic, Semantic, Procedural).
382
+ - Comprehensive checker scripts for kit integrity.
383
+ - GABBE CLI 0.7.0: `gabbe init`, `gabbe sync`, `gabbe status`, `gabbe verify`, `gabbe route`, `gabbe brain`
384
+ - Bidirectional `TASKS.md ↔ SQLite` sync with timestamp arbitration (`gabbe sync`)
385
+ - Brain Mode with Active Inference loop and Evolutionary Prompt Optimization (`gabbe brain`)
386
+ - Cost-Effective LLM Router (`gabbe route`) — LOCAL vs REMOTE decision based on complexity + PII detection
387
+ - Self-Healing Watchdog (`gabbe brain heal`) — checks DB connectivity and required project files
388
+ - Schema migration system (`schema_version` table) for forward-compatible DB upgrades
389
+ - `UNIQUE(title)` constraint on `tasks` table to prevent silent duplicate corruption
390
+ - Atomic file writes in `export_to_md` (temp-file + `os.replace`)
391
+ - Expanded PII detection patterns (email, phone, SSN, credit card, credential keywords)
392
+ - All configurable values exposed via environment variables:
393
+ `GABBE_API_URL`, `GABBE_API_KEY`, `GABBE_API_MODEL`, `GABBE_LLM_TEMPERATURE`,
394
+ `GABBE_LLM_TIMEOUT`, `GABBE_ROUTE_THRESHOLD`
395
+ - `[project.optional-dependencies] dev` in `pyproject.toml` for `pytest`
396
+ - `[tool.pytest.ini_options]` in `pyproject.toml`
397
+ - `scripts/tests/conftest.py` with shared `tmp_project` and `db_conn` fixtures
398
+ - Unit test files: `test_config.py`, `test_database.py`, `test_llm.py`, `test_route.py`,
399
+ `test_sync.py`, `test_verify.py`
400
+ - CI pipeline now installs the package and runs `pytest scripts/tests/`
401
+
402
+ ### Changed
403
+ - `gabbe/verify.py`: `parse_agents_config()` now only reads the `## Commands` section
404
+ of `AGENTS.md`; commands outside that section are silently ignored
405
+ - `gabbe/verify.py`: `run_command()` uses `shell=False` with `shlex.split()` — eliminates
406
+ shell injection risk
407
+ - `gabbe/llm.py`: raises `EnvironmentError` when `GABBE_API_KEY` is unset (was silently
408
+ returning a mock string)
409
+ - `gabbe/llm.py`: default model updated from `gpt-4-turbo-preview` → `gpt-4o`
410
+ - `gabbe/status.py`: reads `current_phase` from `project_state` table (was hardcoded)
411
+ - `gabbe/brain.py`: `run_healer()` performs real checks (was a stub returning 100% Nominal)
412
+ - `gabbe/brain.py`, `gabbe/status.py`: DB connections closed with `try/finally`
413
+ - `gabbe/sync.py`: handles "both empty" edge case explicitly; multi-format timestamp
414
+ parsing; atomic file export
415
+ - `gabbe/config.py`: removed `MAGENTA = '\033[95m'` duplicate of `HEADER`; added
416
+ `LLM_TEMPERATURE`, `LLM_TIMEOUT`, `ROUTE_COMPLEXITY_THRESHOLD`, `PROGRESS_BAR_LEN`
417
+ - `gabbe/__init__.py`: removed eager imports to prevent side effects on import
418
+ - `gabbe/main.py`: all command dispatches wrapped in `try/except` for user-friendly errors
419
+
420
+ ### Fixed
421
+ - Shell injection vulnerability in `verify.py`
422
+ - Silent mock LLM responses masking missing API key
423
+ - Unclosed SQLite connections in `brain.py` and `status.py`
424
+ - Non-atomic TASKS.md writes causing potential corruption on crash
425
+ - Duplicate `MAGENTA`/`HEADER` ANSI code in `Colors` class
426
+ - Dead code `if ... : pass` branch in `init.py`
427
+
428
+ ---
429
+
430
+ ## [0.1.0] — 2026-02-01
431
+
432
+ ### Added
433
+ - Initial release of the GABBE Agentic Engineering Kit
434
+ - `init.py` Universal Skill Compiler (Cursor, VS Code, Claude Code, Gemini)
435
+ - Skill, Template, Guide, and Persona framework (`.agents/` directory)
436
+ - `AGENTS.md` + `CONSTITUTION.md` for agent governance
437
+ - Multi-platform skill distribution
438
+ - Initial documentation: `README.md`, `README_FULL.md`, `QUICK_GUIDE.md`
439
+ - Research whitepapers in `docs/`
gabbe-1.0.0/LICENSE ADDED
@@ -0,0 +1,25 @@
1
+ ## License
2
+
3
+ This documentation is licensed under the [Creative Commons Attribution 4.0 International License (CC BY SA 4.0)](https://creativecommons.org/licenses/by-sa/4.0/).
4
+
5
+ You are free to:
6
+
7
+ - **Share** — copy and redistribute the material in any medium or format
8
+ - **Adapt** — remix, transform, and build upon the material for any purpose, even commercially.
9
+
10
+ The licensor cannot revoke these freedoms as long as you follow the license terms.
11
+
12
+ Under the following terms:
13
+
14
+ - **Attribution** — You must give appropriate credit , provide a link to the license, and indicate if changes were made . You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
15
+
16
+ - **ShareAlike** — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.
17
+
18
+
19
+ No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
20
+
21
+
22
+ ## Notices:
23
+ You do not have to comply with the license for elements of the material in the public domain or where your use is permitted by an applicable exception or limitation.
24
+
25
+ No warranties are given. The license may not give you all of the permissions necessary for your intended use. For example, other rights such as publicity, privacy, or moral rights may limit how you use the material.