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.
- nx_ai_engineer-1.0.1/LICENSE +21 -0
- nx_ai_engineer-1.0.1/PKG-INFO +243 -0
- nx_ai_engineer-1.0.1/README.md +222 -0
- nx_ai_engineer-1.0.1/nx_ai_engineer.egg-info/PKG-INFO +243 -0
- nx_ai_engineer-1.0.1/nx_ai_engineer.egg-info/SOURCES.txt +489 -0
- nx_ai_engineer-1.0.1/nx_ai_engineer.egg-info/dependency_links.txt +1 -0
- nx_ai_engineer-1.0.1/nx_ai_engineer.egg-info/entry_points.txt +3 -0
- nx_ai_engineer-1.0.1/nx_ai_engineer.egg-info/top_level.txt +9 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/__init__.py +2 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/PROJECT_RULES.md +37 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/_TEMPLATE.md +33 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/ai.md +37 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/architect.md +38 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/backend.md +41 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/database-nosql.md +41 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/database-relational.md +44 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/database-reviewer.md +37 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/database.md +37 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/delivery.md +37 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/devops.md +37 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/docs.md +36 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/frontend.md +38 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/planner.md +38 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/qa.md +37 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/reviewer.md +38 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/security.md +37 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/agents/task-manager.md +36 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/config.example.json +16 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/ARCHITECTURE_OVERVIEW.md +50 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/ENGINEERING_CONTRACT.md +97 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/ENGINE_GUIDE.md +57 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/INSTALLER_GUIDE.md +78 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/KNOWLEDGE_GUIDE.md +149 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/MARKETPLACE.md +78 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/MIGRATION_GUIDE.md +51 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/PACKS_GUIDE.md +141 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/PLUGIN_GUIDE.md +56 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/PROJECT_BRAIN.md +62 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/PROJECT_KNOWLEDGE.md +53 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/PROVIDER_SDK_GUIDE.md +103 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/SDK_GUIDE.md +79 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/UPGRADE_GUIDE.md +68 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/WORKFLOW_GUIDE.md +45 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0001-execution-engine.md +51 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0002-agent-dispatcher.md +43 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0003-context-engine.md +42 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0004-memory-brain-learning-experience.md +42 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0005-governance-delivery.md +33 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0006-unified-pipeline.md +35 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0007-observability-telemetry.md +30 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0008-sdk-extensibility.md +37 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0009-claude-code-adapter.md +54 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0010-execution-cluster.md +57 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0011-decision-engine.md +55 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0012-autonomous-learning.md +60 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0013-knowledge-providers.md +50 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0014-obsidian-knowledge-vault.md +56 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0015-knowledge-engine-three-memories.md +52 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0016-project-evolution.md +57 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0017-knowledge-graph.md +53 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0018-project-knowledge-engine-doctrine.md +47 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0019-distribution-platform-cli.md +51 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0020-engineering-contract.md +51 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/adr/ADR-0021-database-engineering-packs.md +46 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/architecture.md +23 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/coding-standards.md +30 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/lgpd.md +23 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/memory.md +25 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/patterns.md +23 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/sdk.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/tenant-rules.md +25 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/docs/workflow.md +38 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/templates/engine.md +25 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/templates/pull_request.md +26 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/templates/review.md +27 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/_template/templates/task.md +32 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/bootstrap.py +117 -0
- nx_ai_engineer-1.0.1/packages/nx-cli/nx_cli/orchestrator.py +1079 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/__init__.py +2 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/agents.py +203 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/analyzer.py +266 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/config.py +47 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/experience/__init__.py +4 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/experience/metrics.py +74 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/foundation/__init__.py +13 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/governance/__init__.py +4 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/governance/adr.py +83 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/governance/checklists.py +22 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/governance/policies.py +35 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/governance/quality_gates.py +57 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/kernel/__init__.py +3 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/kernel/domain.py +116 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/kernel/engine.py +139 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/kernel/lifecycle.py +83 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/kernel/states.py +70 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/locks.py +77 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/observability/__init__.py +4 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/observability/events.py +78 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/observability/logging.py +37 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/observability/telemetry.py +47 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/planner.py +204 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/review.py +166 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/tasks.py +140 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/util.py +186 -0
- nx_ai_engineer-1.0.1/packages/nx-core/nx_core/worktree.py +64 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/__init__.py +2 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/evolution/__init__.py +30 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/evolution/brain_optimizer.py +34 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/evolution/experience_analyzer.py +41 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/evolution/knowledge_evolution.py +51 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/evolution/pattern_discovery.py +44 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/evolution/project_evolution.py +152 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/evolution/recommendation.py +55 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/evolution/self_improvement.py +184 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/evolution/similarity.py +41 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/knowledge/__init__.py +29 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/knowledge/contract.py +179 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/knowledge/engine.py +228 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/knowledge/registry.py +88 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/memory/__init__.py +4 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/memory/brain.py +129 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/memory/cache.py +40 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/memory/context.py +311 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/memory/learning.py +54 -0
- nx_ai_engineer-1.0.1/packages/nx-knowledge/nx_knowledge/memory/semantic.py +68 -0
- nx_ai_engineer-1.0.1/packages/nx-obsidian/nx_obsidian/__init__.py +2 -0
- nx_ai_engineer-1.0.1/packages/nx-obsidian/nx_obsidian/knowledge/__init__.py +0 -0
- nx_ai_engineer-1.0.1/packages/nx-obsidian/nx_obsidian/knowledge/obsidian.py +77 -0
- nx_ai_engineer-1.0.1/packages/nx-obsidian/nx_obsidian/knowledge/obsidian_sync.py +396 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/__init__.py +68 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/README.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/checklists.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/context.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/pack.json +41 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/patterns.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/policies.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/templates/review.md +20 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/ai/tests/checklist_test.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/README.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/checklists.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/context.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/pack.json +42 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/patterns.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/policies.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/templates/review.md +20 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/authentication/tests/checklist_test.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/README.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/checklists.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/context.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/pack.json +41 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/patterns.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/policies.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/templates/review.md +20 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/billing/tests/checklist_test.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/README.md +16 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/anti-patterns.md +8 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/checklists.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/context.md +16 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/pack.json +45 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/patterns.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/performance.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/policies.md +8 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/prompts/specialist.md +14 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/security.md +6 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/templates/migration.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cassandra/tests/checklist_test.md +4 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/README.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/checklists.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/context.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/pack.json +41 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/patterns.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/policies.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/templates/review.md +20 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/cloud/tests/checklist_test.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/README.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/checklists.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/context.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/pack.json +42 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/patterns.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/policies.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/templates/review.md +20 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/docker/tests/checklist_test.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/README.md +16 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/anti-patterns.md +8 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/checklists.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/context.md +16 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/pack.json +45 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/patterns.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/performance.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/policies.md +8 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/prompts/specialist.md +14 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/security.md +6 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/templates/migration.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/elastic/tests/checklist_test.md +4 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/README.md +15 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/checklists.md +16 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/context.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/pack.json +44 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/patterns.md +8 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/policies.md +14 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/templates/review.md +21 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/lgpd/tests/checklist_test.md +7 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/README.md +14 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/anti-patterns.md +10 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/checklists.md +12 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/context.md +19 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/pack.json +53 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/patterns.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/performance.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/policies.md +11 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/prompts/specialist.md +14 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/security.md +6 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/templates/migration.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mongodb/tests/checklist_test.md +4 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/README.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/checklists.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/context.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/pack.json +43 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/patterns.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/policies.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/templates/review.md +20 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/multi-tenant/tests/checklist_test.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/README.md +16 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/anti-patterns.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/checklists.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/context.md +16 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/pack.json +45 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/patterns.md +6 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/performance.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/policies.md +8 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/prompts/specialist.md +14 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/security.md +6 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/templates/migration.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/mysql/tests/checklist_test.md +4 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/README.md +16 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/anti-patterns.md +8 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/checklists.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/context.md +16 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/pack.json +46 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/patterns.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/performance.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/policies.md +8 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/prompts/specialist.md +14 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/security.md +6 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/templates/migration.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/neo4j/tests/checklist_test.md +4 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/README.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/checklists.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/context.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/pack.json +43 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/patterns.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/policies.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/templates/review.md +20 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/observability/tests/checklist_test.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/README.md +16 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/anti-patterns.md +8 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/checklists.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/context.md +15 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/pack.json +45 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/patterns.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/performance.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/policies.md +7 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/prompts/specialist.md +14 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/security.md +6 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/templates/migration.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/oracle/tests/checklist_test.md +4 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/README.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/checklists.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/context.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/pack.json +42 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/patterns.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/policies.md +14 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/templates/review.md +20 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/owasp/tests/checklist_test.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/README.md +14 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/anti-patterns.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/checklists.md +16 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/context.md +19 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/pack.json +55 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/patterns.md +8 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/performance.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/policies.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/prompts/specialist.md +14 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/security.md +6 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/templates/migration.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/postgres/tests/checklist_test.md +4 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/README.md +16 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/anti-patterns.md +8 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/checklists.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/context.md +16 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/pack.json +46 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/patterns.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/performance.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/policies.md +8 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/prompts/specialist.md +14 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/security.md +6 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/templates/migration.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/redis/tests/checklist_test.md +4 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/README.md +18 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/adr/ADR-0001-baseline.md +15 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/architecture.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/checklists.md +12 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/context.md +20 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/examples/example.md +6 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/pack.json +34 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/patterns.md +6 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/policies.md +12 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/CODE_OF_CONDUCT.md +14 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/CONTRIBUTING.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/SECURITY.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/editorconfig +15 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/issue_bug.md +15 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/issue_feature.md +11 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/manifest.json +70 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/pull_request.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/stacks/generic/ci.yml +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/stacks/go/ci.yml +15 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/stacks/go/gitignore +7 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/stacks/node/ci.yml +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/stacks/node/gitignore +8 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/stacks/python/ci.yml +22 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/scaffold/stacks/python/gitignore +10 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/templates/review.md +15 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/repo-standards/tests/checklist_test.md +4 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/README.md +15 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/checklists.md +15 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/context.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/pack.json +45 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/patterns.md +8 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/policies.md +15 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/templates/review.md +21 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/security/tests/checklist_test.md +7 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/README.md +16 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/anti-patterns.md +7 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/checklists.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/context.md +15 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/pack.json +45 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/patterns.md +4 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/performance.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/policies.md +7 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/prompts/specialist.md +14 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/security.md +6 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/templates/migration.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlite/tests/checklist_test.md +4 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/README.md +16 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/anti-patterns.md +8 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/checklists.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/context.md +15 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/pack.json +45 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/patterns.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/performance.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/policies.md +7 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/prompts/specialist.md +14 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/security.md +6 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/templates/migration.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/sqlserver/tests/checklist_test.md +4 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/README.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/adr/ADR-0001-baseline.md +13 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/architecture.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/checklists.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/context.md +17 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/examples/example.md +3 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/pack.json +41 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/patterns.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/policies.md +9 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/templates/review.md +20 -0
- nx_ai_engineer-1.0.1/packages/nx-packs/nx_packs/catalog/testing/tests/checklist_test.md +5 -0
- nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/__init__.py +2 -0
- nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/knowledge/__init__.py +0 -0
- nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/knowledge/adr.py +61 -0
- nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/knowledge/base.py +149 -0
- nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/knowledge/filesystem.py +78 -0
- nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/knowledge/git.py +53 -0
- nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/knowledge/graph.py +277 -0
- nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/knowledge/markdown.py +64 -0
- nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/knowledge/packs.py +92 -0
- nx_ai_engineer-1.0.1/packages/nx-providers/nx_providers/knowledge/project_brain.py +72 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/__init__.py +2 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/adapters/__init__.py +4 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/adapters/base.py +31 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/adapters/claude_code.py +199 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/adapters/dryrun.py +26 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/engines/__init__.py +12 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/engines/delivery.py +125 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/intelligence/__init__.py +7 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/intelligence/decision.py +140 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/intelligence/dependency.py +10 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/intelligence/estimation.py +80 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/intelligence/planner.py +13 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/intelligence/reasoning.py +60 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/intelligence/risk.py +87 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/intelligence/strategy.py +42 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/kernel/__init__.py +0 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/kernel/pipeline.py +183 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/schedulers/__init__.py +3 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/schedulers/cluster.py +306 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/schedulers/dispatcher.py +137 -0
- nx_ai_engineer-1.0.1/packages/nx-runtime/nx_runtime/schedulers/execution.py +314 -0
- nx_ai_engineer-1.0.1/packages/nx-sdk/nx_sdk/__init__.py +136 -0
- nx_ai_engineer-1.0.1/packages/nx-workflow/nx_workflow/__init__.py +4 -0
- nx_ai_engineer-1.0.1/packages/nx-workflow/nx_workflow/builtin.py +41 -0
- nx_ai_engineer-1.0.1/packages/nx-workflow/nx_workflow/workflow.py +65 -0
- nx_ai_engineer-1.0.1/pyproject.toml +85 -0
- nx_ai_engineer-1.0.1/setup.cfg +4 -0
- nx_ai_engineer-1.0.1/tests/test_bootstrap.py +97 -0
- nx_ai_engineer-1.0.1/tests/test_claude_adapter.py +179 -0
- nx_ai_engineer-1.0.1/tests/test_cli.py +73 -0
- nx_ai_engineer-1.0.1/tests/test_cluster.py +179 -0
- nx_ai_engineer-1.0.1/tests/test_compat.py +49 -0
- nx_ai_engineer-1.0.1/tests/test_context.py +107 -0
- nx_ai_engineer-1.0.1/tests/test_contract.py +112 -0
- nx_ai_engineer-1.0.1/tests/test_decision.py +121 -0
- nx_ai_engineer-1.0.1/tests/test_delivery.py +60 -0
- nx_ai_engineer-1.0.1/tests/test_dispatcher.py +82 -0
- nx_ai_engineer-1.0.1/tests/test_evolution.py +179 -0
- nx_ai_engineer-1.0.1/tests/test_execution.py +133 -0
- nx_ai_engineer-1.0.1/tests/test_intelligence.py +58 -0
- nx_ai_engineer-1.0.1/tests/test_kernel.py +152 -0
- nx_ai_engineer-1.0.1/tests/test_knowledge.py +184 -0
- nx_ai_engineer-1.0.1/tests/test_knowledge_doctrine.py +132 -0
- nx_ai_engineer-1.0.1/tests/test_knowledge_engine.py +113 -0
- nx_ai_engineer-1.0.1/tests/test_knowledge_graph.py +130 -0
- nx_ai_engineer-1.0.1/tests/test_memory.py +133 -0
- nx_ai_engineer-1.0.1/tests/test_nx_packages.py +48 -0
- nx_ai_engineer-1.0.1/tests/test_observability.py +65 -0
- nx_ai_engineer-1.0.1/tests/test_obsidian_sync.py +151 -0
- nx_ai_engineer-1.0.1/tests/test_packs.py +139 -0
- nx_ai_engineer-1.0.1/tests/test_pipeline.py +78 -0
- nx_ai_engineer-1.0.1/tests/test_project_evolution.py +145 -0
- nx_ai_engineer-1.0.1/tests/test_sdk.py +59 -0
- 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).
|