nx-ai-engineer 1.0.1__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 (491) hide show
  1. nx_ai_engineer-1.0.1/LICENSE +21 -0
  2. nx_ai_engineer-1.0.1/PKG-INFO +243 -0
  3. nx_ai_engineer-1.0.1/README.md +222 -0
  4. nx_ai_engineer-1.0.1/nx_ai_engineer.egg-info/PKG-INFO +243 -0
  5. nx_ai_engineer-1.0.1/nx_ai_engineer.egg-info/SOURCES.txt +489 -0
  6. nx_ai_engineer-1.0.1/nx_ai_engineer.egg-info/dependency_links.txt +1 -0
  7. nx_ai_engineer-1.0.1/nx_ai_engineer.egg-info/entry_points.txt +3 -0
  8. nx_ai_engineer-1.0.1/nx_ai_engineer.egg-info/top_level.txt +9 -0
  9. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/__init__.py +2 -0
  10. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/PROJECT_RULES.md +37 -0
  11. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/_TEMPLATE.md +33 -0
  12. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/ai.md +37 -0
  13. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/architect.md +38 -0
  14. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/backend.md +41 -0
  15. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/database-nosql.md +41 -0
  16. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/database-relational.md +44 -0
  17. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/database-reviewer.md +37 -0
  18. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/database.md +37 -0
  19. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/delivery.md +37 -0
  20. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/devops.md +37 -0
  21. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/docs.md +36 -0
  22. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/frontend.md +38 -0
  23. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/planner.md +38 -0
  24. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/qa.md +37 -0
  25. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/reviewer.md +38 -0
  26. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/security.md +37 -0
  27. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/task-manager.md +36 -0
  28. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/config.example.json +16 -0
  29. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/ARCHITECTURE_OVERVIEW.md +50 -0
  30. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/ENGINEERING_CONTRACT.md +97 -0
  31. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/ENGINE_GUIDE.md +57 -0
  32. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/INSTALLER_GUIDE.md +78 -0
  33. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/KNOWLEDGE_GUIDE.md +149 -0
  34. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/MARKETPLACE.md +78 -0
  35. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/MIGRATION_GUIDE.md +51 -0
  36. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/PACKS_GUIDE.md +141 -0
  37. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/PLUGIN_GUIDE.md +56 -0
  38. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/PROJECT_BRAIN.md +62 -0
  39. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/PROJECT_KNOWLEDGE.md +53 -0
  40. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/PROVIDER_SDK_GUIDE.md +103 -0
  41. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/SDK_GUIDE.md +79 -0
  42. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/UPGRADE_GUIDE.md +68 -0
  43. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/WORKFLOW_GUIDE.md +45 -0
  44. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0001-execution-engine.md +51 -0
  45. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0002-agent-dispatcher.md +43 -0
  46. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0003-context-engine.md +42 -0
  47. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0004-memory-brain-learning-experience.md +42 -0
  48. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0005-governance-delivery.md +33 -0
  49. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0006-unified-pipeline.md +35 -0
  50. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0007-observability-telemetry.md +30 -0
  51. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0008-sdk-extensibility.md +37 -0
  52. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0009-claude-code-adapter.md +54 -0
  53. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0010-execution-cluster.md +57 -0
  54. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0011-decision-engine.md +55 -0
  55. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0012-autonomous-learning.md +60 -0
  56. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0013-knowledge-providers.md +50 -0
  57. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0014-obsidian-knowledge-vault.md +56 -0
  58. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0015-knowledge-engine-three-memories.md +52 -0
  59. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0016-project-evolution.md +57 -0
  60. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0017-knowledge-graph.md +53 -0
  61. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0018-project-knowledge-engine-doctrine.md +47 -0
  62. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0019-distribution-platform-cli.md +51 -0
  63. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0020-engineering-contract.md +51 -0
  64. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0021-database-engineering-packs.md +46 -0
  65. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/architecture.md +23 -0
  66. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/coding-standards.md +30 -0
  67. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/lgpd.md +23 -0
  68. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/memory.md +25 -0
  69. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/patterns.md +23 -0
  70. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/sdk.md +5 -0
  71. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/tenant-rules.md +25 -0
  72. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/workflow.md +38 -0
  73. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/templates/engine.md +25 -0
  74. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/templates/pull_request.md +26 -0
  75. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/templates/review.md +27 -0
  76. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/templates/task.md +32 -0
  77. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/bootstrap.py +117 -0
  78. nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/orchestrator.py +1079 -0
  79. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/__init__.py +2 -0
  80. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/agents.py +203 -0
  81. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/analyzer.py +266 -0
  82. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/config.py +47 -0
  83. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/experience/__init__.py +4 -0
  84. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/experience/metrics.py +74 -0
  85. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/foundation/__init__.py +13 -0
  86. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/governance/__init__.py +4 -0
  87. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/governance/adr.py +83 -0
  88. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/governance/checklists.py +22 -0
  89. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/governance/policies.py +35 -0
  90. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/governance/quality_gates.py +57 -0
  91. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/kernel/__init__.py +3 -0
  92. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/kernel/domain.py +116 -0
  93. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/kernel/engine.py +139 -0
  94. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/kernel/lifecycle.py +83 -0
  95. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/kernel/states.py +70 -0
  96. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/locks.py +77 -0
  97. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/observability/__init__.py +4 -0
  98. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/observability/events.py +78 -0
  99. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/observability/logging.py +37 -0
  100. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/observability/telemetry.py +47 -0
  101. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/planner.py +204 -0
  102. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/review.py +166 -0
  103. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/tasks.py +140 -0
  104. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/util.py +186 -0
  105. nx_ai_engineer-1.0.1/packages/nx-core/nx_core/worktree.py +64 -0
  106. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/__init__.py +2 -0
  107. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/evolution/__init__.py +30 -0
  108. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/evolution/brain_optimizer.py +34 -0
  109. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/evolution/experience_analyzer.py +41 -0
  110. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/evolution/knowledge_evolution.py +51 -0
  111. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/evolution/pattern_discovery.py +44 -0
  112. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/evolution/project_evolution.py +152 -0
  113. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/evolution/recommendation.py +55 -0
  114. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/evolution/self_improvement.py +184 -0
  115. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/evolution/similarity.py +41 -0
  116. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/knowledge/__init__.py +29 -0
  117. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/knowledge/contract.py +179 -0
  118. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/knowledge/engine.py +228 -0
  119. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/knowledge/registry.py +88 -0
  120. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/memory/__init__.py +4 -0
  121. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/memory/brain.py +129 -0
  122. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/memory/cache.py +40 -0
  123. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/memory/context.py +311 -0
  124. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/memory/learning.py +54 -0
  125. nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/memory/semantic.py +68 -0
  126. nx_ai_engineer-1.0.1/packages/nx-obsidian/nx_obsidian/__init__.py +2 -0
  127. nx_ai_engineer-1.0.1/packages/nx-obsidian/nx_obsidian/knowledge/__init__.py +0 -0
  128. nx_ai_engineer-1.0.1/packages/nx-obsidian/nx_obsidian/knowledge/obsidian.py +77 -0
  129. nx_ai_engineer-1.0.1/packages/nx-obsidian/nx_obsidian/knowledge/obsidian_sync.py +396 -0
  130. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/__init__.py +68 -0
  131. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/README.md +17 -0
  132. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/adr/ADR-0001-baseline.md +13 -0
  133. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/architecture.md +3 -0
  134. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/checklists.md +9 -0
  135. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/context.md +17 -0
  136. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/examples/example.md +3 -0
  137. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/pack.json +41 -0
  138. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/patterns.md +5 -0
  139. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/policies.md +9 -0
  140. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/templates/review.md +20 -0
  141. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/tests/checklist_test.md +5 -0
  142. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/README.md +17 -0
  143. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/adr/ADR-0001-baseline.md +13 -0
  144. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/architecture.md +3 -0
  145. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/checklists.md +9 -0
  146. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/context.md +17 -0
  147. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/examples/example.md +3 -0
  148. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/pack.json +42 -0
  149. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/patterns.md +5 -0
  150. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/policies.md +9 -0
  151. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/templates/review.md +20 -0
  152. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/tests/checklist_test.md +5 -0
  153. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/README.md +17 -0
  154. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/adr/ADR-0001-baseline.md +13 -0
  155. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/architecture.md +3 -0
  156. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/checklists.md +9 -0
  157. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/context.md +17 -0
  158. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/examples/example.md +3 -0
  159. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/pack.json +41 -0
  160. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/patterns.md +5 -0
  161. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/policies.md +9 -0
  162. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/templates/review.md +20 -0
  163. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/tests/checklist_test.md +5 -0
  164. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/README.md +16 -0
  165. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/adr/ADR-0001-baseline.md +13 -0
  166. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/anti-patterns.md +8 -0
  167. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/architecture.md +3 -0
  168. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/checklists.md +9 -0
  169. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/context.md +16 -0
  170. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/examples/example.md +3 -0
  171. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/pack.json +45 -0
  172. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/patterns.md +5 -0
  173. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/performance.md +5 -0
  174. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/policies.md +8 -0
  175. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/prompts/specialist.md +14 -0
  176. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/security.md +6 -0
  177. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/templates/migration.md +17 -0
  178. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/tests/checklist_test.md +4 -0
  179. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/README.md +17 -0
  180. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/adr/ADR-0001-baseline.md +13 -0
  181. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/architecture.md +3 -0
  182. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/checklists.md +9 -0
  183. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/context.md +17 -0
  184. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/examples/example.md +3 -0
  185. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/pack.json +41 -0
  186. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/patterns.md +5 -0
  187. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/policies.md +9 -0
  188. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/templates/review.md +20 -0
  189. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/tests/checklist_test.md +5 -0
  190. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/README.md +17 -0
  191. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/adr/ADR-0001-baseline.md +13 -0
  192. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/architecture.md +3 -0
  193. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/checklists.md +9 -0
  194. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/context.md +17 -0
  195. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/examples/example.md +3 -0
  196. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/pack.json +42 -0
  197. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/patterns.md +5 -0
  198. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/policies.md +9 -0
  199. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/templates/review.md +20 -0
  200. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/tests/checklist_test.md +5 -0
  201. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/README.md +16 -0
  202. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/adr/ADR-0001-baseline.md +13 -0
  203. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/anti-patterns.md +8 -0
  204. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/architecture.md +3 -0
  205. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/checklists.md +9 -0
  206. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/context.md +16 -0
  207. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/examples/example.md +3 -0
  208. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/pack.json +45 -0
  209. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/patterns.md +5 -0
  210. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/performance.md +5 -0
  211. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/policies.md +8 -0
  212. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/prompts/specialist.md +14 -0
  213. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/security.md +6 -0
  214. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/templates/migration.md +17 -0
  215. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/tests/checklist_test.md +4 -0
  216. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/README.md +15 -0
  217. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/adr/ADR-0001-baseline.md +13 -0
  218. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/architecture.md +3 -0
  219. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/checklists.md +16 -0
  220. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/context.md +17 -0
  221. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/examples/example.md +3 -0
  222. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/pack.json +44 -0
  223. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/patterns.md +8 -0
  224. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/policies.md +14 -0
  225. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/templates/review.md +21 -0
  226. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/tests/checklist_test.md +7 -0
  227. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/README.md +14 -0
  228. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/adr/ADR-0001-baseline.md +13 -0
  229. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/anti-patterns.md +10 -0
  230. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/architecture.md +3 -0
  231. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/checklists.md +12 -0
  232. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/context.md +19 -0
  233. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/examples/example.md +3 -0
  234. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/pack.json +53 -0
  235. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/patterns.md +9 -0
  236. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/performance.md +9 -0
  237. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/policies.md +11 -0
  238. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/prompts/specialist.md +14 -0
  239. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/security.md +6 -0
  240. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/templates/migration.md +17 -0
  241. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/tests/checklist_test.md +4 -0
  242. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/README.md +17 -0
  243. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/adr/ADR-0001-baseline.md +13 -0
  244. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/architecture.md +3 -0
  245. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/checklists.md +9 -0
  246. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/context.md +17 -0
  247. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/examples/example.md +3 -0
  248. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/pack.json +43 -0
  249. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/patterns.md +5 -0
  250. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/policies.md +9 -0
  251. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/templates/review.md +20 -0
  252. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/tests/checklist_test.md +5 -0
  253. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/README.md +16 -0
  254. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/adr/ADR-0001-baseline.md +13 -0
  255. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/anti-patterns.md +9 -0
  256. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/architecture.md +3 -0
  257. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/checklists.md +9 -0
  258. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/context.md +16 -0
  259. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/examples/example.md +3 -0
  260. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/pack.json +45 -0
  261. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/patterns.md +6 -0
  262. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/performance.md +5 -0
  263. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/policies.md +8 -0
  264. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/prompts/specialist.md +14 -0
  265. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/security.md +6 -0
  266. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/templates/migration.md +17 -0
  267. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/tests/checklist_test.md +4 -0
  268. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/README.md +16 -0
  269. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/adr/ADR-0001-baseline.md +13 -0
  270. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/anti-patterns.md +8 -0
  271. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/architecture.md +3 -0
  272. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/checklists.md +9 -0
  273. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/context.md +16 -0
  274. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/examples/example.md +3 -0
  275. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/pack.json +46 -0
  276. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/patterns.md +5 -0
  277. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/performance.md +5 -0
  278. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/policies.md +8 -0
  279. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/prompts/specialist.md +14 -0
  280. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/security.md +6 -0
  281. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/templates/migration.md +17 -0
  282. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/tests/checklist_test.md +4 -0
  283. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/README.md +17 -0
  284. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/adr/ADR-0001-baseline.md +13 -0
  285. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/architecture.md +3 -0
  286. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/checklists.md +9 -0
  287. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/context.md +17 -0
  288. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/examples/example.md +3 -0
  289. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/pack.json +43 -0
  290. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/patterns.md +5 -0
  291. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/policies.md +9 -0
  292. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/templates/review.md +20 -0
  293. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/tests/checklist_test.md +5 -0
  294. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/README.md +16 -0
  295. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/adr/ADR-0001-baseline.md +13 -0
  296. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/anti-patterns.md +8 -0
  297. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/architecture.md +3 -0
  298. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/checklists.md +9 -0
  299. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/context.md +15 -0
  300. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/examples/example.md +3 -0
  301. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/pack.json +45 -0
  302. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/patterns.md +5 -0
  303. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/performance.md +5 -0
  304. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/policies.md +7 -0
  305. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/prompts/specialist.md +14 -0
  306. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/security.md +6 -0
  307. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/templates/migration.md +17 -0
  308. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/tests/checklist_test.md +4 -0
  309. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/README.md +17 -0
  310. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/adr/ADR-0001-baseline.md +13 -0
  311. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/architecture.md +3 -0
  312. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/checklists.md +9 -0
  313. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/context.md +17 -0
  314. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/examples/example.md +3 -0
  315. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/pack.json +42 -0
  316. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/patterns.md +3 -0
  317. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/policies.md +14 -0
  318. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/templates/review.md +20 -0
  319. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/tests/checklist_test.md +5 -0
  320. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/README.md +14 -0
  321. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/adr/ADR-0001-baseline.md +13 -0
  322. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/anti-patterns.md +13 -0
  323. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/architecture.md +3 -0
  324. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/checklists.md +16 -0
  325. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/context.md +19 -0
  326. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/examples/example.md +3 -0
  327. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/pack.json +55 -0
  328. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/patterns.md +8 -0
  329. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/performance.md +13 -0
  330. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/policies.md +13 -0
  331. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/prompts/specialist.md +14 -0
  332. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/security.md +6 -0
  333. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/templates/migration.md +17 -0
  334. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/tests/checklist_test.md +4 -0
  335. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/README.md +16 -0
  336. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/adr/ADR-0001-baseline.md +13 -0
  337. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/anti-patterns.md +8 -0
  338. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/architecture.md +3 -0
  339. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/checklists.md +9 -0
  340. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/context.md +16 -0
  341. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/examples/example.md +3 -0
  342. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/pack.json +46 -0
  343. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/patterns.md +5 -0
  344. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/performance.md +5 -0
  345. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/policies.md +8 -0
  346. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/prompts/specialist.md +14 -0
  347. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/security.md +6 -0
  348. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/templates/migration.md +17 -0
  349. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/tests/checklist_test.md +4 -0
  350. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/README.md +18 -0
  351. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/adr/ADR-0001-baseline.md +15 -0
  352. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/architecture.md +5 -0
  353. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/checklists.md +12 -0
  354. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/context.md +20 -0
  355. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/examples/example.md +6 -0
  356. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/pack.json +34 -0
  357. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/patterns.md +6 -0
  358. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/policies.md +12 -0
  359. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/CODE_OF_CONDUCT.md +14 -0
  360. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/CONTRIBUTING.md +17 -0
  361. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/SECURITY.md +9 -0
  362. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/editorconfig +15 -0
  363. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/issue_bug.md +15 -0
  364. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/issue_feature.md +11 -0
  365. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/manifest.json +70 -0
  366. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/pull_request.md +13 -0
  367. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/stacks/generic/ci.yml +13 -0
  368. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/stacks/go/ci.yml +15 -0
  369. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/stacks/go/gitignore +7 -0
  370. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/stacks/node/ci.yml +17 -0
  371. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/stacks/node/gitignore +8 -0
  372. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/stacks/python/ci.yml +22 -0
  373. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/stacks/python/gitignore +10 -0
  374. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/templates/review.md +15 -0
  375. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/tests/checklist_test.md +4 -0
  376. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/README.md +15 -0
  377. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/adr/ADR-0001-baseline.md +13 -0
  378. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/architecture.md +3 -0
  379. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/checklists.md +15 -0
  380. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/context.md +17 -0
  381. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/examples/example.md +3 -0
  382. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/pack.json +45 -0
  383. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/patterns.md +8 -0
  384. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/policies.md +15 -0
  385. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/templates/review.md +21 -0
  386. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/tests/checklist_test.md +7 -0
  387. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/README.md +16 -0
  388. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/adr/ADR-0001-baseline.md +13 -0
  389. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/anti-patterns.md +7 -0
  390. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/architecture.md +3 -0
  391. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/checklists.md +9 -0
  392. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/context.md +15 -0
  393. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/examples/example.md +3 -0
  394. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/pack.json +45 -0
  395. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/patterns.md +4 -0
  396. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/performance.md +5 -0
  397. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/policies.md +7 -0
  398. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/prompts/specialist.md +14 -0
  399. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/security.md +6 -0
  400. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/templates/migration.md +17 -0
  401. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/tests/checklist_test.md +4 -0
  402. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/README.md +16 -0
  403. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/adr/ADR-0001-baseline.md +13 -0
  404. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/anti-patterns.md +8 -0
  405. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/architecture.md +3 -0
  406. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/checklists.md +9 -0
  407. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/context.md +15 -0
  408. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/examples/example.md +3 -0
  409. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/pack.json +45 -0
  410. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/patterns.md +5 -0
  411. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/performance.md +5 -0
  412. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/policies.md +7 -0
  413. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/prompts/specialist.md +14 -0
  414. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/security.md +6 -0
  415. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/templates/migration.md +17 -0
  416. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/tests/checklist_test.md +4 -0
  417. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/README.md +17 -0
  418. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/adr/ADR-0001-baseline.md +13 -0
  419. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/architecture.md +3 -0
  420. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/checklists.md +9 -0
  421. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/context.md +17 -0
  422. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/examples/example.md +3 -0
  423. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/pack.json +41 -0
  424. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/patterns.md +5 -0
  425. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/policies.md +9 -0
  426. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/templates/review.md +20 -0
  427. nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/tests/checklist_test.md +5 -0
  428. nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/__init__.py +2 -0
  429. nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/knowledge/__init__.py +0 -0
  430. nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/knowledge/adr.py +61 -0
  431. nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/knowledge/base.py +149 -0
  432. nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/knowledge/filesystem.py +78 -0
  433. nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/knowledge/git.py +53 -0
  434. nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/knowledge/graph.py +277 -0
  435. nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/knowledge/markdown.py +64 -0
  436. nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/knowledge/packs.py +92 -0
  437. nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/knowledge/project_brain.py +72 -0
  438. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/__init__.py +2 -0
  439. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/adapters/__init__.py +4 -0
  440. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/adapters/base.py +31 -0
  441. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/adapters/claude_code.py +199 -0
  442. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/adapters/dryrun.py +26 -0
  443. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/engines/__init__.py +12 -0
  444. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/engines/delivery.py +125 -0
  445. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/intelligence/__init__.py +7 -0
  446. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/intelligence/decision.py +140 -0
  447. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/intelligence/dependency.py +10 -0
  448. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/intelligence/estimation.py +80 -0
  449. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/intelligence/planner.py +13 -0
  450. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/intelligence/reasoning.py +60 -0
  451. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/intelligence/risk.py +87 -0
  452. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/intelligence/strategy.py +42 -0
  453. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/kernel/__init__.py +0 -0
  454. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/kernel/pipeline.py +183 -0
  455. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/schedulers/__init__.py +3 -0
  456. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/schedulers/cluster.py +306 -0
  457. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/schedulers/dispatcher.py +137 -0
  458. nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/schedulers/execution.py +314 -0
  459. nx_ai_engineer-1.0.1/packages/nx-sdk/nx_sdk/__init__.py +136 -0
  460. nx_ai_engineer-1.0.1/packages/nx-workflow/nx_workflow/__init__.py +4 -0
  461. nx_ai_engineer-1.0.1/packages/nx-workflow/nx_workflow/builtin.py +41 -0
  462. nx_ai_engineer-1.0.1/packages/nx-workflow/nx_workflow/workflow.py +65 -0
  463. nx_ai_engineer-1.0.1/pyproject.toml +85 -0
  464. nx_ai_engineer-1.0.1/setup.cfg +4 -0
  465. nx_ai_engineer-1.0.1/tests/test_bootstrap.py +97 -0
  466. nx_ai_engineer-1.0.1/tests/test_claude_adapter.py +179 -0
  467. nx_ai_engineer-1.0.1/tests/test_cli.py +73 -0
  468. nx_ai_engineer-1.0.1/tests/test_cluster.py +179 -0
  469. nx_ai_engineer-1.0.1/tests/test_compat.py +49 -0
  470. nx_ai_engineer-1.0.1/tests/test_context.py +107 -0
  471. nx_ai_engineer-1.0.1/tests/test_contract.py +112 -0
  472. nx_ai_engineer-1.0.1/tests/test_decision.py +121 -0
  473. nx_ai_engineer-1.0.1/tests/test_delivery.py +60 -0
  474. nx_ai_engineer-1.0.1/tests/test_dispatcher.py +82 -0
  475. nx_ai_engineer-1.0.1/tests/test_evolution.py +179 -0
  476. nx_ai_engineer-1.0.1/tests/test_execution.py +133 -0
  477. nx_ai_engineer-1.0.1/tests/test_intelligence.py +58 -0
  478. nx_ai_engineer-1.0.1/tests/test_kernel.py +152 -0
  479. nx_ai_engineer-1.0.1/tests/test_knowledge.py +184 -0
  480. nx_ai_engineer-1.0.1/tests/test_knowledge_doctrine.py +132 -0
  481. nx_ai_engineer-1.0.1/tests/test_knowledge_engine.py +113 -0
  482. nx_ai_engineer-1.0.1/tests/test_knowledge_graph.py +130 -0
  483. nx_ai_engineer-1.0.1/tests/test_memory.py +133 -0
  484. nx_ai_engineer-1.0.1/tests/test_nx_packages.py +48 -0
  485. nx_ai_engineer-1.0.1/tests/test_observability.py +65 -0
  486. nx_ai_engineer-1.0.1/tests/test_obsidian_sync.py +151 -0
  487. nx_ai_engineer-1.0.1/tests/test_packs.py +139 -0
  488. nx_ai_engineer-1.0.1/tests/test_pipeline.py +78 -0
  489. nx_ai_engineer-1.0.1/tests/test_project_evolution.py +145 -0
  490. nx_ai_engineer-1.0.1/tests/test_sdk.py +59 -0
  491. nx_ai_engineer-1.0.1/tests/test_website.py +38 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 nx-ai-engineer
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,243 @@
1
+ Metadata-Version: 2.4
2
+ Name: nx-ai-engineer
3
+ Version: 1.0.1
4
+ Summary: Developer Infrastructure Platform for AI-assisted development: knowledge-driven, multi-agent, stdlib-only.
5
+ Author: NX AI Engineer
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/erialvaro/nx-ai-engineer
8
+ Project-URL: Documentation, https://github.com/erialvaro/nx-ai-engineer/tree/main/packages/nx-cli/nx_cli/_template/docs
9
+ Project-URL: Repository, https://github.com/erialvaro/nx-ai-engineer
10
+ Project-URL: Changelog, https://github.com/erialvaro/nx-ai-engineer/blob/main/CHANGELOG.md
11
+ Keywords: ai,developer-tools,multi-agent,knowledge,cli,platform
12
+ Classifier: Development Status :: 5 - Production/Stable
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Topic :: Software Development :: Build Tools
17
+ Requires-Python: >=3.8
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE
20
+ Dynamic: license-file
21
+
22
+ # NX AI Engineer
23
+
24
+ **v1.0.0** · stdlib-only · zero runtime dependencies · 238 tests green ·
25
+ [CHANGELOG](CHANGELOG.md) · [ROADMAP](ROADMAP.md) · [RELEASE_NOTES](RELEASE_NOTES.md)
26
+
27
+ **NX AI Engineer is a Developer Infrastructure Platform for AI-assisted software
28
+ development.** Its job is to organize **knowledge, context and execution** so that
29
+ *any* AI model becomes dramatically more effective while building software.
30
+
31
+ > NX AI Engineer does **not** replace Claude Code, GPT, Gemini or any other model.
32
+ > **All intelligence belongs to the model. All organization belongs to NX.**
33
+
34
+ It installs like any modern tool — a package from PyPI and a single `nxai` CLI —
35
+ and works on any stack (Node, Python, Go, Rust, Java, Nx and other monorepos, …),
36
+ which it **discovers** at runtime.
37
+
38
+ > **Guides:**
39
+ > [Installer](packages/nx-cli/nx_cli/_template/docs/INSTALLER_GUIDE.md) ·
40
+ > [Upgrade](packages/nx-cli/nx_cli/_template/docs/UPGRADE_GUIDE.md) ·
41
+ > [Architecture](docs/ARCHITECTURE.md) ·
42
+ > [SDK](packages/nx-cli/nx_cli/_template/docs/SDK_GUIDE.md) ·
43
+ > [Engine](packages/nx-cli/nx_cli/_template/docs/ENGINE_GUIDE.md) ·
44
+ > [Workflow](packages/nx-cli/nx_cli/_template/docs/WORKFLOW_GUIDE.md) ·
45
+ > [Plugin](packages/nx-cli/nx_cli/_template/docs/PLUGIN_GUIDE.md) ·
46
+ > [Knowledge](packages/nx-cli/nx_cli/_template/docs/KNOWLEDGE_GUIDE.md) ·
47
+ > [Project Brain](packages/nx-cli/nx_cli/_template/docs/PROJECT_BRAIN.md) ·
48
+ > [Contributing](CONTRIBUTING.md)
49
+
50
+ ## Install
51
+
52
+ ```bash
53
+ pip install nx-ai-engineer
54
+ nxai version
55
+ nxai doctor
56
+ ```
57
+
58
+ No manual file copying, ever. The platform code lives in the installed packages;
59
+ your project's `.ai-project-assistant/` holds **data only**.
60
+
61
+ ## Quickstart
62
+
63
+ From the root of any repository:
64
+
65
+ ```bash
66
+ nxai init # scaffold .ai-project-assistant + audit + Brain + Knowledge + Vault
67
+ nxai plan "Add OAuth login" # plan a goal into a task (agents, order, locks)
68
+ nxai execute "Add OAuth login" # full end-to-end flow (Dry Run -> Test -> Execute; dry-run by default)
69
+ nxai review # consolidated diff review
70
+ nxai knowledge status # the three memories: Brain / Obsidian / Git
71
+ nxai docs # the bundled guides
72
+ ```
73
+
74
+ Everything is **safe by default**: execution always runs **Dry Run → Test →
75
+ Execute** and defaults to dry-run.
76
+
77
+ ## What it does
78
+
79
+ NX turns a single request into a disciplined flow — never "implement immediately":
80
+
81
+ ```
82
+ audit → discover → impact → risk → plan → subtasks → agents → order →
83
+ implement → test → review → consolidate → document → report
84
+ ```
85
+
86
+ It coordinates **specialized agents** (backend, frontend, database, ai, security,
87
+ devops, qa, docs, plus read-only architect/planner/reviewer/delivery) that work
88
+ safely on the same codebase via advisory locks and isolated git worktrees.
89
+
90
+ ### The three memories
91
+
92
+ | Memory | Component | Role |
93
+ |---|---|---|
94
+ | **Operational** | Project Brain (`brain/`) | Structured knowledge — **never code**, never model output. |
95
+ | **Organizational** | Obsidian Vault (`obsidian/`, folders `00 Dashboard`…`14 Retrospectives`) | A navigable, auto-synced visual reflection of the Brain. |
96
+ | **Historical** | Git (opt-in) | Immutable snapshots of the knowledge over time. |
97
+
98
+ The **Knowledge Engine** has exactly five responsibilities — *discover, index,
99
+ relate, update, deliver_context* — and **never reasons, learns programming, or
100
+ interprets code**. It only reduces the model's cognitive load: the richer the
101
+ project history, the sharper the model's work, the **fewer tokens** spent.
102
+
103
+ ### The Engineering Contract
104
+
105
+ How knowledge reaches the agent. An agent doesn't get an ad-hoc prompt — it gets a
106
+ **contract**: a declarative, predictable statement of what applies to a task.
107
+
108
+ ```
109
+ Task → Engineering Contract → Context Builder → Model → Result → Knowledge Update
110
+ ```
111
+
112
+ The contract assembles `context` (files/areas), `knowledge` (ADRs/patterns),
113
+ `engineering` (the Engineering Packs that apply), `constraints`, `requirements`
114
+ (mandatory tests/validations/checklists) and `brain` facets. **Packs are
115
+ contracts**: they declare `applies_to`, so the Backend Agent automatically
116
+ receives the **Security**, **LGPD** and **Multi-Tenant** contracts — without anyone
117
+ remembering to ask. The contract is **enforced at delivery** (a gate blocks
118
+ shipping untested code when an applicable pack mandates tests). See the
119
+ [Engineering Contract guide](packages/nx-cli/nx_cli/_template/docs/ENGINEERING_CONTRACT.md).
120
+
121
+ ```bash
122
+ nxai contract --agent backend "Implement Google login" --files auth.py --areas api/auth
123
+ ```
124
+
125
+ ## CLI
126
+
127
+ | Command | Purpose |
128
+ |---|---|
129
+ | `nxai init` | Initialize `.ai-project-assistant` (scaffold + audit + Brain + Knowledge + Vault) |
130
+ | `nxai audit` | Discover & persist the architecture |
131
+ | `nxai plan "<goal>"` | Plan a goal into a task |
132
+ | `nxai execute "<goal>"` | Full end-to-end flow (alias of `pipeline`) |
133
+ | `nxai review` | Consolidated diff review |
134
+ | `nxai knowledge <index\|list\|retrieve\|sync\|status\|graph>` | Knowledge Engine + Providers |
135
+ | `nxai obsidian <sync\|status>` | Sync/inspect the Obsidian vault |
136
+ | `nxai contract --agent <a> "<task>"` | Build the Engineering Contract for an agent + task |
137
+ | `nxai pack <list\|show\|add\|remove>` | Engineering Packs (domain knowledge bundles) |
138
+ | `nxai scaffold [--stack ...]` | Lay open-source/GitHub repo standards into the project |
139
+ | `nxai graph` | Show the project Knowledge Graph |
140
+ | `nxai report` | Consolidated report (status + insights + metrics) |
141
+ | `nxai docs [name]` | List the bundled guides, or print one |
142
+ | `nxai doctor` | Health-check the install and project |
143
+ | `nxai update` | Refresh template assets (keeps Brain/Vault/config/history) |
144
+ | `nxai version` | Show version |
145
+
146
+ …plus `decide`, `dispatch`, `context`, `run`, `deliver`, `pipeline`, `metrics`,
147
+ `insights`, `recommend`, `worktree`, `tasks`, `locks`, `unlock`, `status`.
148
+ (The legacy `nx` alias is also installed.)
149
+
150
+ ## Engineering Packs
151
+
152
+ Domain knowledge — not code — that makes the agents apply a domain's rules
153
+ correctly:
154
+
155
+ ```bash
156
+ nxai pack list # browse the catalog
157
+ nxai pack add lgpd # install LGPD/privacy policies + checklists + context
158
+ nxai pack add security # OWASP/ASVS-aligned application security
159
+ ```
160
+
161
+ Built-in packs: **lgpd**, **security**, **repo-standards** (stable) plus scaffolds
162
+ for owasp, ai, cloud, docker, multi-tenant, observability, testing, billing,
163
+ authentication. Once installed, the **Pack Provider** feeds the pack's
164
+ policies/checklists/context to the agents working in that domain. Packs contain
165
+ **no code and no AI**. See the
166
+ [Packs Guide](packages/nx-cli/nx_cli/_template/docs/PACKS_GUIDE.md); third parties
167
+ can publish their own (the pack Marketplace).
168
+
169
+ ### Packs (knowledge) × Specialist Agents (execution)
170
+
171
+ The knowledge lives in the **Pack**; a **Specialist Agent** just executes using it
172
+ — *the agent is disposable, the knowledge is not*. The **Database** category ships
173
+ `postgres` and `mongodb` (full: rules, patterns, anti-patterns, performance,
174
+ checklists, security) plus mysql/sqlserver/oracle/sqlite/redis/cassandra/elastic/
175
+ neo4j, with specialist agents **database-relational**, **database-nosql** and a
176
+ read-only **database-reviewer** (never implements — it asks and *blocks* on
177
+ duplicate tables, redundant indexes, anti-patterns). The Engineering Contract
178
+ auto-attaches the right pack to each agent, so the *same* PostgreSQL knowledge
179
+ serves the relational, reviewer and migration work without duplication.
180
+
181
+ ```bash
182
+ nxai pack add postgres
183
+ nxai contract --agent database-relational "Add an orders table" # postgres pack auto-attached
184
+ ```
185
+
186
+ ### Standardize a repository
187
+
188
+ The `repo-standards` pack also ships concrete templates that `nxai scaffold` lays
189
+ into a project's repo root — governance files, issue/PR templates and a CI
190
+ workflow matched to the stack:
191
+
192
+ ```bash
193
+ nxai scaffold --stack auto --dry-run # preview
194
+ nxai scaffold --stack python # CONTRIBUTING, CODE_OF_CONDUCT, SECURITY,
195
+ # .github/ISSUE_TEMPLATE, PR template, CI, .gitignore
196
+ ```
197
+
198
+ Idempotent — it never overwrites an existing file without `--force`.
199
+
200
+ ## Architecture
201
+
202
+ A monorepo of **9 acyclic, stdlib-only packages**:
203
+
204
+ ```
205
+ nx-core ← nx-workflow ← nx-sdk
206
+ nx-core ← nx-packs
207
+ nx-core ← nx-providers ← nx-obsidian ← nx-knowledge
208
+ {core, workflow, sdk, knowledge} ← nx-runtime ← nx-cli
209
+ ```
210
+
211
+ | Package | Responsibility |
212
+ |---|---|
213
+ | `nx-core` | Kernel (domain/states/lifecycle/engine), governance, observability, foundation |
214
+ | `nx-workflow` | Reusable multi-step workflows |
215
+ | `nx-sdk` | Public extension surface (agents/engines/workflows/adapters/plugins/tools) |
216
+ | `nx-packs` | Engineering Packs catalog (domain knowledge bundles) |
217
+ | `nx-providers` | Knowledge providers (filesystem, git, markdown, ADR, project-brain, packs) + the relate/graph primitive |
218
+ | `nx-obsidian` | Obsidian provider + vault sync |
219
+ | `nx-knowledge` | Knowledge Engine, registry, memory (Brain), evolution |
220
+ | `nx-runtime` | Adapters, schedulers, intelligence, engines, composition-root pipeline |
221
+ | `nx-cli` | The official `nxai` CLI + the deployable template |
222
+
223
+ See [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md). The acyclic graph is enforced by
224
+ `scripts/verify_packages.py`; the full Quality Gate is `scripts/quality_gate.py`.
225
+
226
+ ## Extending
227
+
228
+ NX is built on an Open/Closed SDK — register agents, engines, workflows, adapters,
229
+ plugins and tools without touching the core. See the
230
+ [SDK Guide](packages/nx-cli/nx_cli/_template/docs/SDK_GUIDE.md) and
231
+ [Plugin Guide](packages/nx-cli/nx_cli/_template/docs/PLUGIN_GUIDE.md).
232
+
233
+ ## Principles
234
+
235
+ - **All intelligence is the model's.** NX organizes; it never reasons.
236
+ - **Stdlib-only core** — zero third-party runtime dependencies.
237
+ - **Safe by default** — Dry Run → Test → Execute; nothing destructive without intent.
238
+ - **The Brain never stores code** — only structured knowledge.
239
+ - **Knowledge is leverage** — more history ⇒ better context ⇒ fewer tokens.
240
+
241
+ ## License
242
+
243
+ MIT — see [LICENSE](LICENSE).
@@ -0,0 +1,222 @@
1
+ # NX AI Engineer
2
+
3
+ **v1.0.0** · stdlib-only · zero runtime dependencies · 238 tests green ·
4
+ [CHANGELOG](CHANGELOG.md) · [ROADMAP](ROADMAP.md) · [RELEASE_NOTES](RELEASE_NOTES.md)
5
+
6
+ **NX AI Engineer is a Developer Infrastructure Platform for AI-assisted software
7
+ development.** Its job is to organize **knowledge, context and execution** so that
8
+ *any* AI model becomes dramatically more effective while building software.
9
+
10
+ > NX AI Engineer does **not** replace Claude Code, GPT, Gemini or any other model.
11
+ > **All intelligence belongs to the model. All organization belongs to NX.**
12
+
13
+ It installs like any modern tool — a package from PyPI and a single `nxai` CLI —
14
+ and works on any stack (Node, Python, Go, Rust, Java, Nx and other monorepos, …),
15
+ which it **discovers** at runtime.
16
+
17
+ > **Guides:**
18
+ > [Installer](packages/nx-cli/nx_cli/_template/docs/INSTALLER_GUIDE.md) ·
19
+ > [Upgrade](packages/nx-cli/nx_cli/_template/docs/UPGRADE_GUIDE.md) ·
20
+ > [Architecture](docs/ARCHITECTURE.md) ·
21
+ > [SDK](packages/nx-cli/nx_cli/_template/docs/SDK_GUIDE.md) ·
22
+ > [Engine](packages/nx-cli/nx_cli/_template/docs/ENGINE_GUIDE.md) ·
23
+ > [Workflow](packages/nx-cli/nx_cli/_template/docs/WORKFLOW_GUIDE.md) ·
24
+ > [Plugin](packages/nx-cli/nx_cli/_template/docs/PLUGIN_GUIDE.md) ·
25
+ > [Knowledge](packages/nx-cli/nx_cli/_template/docs/KNOWLEDGE_GUIDE.md) ·
26
+ > [Project Brain](packages/nx-cli/nx_cli/_template/docs/PROJECT_BRAIN.md) ·
27
+ > [Contributing](CONTRIBUTING.md)
28
+
29
+ ## Install
30
+
31
+ ```bash
32
+ pip install nx-ai-engineer
33
+ nxai version
34
+ nxai doctor
35
+ ```
36
+
37
+ No manual file copying, ever. The platform code lives in the installed packages;
38
+ your project's `.ai-project-assistant/` holds **data only**.
39
+
40
+ ## Quickstart
41
+
42
+ From the root of any repository:
43
+
44
+ ```bash
45
+ nxai init # scaffold .ai-project-assistant + audit + Brain + Knowledge + Vault
46
+ nxai plan "Add OAuth login" # plan a goal into a task (agents, order, locks)
47
+ nxai execute "Add OAuth login" # full end-to-end flow (Dry Run -> Test -> Execute; dry-run by default)
48
+ nxai review # consolidated diff review
49
+ nxai knowledge status # the three memories: Brain / Obsidian / Git
50
+ nxai docs # the bundled guides
51
+ ```
52
+
53
+ Everything is **safe by default**: execution always runs **Dry Run → Test →
54
+ Execute** and defaults to dry-run.
55
+
56
+ ## What it does
57
+
58
+ NX turns a single request into a disciplined flow — never "implement immediately":
59
+
60
+ ```
61
+ audit → discover → impact → risk → plan → subtasks → agents → order →
62
+ implement → test → review → consolidate → document → report
63
+ ```
64
+
65
+ It coordinates **specialized agents** (backend, frontend, database, ai, security,
66
+ devops, qa, docs, plus read-only architect/planner/reviewer/delivery) that work
67
+ safely on the same codebase via advisory locks and isolated git worktrees.
68
+
69
+ ### The three memories
70
+
71
+ | Memory | Component | Role |
72
+ |---|---|---|
73
+ | **Operational** | Project Brain (`brain/`) | Structured knowledge — **never code**, never model output. |
74
+ | **Organizational** | Obsidian Vault (`obsidian/`, folders `00 Dashboard`…`14 Retrospectives`) | A navigable, auto-synced visual reflection of the Brain. |
75
+ | **Historical** | Git (opt-in) | Immutable snapshots of the knowledge over time. |
76
+
77
+ The **Knowledge Engine** has exactly five responsibilities — *discover, index,
78
+ relate, update, deliver_context* — and **never reasons, learns programming, or
79
+ interprets code**. It only reduces the model's cognitive load: the richer the
80
+ project history, the sharper the model's work, the **fewer tokens** spent.
81
+
82
+ ### The Engineering Contract
83
+
84
+ How knowledge reaches the agent. An agent doesn't get an ad-hoc prompt — it gets a
85
+ **contract**: a declarative, predictable statement of what applies to a task.
86
+
87
+ ```
88
+ Task → Engineering Contract → Context Builder → Model → Result → Knowledge Update
89
+ ```
90
+
91
+ The contract assembles `context` (files/areas), `knowledge` (ADRs/patterns),
92
+ `engineering` (the Engineering Packs that apply), `constraints`, `requirements`
93
+ (mandatory tests/validations/checklists) and `brain` facets. **Packs are
94
+ contracts**: they declare `applies_to`, so the Backend Agent automatically
95
+ receives the **Security**, **LGPD** and **Multi-Tenant** contracts — without anyone
96
+ remembering to ask. The contract is **enforced at delivery** (a gate blocks
97
+ shipping untested code when an applicable pack mandates tests). See the
98
+ [Engineering Contract guide](packages/nx-cli/nx_cli/_template/docs/ENGINEERING_CONTRACT.md).
99
+
100
+ ```bash
101
+ nxai contract --agent backend "Implement Google login" --files auth.py --areas api/auth
102
+ ```
103
+
104
+ ## CLI
105
+
106
+ | Command | Purpose |
107
+ |---|---|
108
+ | `nxai init` | Initialize `.ai-project-assistant` (scaffold + audit + Brain + Knowledge + Vault) |
109
+ | `nxai audit` | Discover & persist the architecture |
110
+ | `nxai plan "<goal>"` | Plan a goal into a task |
111
+ | `nxai execute "<goal>"` | Full end-to-end flow (alias of `pipeline`) |
112
+ | `nxai review` | Consolidated diff review |
113
+ | `nxai knowledge <index\|list\|retrieve\|sync\|status\|graph>` | Knowledge Engine + Providers |
114
+ | `nxai obsidian <sync\|status>` | Sync/inspect the Obsidian vault |
115
+ | `nxai contract --agent <a> "<task>"` | Build the Engineering Contract for an agent + task |
116
+ | `nxai pack <list\|show\|add\|remove>` | Engineering Packs (domain knowledge bundles) |
117
+ | `nxai scaffold [--stack ...]` | Lay open-source/GitHub repo standards into the project |
118
+ | `nxai graph` | Show the project Knowledge Graph |
119
+ | `nxai report` | Consolidated report (status + insights + metrics) |
120
+ | `nxai docs [name]` | List the bundled guides, or print one |
121
+ | `nxai doctor` | Health-check the install and project |
122
+ | `nxai update` | Refresh template assets (keeps Brain/Vault/config/history) |
123
+ | `nxai version` | Show version |
124
+
125
+ …plus `decide`, `dispatch`, `context`, `run`, `deliver`, `pipeline`, `metrics`,
126
+ `insights`, `recommend`, `worktree`, `tasks`, `locks`, `unlock`, `status`.
127
+ (The legacy `nx` alias is also installed.)
128
+
129
+ ## Engineering Packs
130
+
131
+ Domain knowledge — not code — that makes the agents apply a domain's rules
132
+ correctly:
133
+
134
+ ```bash
135
+ nxai pack list # browse the catalog
136
+ nxai pack add lgpd # install LGPD/privacy policies + checklists + context
137
+ nxai pack add security # OWASP/ASVS-aligned application security
138
+ ```
139
+
140
+ Built-in packs: **lgpd**, **security**, **repo-standards** (stable) plus scaffolds
141
+ for owasp, ai, cloud, docker, multi-tenant, observability, testing, billing,
142
+ authentication. Once installed, the **Pack Provider** feeds the pack's
143
+ policies/checklists/context to the agents working in that domain. Packs contain
144
+ **no code and no AI**. See the
145
+ [Packs Guide](packages/nx-cli/nx_cli/_template/docs/PACKS_GUIDE.md); third parties
146
+ can publish their own (the pack Marketplace).
147
+
148
+ ### Packs (knowledge) × Specialist Agents (execution)
149
+
150
+ The knowledge lives in the **Pack**; a **Specialist Agent** just executes using it
151
+ — *the agent is disposable, the knowledge is not*. The **Database** category ships
152
+ `postgres` and `mongodb` (full: rules, patterns, anti-patterns, performance,
153
+ checklists, security) plus mysql/sqlserver/oracle/sqlite/redis/cassandra/elastic/
154
+ neo4j, with specialist agents **database-relational**, **database-nosql** and a
155
+ read-only **database-reviewer** (never implements — it asks and *blocks* on
156
+ duplicate tables, redundant indexes, anti-patterns). The Engineering Contract
157
+ auto-attaches the right pack to each agent, so the *same* PostgreSQL knowledge
158
+ serves the relational, reviewer and migration work without duplication.
159
+
160
+ ```bash
161
+ nxai pack add postgres
162
+ nxai contract --agent database-relational "Add an orders table" # postgres pack auto-attached
163
+ ```
164
+
165
+ ### Standardize a repository
166
+
167
+ The `repo-standards` pack also ships concrete templates that `nxai scaffold` lays
168
+ into a project's repo root — governance files, issue/PR templates and a CI
169
+ workflow matched to the stack:
170
+
171
+ ```bash
172
+ nxai scaffold --stack auto --dry-run # preview
173
+ nxai scaffold --stack python # CONTRIBUTING, CODE_OF_CONDUCT, SECURITY,
174
+ # .github/ISSUE_TEMPLATE, PR template, CI, .gitignore
175
+ ```
176
+
177
+ Idempotent — it never overwrites an existing file without `--force`.
178
+
179
+ ## Architecture
180
+
181
+ A monorepo of **9 acyclic, stdlib-only packages**:
182
+
183
+ ```
184
+ nx-core ← nx-workflow ← nx-sdk
185
+ nx-core ← nx-packs
186
+ nx-core ← nx-providers ← nx-obsidian ← nx-knowledge
187
+ {core, workflow, sdk, knowledge} ← nx-runtime ← nx-cli
188
+ ```
189
+
190
+ | Package | Responsibility |
191
+ |---|---|
192
+ | `nx-core` | Kernel (domain/states/lifecycle/engine), governance, observability, foundation |
193
+ | `nx-workflow` | Reusable multi-step workflows |
194
+ | `nx-sdk` | Public extension surface (agents/engines/workflows/adapters/plugins/tools) |
195
+ | `nx-packs` | Engineering Packs catalog (domain knowledge bundles) |
196
+ | `nx-providers` | Knowledge providers (filesystem, git, markdown, ADR, project-brain, packs) + the relate/graph primitive |
197
+ | `nx-obsidian` | Obsidian provider + vault sync |
198
+ | `nx-knowledge` | Knowledge Engine, registry, memory (Brain), evolution |
199
+ | `nx-runtime` | Adapters, schedulers, intelligence, engines, composition-root pipeline |
200
+ | `nx-cli` | The official `nxai` CLI + the deployable template |
201
+
202
+ See [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md). The acyclic graph is enforced by
203
+ `scripts/verify_packages.py`; the full Quality Gate is `scripts/quality_gate.py`.
204
+
205
+ ## Extending
206
+
207
+ NX is built on an Open/Closed SDK — register agents, engines, workflows, adapters,
208
+ plugins and tools without touching the core. See the
209
+ [SDK Guide](packages/nx-cli/nx_cli/_template/docs/SDK_GUIDE.md) and
210
+ [Plugin Guide](packages/nx-cli/nx_cli/_template/docs/PLUGIN_GUIDE.md).
211
+
212
+ ## Principles
213
+
214
+ - **All intelligence is the model's.** NX organizes; it never reasons.
215
+ - **Stdlib-only core** — zero third-party runtime dependencies.
216
+ - **Safe by default** — Dry Run → Test → Execute; nothing destructive without intent.
217
+ - **The Brain never stores code** — only structured knowledge.
218
+ - **Knowledge is leverage** — more history ⇒ better context ⇒ fewer tokens.
219
+
220
+ ## License
221
+
222
+ MIT — see [LICENSE](LICENSE).