aios-core 4.2.15 → 4.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.aios-core/cli/commands/validate/index.js +1 -1
- package/.aios-core/core/code-intel/code-intel-client.js +19 -5
- package/.aios-core/core/code-intel/helpers/creation-helper.js +183 -0
- package/.aios-core/core/code-intel/helpers/devops-helper.js +166 -0
- package/.aios-core/core/code-intel/helpers/planning-helper.js +248 -0
- package/.aios-core/core/code-intel/helpers/qa-helper.js +187 -0
- package/.aios-core/core/code-intel/helpers/story-helper.js +146 -0
- package/.aios-core/core/code-intel/hook-runtime.js +186 -0
- package/.aios-core/core/code-intel/index.js +2 -0
- package/.aios-core/core/code-intel/providers/code-graph-provider.js +8 -0
- package/.aios-core/core/code-intel/providers/provider-interface.js +9 -0
- package/.aios-core/core/code-intel/providers/registry-provider.js +515 -0
- package/.aios-core/core/config/schemas/framework-config.schema.json +155 -7
- package/.aios-core/core/config/schemas/project-config.schema.json +329 -15
- package/.aios-core/core/config/template-overrides.js +84 -0
- package/.aios-core/core/docs/troubleshooting-guide.md +1 -1
- package/.aios-core/core/doctor/checks/agent-memory.js +63 -0
- package/.aios-core/core/doctor/checks/claude-md.js +56 -0
- package/.aios-core/core/doctor/checks/code-intel.js +131 -0
- package/.aios-core/core/doctor/checks/commands-count.js +81 -0
- package/.aios-core/core/doctor/checks/core-config.js +53 -0
- package/.aios-core/core/doctor/checks/entity-registry.js +53 -0
- package/.aios-core/core/doctor/checks/git-hooks.js +50 -0
- package/.aios-core/core/doctor/checks/graph-dashboard.js +48 -0
- package/.aios-core/core/doctor/checks/hooks-claude-count.js +118 -0
- package/.aios-core/core/doctor/checks/ide-sync.js +85 -0
- package/.aios-core/core/doctor/checks/index.js +46 -0
- package/.aios-core/core/doctor/checks/node-version.js +33 -0
- package/.aios-core/core/doctor/checks/npm-packages.js +35 -0
- package/.aios-core/core/doctor/checks/rules-files.js +61 -0
- package/.aios-core/core/doctor/checks/settings-json.js +121 -0
- package/.aios-core/core/doctor/checks/skills-count.js +72 -0
- package/.aios-core/core/doctor/fix-handler.js +165 -0
- package/.aios-core/core/doctor/formatters/json.js +14 -0
- package/.aios-core/core/doctor/formatters/text.js +59 -0
- package/.aios-core/core/doctor/index.js +94 -0
- package/.aios-core/core/graph-dashboard/cli.js +361 -0
- package/.aios-core/core/graph-dashboard/data-sources/code-intel-source.js +234 -0
- package/.aios-core/core/graph-dashboard/data-sources/metrics-source.js +95 -0
- package/.aios-core/core/graph-dashboard/data-sources/registry-source.js +106 -0
- package/.aios-core/core/graph-dashboard/formatters/dot-formatter.js +45 -0
- package/.aios-core/core/graph-dashboard/formatters/html-formatter.js +1437 -0
- package/.aios-core/core/graph-dashboard/formatters/json-formatter.js +13 -0
- package/.aios-core/core/graph-dashboard/formatters/mermaid-formatter.js +59 -0
- package/.aios-core/core/graph-dashboard/index.js +21 -0
- package/.aios-core/core/graph-dashboard/renderers/stats-renderer.js +217 -0
- package/.aios-core/core/graph-dashboard/renderers/status-renderer.js +125 -0
- package/.aios-core/core/graph-dashboard/renderers/tree-renderer.js +119 -0
- package/.aios-core/core/health-check/base-check.js +1 -1
- package/.aios-core/core/health-check/check-registry.js +1 -1
- package/.aios-core/core/health-check/checks/deployment/build-config.js +1 -1
- package/.aios-core/core/health-check/checks/deployment/ci-config.js +1 -1
- package/.aios-core/core/health-check/checks/deployment/deployment-readiness.js +1 -1
- package/.aios-core/core/health-check/checks/deployment/docker-config.js +1 -1
- package/.aios-core/core/health-check/checks/deployment/env-file.js +1 -1
- package/.aios-core/core/health-check/checks/deployment/index.js +1 -1
- package/.aios-core/core/health-check/checks/index.js +1 -1
- package/.aios-core/core/health-check/checks/local/disk-space.js +1 -1
- package/.aios-core/core/health-check/checks/local/environment-vars.js +1 -1
- package/.aios-core/core/health-check/checks/local/git-install.js +1 -1
- package/.aios-core/core/health-check/checks/local/ide-detection.js +1 -1
- package/.aios-core/core/health-check/checks/local/index.js +1 -1
- package/.aios-core/core/health-check/checks/local/memory.js +1 -1
- package/.aios-core/core/health-check/checks/local/network.js +1 -1
- package/.aios-core/core/health-check/checks/local/npm-install.js +1 -1
- package/.aios-core/core/health-check/checks/local/shell-environment.js +1 -1
- package/.aios-core/core/health-check/checks/project/agent-config.js +1 -1
- package/.aios-core/core/health-check/checks/project/aios-directory.js +1 -1
- package/.aios-core/core/health-check/checks/project/dependencies.js +1 -1
- package/.aios-core/core/health-check/checks/project/framework-config.js +1 -1
- package/.aios-core/core/health-check/checks/project/index.js +1 -1
- package/.aios-core/core/health-check/checks/project/node-version.js +1 -1
- package/.aios-core/core/health-check/checks/project/package-json.js +1 -1
- package/.aios-core/core/health-check/checks/project/task-definitions.js +1 -1
- package/.aios-core/core/health-check/checks/project/workflow-dependencies.js +1 -1
- package/.aios-core/core/health-check/checks/repository/branch-protection.js +1 -1
- package/.aios-core/core/health-check/checks/repository/commit-history.js +1 -1
- package/.aios-core/core/health-check/checks/repository/conflicts.js +1 -1
- package/.aios-core/core/health-check/checks/repository/git-repo.js +1 -1
- package/.aios-core/core/health-check/checks/repository/git-status.js +1 -1
- package/.aios-core/core/health-check/checks/repository/gitignore.js +1 -1
- package/.aios-core/core/health-check/checks/repository/index.js +1 -1
- package/.aios-core/core/health-check/checks/repository/large-files.js +1 -1
- package/.aios-core/core/health-check/checks/repository/lockfile-integrity.js +1 -1
- package/.aios-core/core/health-check/checks/services/api-endpoints.js +1 -1
- package/.aios-core/core/health-check/checks/services/claude-code.js +1 -1
- package/.aios-core/core/health-check/checks/services/gemini-cli.js +1 -1
- package/.aios-core/core/health-check/checks/services/github-cli.js +1 -1
- package/.aios-core/core/health-check/checks/services/index.js +1 -1
- package/.aios-core/core/health-check/checks/services/mcp-integration.js +1 -1
- package/.aios-core/core/health-check/engine.js +1 -1
- package/.aios-core/core/health-check/healers/backup-manager.js +1 -1
- package/.aios-core/core/health-check/healers/index.js +1 -1
- package/.aios-core/core/health-check/index.js +9 -2
- package/.aios-core/core/health-check/reporters/console.js +1 -1
- package/.aios-core/core/health-check/reporters/index.js +1 -1
- package/.aios-core/core/health-check/reporters/json.js +1 -1
- package/.aios-core/core/health-check/reporters/markdown.js +1 -1
- package/.aios-core/core/ids/layer-classifier.js +65 -0
- package/.aios-core/core/ids/registry-updater.js +49 -0
- package/.aios-core/core/index.esm.js +1 -1
- package/.aios-core/core/index.js +1 -1
- package/.aios-core/core/session/context-detector.js +2 -7
- package/.aios-core/core/synapse/context/context-tracker.js +9 -1
- package/.aios-core/core/synapse/engine.js +33 -13
- package/.aios-core/core/synapse/memory/memory-bridge.js +17 -43
- package/.aios-core/core/synapse/memory/synapse-memory-provider.js +201 -0
- package/.aios-core/core/synapse/runtime/hook-runtime.js +40 -2
- package/.aios-core/core/synapse/session/session-manager.js +3 -2
- package/.aios-core/core/synapse/utils/atomic-write.js +79 -0
- package/.aios-core/core-config.yaml +34 -1
- package/.aios-core/data/aios-kb.md +2 -2
- package/.aios-core/data/capability-detection.js +290 -0
- package/.aios-core/data/entity-registry.yaml +10450 -2129
- package/.aios-core/data/mcp-discipline.js +166 -0
- package/.aios-core/data/mcp-tool-examples.yaml +215 -0
- package/.aios-core/data/tok2-validation.js +168 -0
- package/.aios-core/data/tok3-token-comparison.js +123 -0
- package/.aios-core/data/tool-registry.yaml +648 -0
- package/.aios-core/data/tool-search-validation.js +174 -0
- package/.aios-core/data/workflow-chains.yaml +156 -0
- package/.aios-core/development/agents/aios-master.md +17 -10
- package/.aios-core/development/agents/analyst/MEMORY.md +33 -0
- package/.aios-core/development/agents/analyst.md +17 -10
- package/.aios-core/development/agents/architect/MEMORY.md +39 -0
- package/.aios-core/development/agents/architect.md +17 -10
- package/.aios-core/development/agents/data-engineer/MEMORY.md +32 -0
- package/.aios-core/development/agents/data-engineer.md +17 -10
- package/.aios-core/development/agents/dev/MEMORY.md +46 -0
- package/.aios-core/development/agents/dev.md +18 -11
- package/.aios-core/development/agents/devops/MEMORY.md +39 -0
- package/.aios-core/development/agents/devops.md +44 -10
- package/.aios-core/development/agents/pm/MEMORY.md +38 -0
- package/.aios-core/development/agents/pm.md +17 -10
- package/.aios-core/development/agents/po/MEMORY.md +45 -0
- package/.aios-core/development/agents/po.md +17 -10
- package/.aios-core/development/agents/qa/MEMORY.md +42 -0
- package/.aios-core/development/agents/qa.md +18 -11
- package/.aios-core/development/agents/sm/MEMORY.md +31 -0
- package/.aios-core/development/agents/sm.md +17 -10
- package/.aios-core/development/agents/squad-creator.md +18 -9
- package/.aios-core/development/agents/ux/MEMORY.md +31 -0
- package/.aios-core/development/agents/ux-design-expert.md +16 -9
- package/.aios-core/development/checklists/issue-triage-checklist.md +35 -0
- package/.aios-core/development/checklists/memory-audit-checklist.md +53 -0
- package/.aios-core/development/scripts/issue-triage.js +171 -0
- package/.aios-core/development/scripts/populate-entity-registry.js +412 -19
- package/.aios-core/development/scripts/unified-activation-pipeline.js +31 -10
- package/.aios-core/development/tasks/analyze-project-structure.md +48 -0
- package/.aios-core/development/tasks/apply-qa-fixes.md +7 -0
- package/.aios-core/development/tasks/architect-analyze-impact.md +8 -1
- package/.aios-core/development/tasks/brownfield-create-epic.md +41 -0
- package/.aios-core/development/tasks/brownfield-create-story.md +7 -0
- package/.aios-core/development/tasks/build-autonomous.md +7 -0
- package/.aios-core/development/tasks/create-deep-research-prompt.md +7 -0
- package/.aios-core/development/tasks/create-doc.md +44 -0
- package/.aios-core/development/tasks/create-next-story.md +17 -0
- package/.aios-core/development/tasks/create-suite.md +7 -0
- package/.aios-core/development/tasks/dev-develop-story.md +9 -1
- package/.aios-core/development/tasks/execute-checklist.md +7 -0
- package/.aios-core/development/tasks/github-devops-github-pr-automation.md +56 -0
- package/.aios-core/development/tasks/github-devops-pre-push-quality-gate.md +70 -0
- package/.aios-core/development/tasks/github-issue-triage.md +118 -0
- package/.aios-core/development/tasks/health-check.yaml +206 -171
- package/.aios-core/development/tasks/kb-mode-interaction.md +3 -3
- package/.aios-core/development/tasks/plan-create-context.md +47 -1
- package/.aios-core/development/tasks/plan-create-implementation.md +55 -0
- package/.aios-core/development/tasks/po-close-story.md +7 -0
- package/.aios-core/development/tasks/pr-automation.md +5 -5
- package/.aios-core/development/tasks/qa-create-fix-request.md +7 -0
- package/.aios-core/development/tasks/qa-fix-issues.md +7 -0
- package/.aios-core/development/tasks/qa-gate.md +56 -0
- package/.aios-core/development/tasks/qa-review-story.md +32 -1
- package/.aios-core/development/tasks/release-management.md +7 -0
- package/.aios-core/development/tasks/resolve-github-issue.md +608 -0
- package/.aios-core/development/tasks/review-contributor-pr.md +152 -0
- package/.aios-core/development/tasks/setup-llm-routing.md +1 -1
- package/.aios-core/development/tasks/spec-critique.md +8 -0
- package/.aios-core/development/tasks/spec-gather-requirements.md +7 -0
- package/.aios-core/development/tasks/spec-research-dependencies.md +4 -0
- package/.aios-core/development/tasks/spec-write-spec.md +5 -0
- package/.aios-core/development/tasks/triage-github-issues.md +356 -0
- package/.aios-core/development/tasks/validate-agents.md +4 -0
- package/.aios-core/development/tasks/validate-next-story.md +17 -0
- package/.aios-core/development/templates/agent-handoff-tmpl.yaml +48 -0
- package/.aios-core/development/templates/code-intel-integration-pattern.md +199 -0
- package/.aios-core/development/templates/ptc-entity-validation.md +113 -0
- package/.aios-core/development/templates/ptc-qa-gate.md +100 -0
- package/.aios-core/development/templates/ptc-research-aggregation.md +94 -0
- package/.aios-core/development/templates/service-template/README.md.hbs +158 -158
- package/.aios-core/development/templates/service-template/__tests__/index.test.ts.hbs +237 -237
- package/.aios-core/development/templates/service-template/client.ts.hbs +403 -403
- package/.aios-core/development/templates/service-template/errors.ts.hbs +182 -182
- package/.aios-core/development/templates/service-template/index.ts.hbs +120 -120
- package/.aios-core/development/templates/service-template/package.json.hbs +87 -87
- package/.aios-core/development/templates/service-template/types.ts.hbs +145 -145
- package/.aios-core/development/templates/squad/agent-template.md +11 -0
- package/.aios-core/development/templates/squad/task-template.md +21 -0
- package/.aios-core/development/templates/squad-template/LICENSE +21 -21
- package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO-V2.1-COMPLETE.md +1 -1
- package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO-V2.2-SUMMARY.md +1 -1
- package/.aios-core/framework-config.yaml +8 -0
- package/.aios-core/index.esm.js +1 -1
- package/.aios-core/index.js +1 -1
- package/.aios-core/infrastructure/integrations/ai-providers/index.js +1 -1
- package/.aios-core/infrastructure/schemas/task-v3-schema.json +6 -0
- package/.aios-core/infrastructure/scripts/collect-tool-usage.js +311 -0
- package/.aios-core/infrastructure/scripts/generate-optimization-report.js +497 -0
- package/.aios-core/infrastructure/scripts/generate-settings-json.js +300 -0
- package/.aios-core/infrastructure/scripts/git-config-detector.js +65 -9
- package/.aios-core/infrastructure/scripts/ide-sync/index.js +3 -1
- package/.aios-core/infrastructure/scripts/ide-sync/transformers/github-copilot.js +184 -0
- package/.aios-core/infrastructure/scripts/repository-detector.js +3 -3
- package/.aios-core/infrastructure/templates/aios-sync.yaml.template +182 -182
- package/.aios-core/infrastructure/templates/coderabbit.yaml.template +279 -279
- package/.aios-core/infrastructure/templates/github-workflows/ci.yml.template +169 -169
- package/.aios-core/infrastructure/templates/github-workflows/pr-automation.yml.template +330 -330
- package/.aios-core/infrastructure/templates/github-workflows/release.yml.template +196 -196
- package/.aios-core/infrastructure/templates/gitignore/gitignore-aios-base.tmpl +63 -63
- package/.aios-core/infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl +18 -18
- package/.aios-core/infrastructure/templates/gitignore/gitignore-node.tmpl +85 -85
- package/.aios-core/infrastructure/templates/gitignore/gitignore-python.tmpl +145 -145
- package/.aios-core/install-manifest.yaml +613 -305
- package/.aios-core/lib/build.json +1 -0
- package/.aios-core/local-config.yaml.template +71 -71
- package/.aios-core/monitor/hooks/lib/__init__.py +1 -1
- package/.aios-core/monitor/hooks/lib/enrich.py +58 -58
- package/.aios-core/monitor/hooks/lib/send_event.py +47 -47
- package/.aios-core/monitor/hooks/notification.py +29 -29
- package/.aios-core/monitor/hooks/post_tool_use.py +45 -45
- package/.aios-core/monitor/hooks/pre_compact.py +29 -29
- package/.aios-core/monitor/hooks/pre_tool_use.py +40 -40
- package/.aios-core/monitor/hooks/stop.py +29 -29
- package/.aios-core/monitor/hooks/subagent_stop.py +29 -29
- package/.aios-core/monitor/hooks/user_prompt_submit.py +38 -38
- package/.aios-core/product/templates/adr.hbs +125 -125
- package/.aios-core/product/templates/dbdr.hbs +241 -241
- package/.aios-core/product/templates/epic.hbs +212 -212
- package/.aios-core/product/templates/ide-rules/claude-rules.md +125 -0
- package/.aios-core/product/templates/pmdr.hbs +186 -186
- package/.aios-core/product/templates/prd-v2.0.hbs +216 -216
- package/.aios-core/product/templates/prd.hbs +201 -201
- package/.aios-core/product/templates/story.hbs +263 -263
- package/.aios-core/product/templates/task.hbs +170 -170
- package/.aios-core/product/templates/tmpl-comment-on-examples.sql +158 -158
- package/.aios-core/product/templates/tmpl-migration-script.sql +91 -91
- package/.aios-core/product/templates/tmpl-rls-granular-policies.sql +104 -104
- package/.aios-core/product/templates/tmpl-rls-kiss-policy.sql +10 -10
- package/.aios-core/product/templates/tmpl-rls-roles.sql +135 -135
- package/.aios-core/product/templates/tmpl-rls-simple.sql +77 -77
- package/.aios-core/product/templates/tmpl-rls-tenant.sql +152 -152
- package/.aios-core/product/templates/tmpl-rollback-script.sql +77 -77
- package/.aios-core/product/templates/tmpl-seed-data.sql +140 -140
- package/.aios-core/product/templates/tmpl-smoke-test.sql +16 -16
- package/.aios-core/product/templates/tmpl-staging-copy-merge.sql +139 -139
- package/.aios-core/product/templates/tmpl-stored-proc.sql +140 -140
- package/.aios-core/product/templates/tmpl-trigger.sql +152 -152
- package/.aios-core/product/templates/tmpl-view-materialized.sql +133 -133
- package/.aios-core/product/templates/tmpl-view.sql +177 -177
- package/.aios-core/scripts/pm.sh +0 -0
- package/.aios-core/user-guide.md +15 -15
- package/.aios-core/utils/filters/constants.js +10 -0
- package/.aios-core/utils/filters/content-filter.js +223 -0
- package/.aios-core/utils/filters/field-filter.js +126 -0
- package/.aios-core/utils/filters/index.js +180 -0
- package/.aios-core/utils/filters/schema-filter.js +157 -0
- package/.claude/CLAUDE.md +62 -0
- package/.claude/hooks/enforce-architecture-first.py +196 -196
- package/.claude/hooks/enforce-git-push-authority.sh +33 -0
- package/.claude/hooks/mind-clone-governance.py +192 -192
- package/.claude/hooks/read-protection.py +151 -151
- package/.claude/hooks/slug-validation.py +176 -176
- package/.claude/hooks/sql-governance.py +182 -182
- package/.claude/hooks/synapse-engine.cjs +28 -5
- package/.claude/hooks/write-path-validation.py +194 -194
- package/.claude/rules/agent-authority.md +105 -0
- package/.claude/rules/agent-handoff.md +97 -0
- package/.claude/rules/agent-memory-imports.md +15 -0
- package/.claude/rules/coderabbit-integration.md +101 -0
- package/.claude/rules/ids-principles.md +119 -0
- package/.claude/rules/story-lifecycle.md +145 -0
- package/.claude/rules/tool-examples.md +64 -0
- package/.claude/rules/tool-response-filtering.md +57 -0
- package/.claude/rules/workflow-execution.md +150 -0
- package/LICENSE +33 -33
- package/bin/aios-graph.js +9 -0
- package/bin/aios-init.js +2 -2
- package/bin/aios-minimal.js +0 -0
- package/bin/aios.js +17 -221
- package/bin/utils/detect-fsmonitor.js +70 -0
- package/bin/utils/framework-guard.js +238 -0
- package/bin/utils/validate-publish.js +108 -0
- package/package.json +6 -3
- package/packages/aios-install/bin/aios-install.js +0 -0
- package/packages/aios-install/bin/edmcp.js +0 -0
- package/packages/aios-pro-cli/bin/aios-pro.js +2 -0
- package/packages/installer/src/config/templates/core-config-template.js +25 -0
- package/packages/installer/src/installer/brownfield-upgrader.js +68 -5
- package/packages/installer/src/merger/index.js +3 -0
- package/packages/installer/src/merger/strategies/index.js +6 -0
- package/packages/installer/src/merger/strategies/yaml-merger.js +181 -0
- package/packages/installer/src/updater/index.js +4 -4
- package/packages/installer/src/wizard/i18n.js +321 -3
- package/packages/installer/src/wizard/ide-config-generator.js +173 -25
- package/packages/installer/src/wizard/index.js +119 -1
- package/packages/installer/src/wizard/pro-setup.js +137 -121
- package/packages/installer/tests/unit/artifact-copy-pipeline/artifact-copy-pipeline.test.js +271 -0
- package/packages/installer/tests/unit/claude-md-template-v5/claude-md-template-v5.test.js +192 -0
- package/packages/installer/tests/unit/doctor/doctor-checks.test.js +610 -0
- package/packages/installer/tests/unit/doctor/doctor-orchestrator.test.js +134 -0
- package/packages/installer/tests/unit/entity-registry-bootstrap.test.js +186 -0
- package/packages/installer/tests/unit/generate-settings-json/generate-settings-json.test.js +309 -0
- package/packages/installer/tests/unit/ide-sync-integration/ide-sync-integration.test.js +230 -0
- package/packages/installer/tests/unit/merger/strategies.test.js +2 -2
- package/packages/installer/tests/unit/merger/yaml-merger.test.js +327 -0
- package/scripts/check-markdown-links.py +352 -352
- package/scripts/dashboard-parallel-dev.sh +0 -0
- package/scripts/dashboard-parallel-phase3.sh +0 -0
- package/scripts/dashboard-parallel-phase4.sh +0 -0
- package/scripts/install-monitor-hooks.sh +0 -0
- package/scripts/package-synapse.js +2 -1
- package/pro/README.md +0 -66
- package/pro/license/degradation.js +0 -220
- package/pro/license/errors.js +0 -450
- package/pro/license/feature-gate.js +0 -354
- package/pro/license/index.js +0 -181
- package/pro/license/license-api.js +0 -651
- package/pro/license/license-cache.js +0 -523
- package/pro/license/license-crypto.js +0 -303
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
---
|
|
2
|
+
paths:
|
|
3
|
+
- ".aios-core/**"
|
|
4
|
+
- "tests/**"
|
|
5
|
+
- "packages/**"
|
|
6
|
+
- "bin/**"
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# CodeRabbit Integration — Detailed Rules
|
|
10
|
+
|
|
11
|
+
## Self-Healing Configuration
|
|
12
|
+
|
|
13
|
+
### Dev Phase (@dev — Story Development Cycle Phase 3)
|
|
14
|
+
|
|
15
|
+
```yaml
|
|
16
|
+
mode: light
|
|
17
|
+
max_iterations: 2
|
|
18
|
+
timeout_minutes: 30
|
|
19
|
+
severity_filter: [CRITICAL, HIGH]
|
|
20
|
+
behavior:
|
|
21
|
+
CRITICAL: auto_fix
|
|
22
|
+
HIGH: auto_fix (iteration < 2) else document_as_debt
|
|
23
|
+
MEDIUM: document_as_debt
|
|
24
|
+
LOW: ignore
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
**Flow:**
|
|
28
|
+
```
|
|
29
|
+
RUN CodeRabbit → CRITICAL found?
|
|
30
|
+
YES → auto-fix (iteration < 2) → Re-run
|
|
31
|
+
NO → Document HIGH as debt, proceed
|
|
32
|
+
After 2 iterations with CRITICAL → HALT, manual intervention
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### QA Phase (@qa — QA Loop Pre-Review)
|
|
36
|
+
|
|
37
|
+
```yaml
|
|
38
|
+
mode: full
|
|
39
|
+
max_iterations: 3
|
|
40
|
+
timeout_minutes: 30
|
|
41
|
+
severity_filter: [CRITICAL, HIGH]
|
|
42
|
+
behavior:
|
|
43
|
+
CRITICAL: auto_fix
|
|
44
|
+
HIGH: auto_fix
|
|
45
|
+
MEDIUM: document_as_debt
|
|
46
|
+
LOW: ignore
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
**Flow:**
|
|
50
|
+
1. Pre-commit review scan
|
|
51
|
+
2. Self-healing loop (max 3 iterations)
|
|
52
|
+
3. Manual QA analysis (architectural, traceability, NFR)
|
|
53
|
+
4. Gate decision (verdict)
|
|
54
|
+
|
|
55
|
+
## Severity Handling Summary
|
|
56
|
+
|
|
57
|
+
| Severity | Dev Phase | QA Phase |
|
|
58
|
+
|----------|-----------|----------|
|
|
59
|
+
| CRITICAL | auto_fix, block if persists | auto_fix, block if persists |
|
|
60
|
+
| HIGH | auto_fix, document if fails | auto_fix, document if fails |
|
|
61
|
+
| MEDIUM | document_as_tech_debt | document_as_tech_debt |
|
|
62
|
+
| LOW | ignore | ignore |
|
|
63
|
+
|
|
64
|
+
## WSL Execution (Windows)
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
# Self-healing mode (automatic in dev tasks)
|
|
68
|
+
wsl bash -c 'cd /mnt/c/.../aios-core && ~/.local/bin/coderabbit --severity CRITICAL,HIGH --auto-fix'
|
|
69
|
+
|
|
70
|
+
# Manual review
|
|
71
|
+
wsl bash -c 'cd /mnt/c/.../aios-core && ~/.local/bin/coderabbit -t uncommitted'
|
|
72
|
+
|
|
73
|
+
# Prompt-only mode
|
|
74
|
+
wsl bash -c 'cd /mnt/c/.../aios-core && ~/.local/bin/coderabbit --prompt-only -t uncommitted'
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
## Integration Points
|
|
78
|
+
|
|
79
|
+
| Workflow | Phase | Trigger | Agent |
|
|
80
|
+
|----------|-------|---------|-------|
|
|
81
|
+
| Story Development Cycle | 3 (Implement) | After task completion | @dev |
|
|
82
|
+
| QA Loop | 1 (Review) | At review start | @qa |
|
|
83
|
+
| Standalone | Any | `*coderabbit-review` command | Any |
|
|
84
|
+
|
|
85
|
+
## Focus Areas by Story Type
|
|
86
|
+
|
|
87
|
+
| Story Type | Primary Focus |
|
|
88
|
+
|-----------|--------------|
|
|
89
|
+
| Feature | Code patterns, test coverage, API design |
|
|
90
|
+
| Bug Fix | Regression risk, root cause coverage |
|
|
91
|
+
| Refactor | Breaking changes, interface stability |
|
|
92
|
+
| Documentation | Markdown quality, reference validity |
|
|
93
|
+
| Database | SQL injection, RLS coverage, migration safety |
|
|
94
|
+
|
|
95
|
+
## Report Location
|
|
96
|
+
|
|
97
|
+
CodeRabbit reports saved to: `docs/qa/coderabbit-reports/`
|
|
98
|
+
|
|
99
|
+
## Configuration Reference
|
|
100
|
+
|
|
101
|
+
Full config in `.aios-core/core-config.yaml` under `coderabbit_integration` section.
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
---
|
|
2
|
+
paths:
|
|
3
|
+
- ".aios-core/**"
|
|
4
|
+
- "packages/**"
|
|
5
|
+
- "bin/**"
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# IDS Principles — Detailed Rules
|
|
9
|
+
|
|
10
|
+
> Status: Planned (IDS epic is Draft — principles apply as aspirational guidance)
|
|
11
|
+
|
|
12
|
+
## Decision Hierarchy: REUSE > ADAPT > CREATE
|
|
13
|
+
|
|
14
|
+
### REUSE (Relevance >= 90%)
|
|
15
|
+
- Use existing artifact directly without modification
|
|
16
|
+
- Import/reference existing entity
|
|
17
|
+
- No justification needed beyond confirming match
|
|
18
|
+
|
|
19
|
+
### ADAPT (Relevance 60-89%)
|
|
20
|
+
- Adaptability score >= 0.6
|
|
21
|
+
- Changes MUST NOT exceed 30% of original artifact
|
|
22
|
+
- Changes MUST NOT break existing consumers (check usedBy list)
|
|
23
|
+
- Document changes in artifact's change log
|
|
24
|
+
- Update registry relationships
|
|
25
|
+
- Impact analysis required
|
|
26
|
+
|
|
27
|
+
### CREATE (No suitable match)
|
|
28
|
+
Required justification:
|
|
29
|
+
- `evaluated_patterns`: Existing entities you considered
|
|
30
|
+
- `rejection_reasons`: Why each was rejected (technical reasons)
|
|
31
|
+
- `new_capability`: What unique capability this provides
|
|
32
|
+
- Register in Entity Registry within 24 hours
|
|
33
|
+
- Establish relationships with existing entities
|
|
34
|
+
- Define adaptability constraints for future reuse
|
|
35
|
+
|
|
36
|
+
## Verification Gates G1-G6
|
|
37
|
+
|
|
38
|
+
### G1: Epic Creation (@pm)
|
|
39
|
+
- **Type:** Human-in-loop, Advisory
|
|
40
|
+
- **Trigger:** `*create-epic` workflow
|
|
41
|
+
- **Action:** Query registry for related entities, display potentially reusable artifacts
|
|
42
|
+
- **Latency:** < 24h (async)
|
|
43
|
+
- **Blocking:** No
|
|
44
|
+
|
|
45
|
+
### G2: Story Creation (@sm)
|
|
46
|
+
- **Type:** Human-in-loop, Advisory
|
|
47
|
+
- **Trigger:** `*draft` workflow
|
|
48
|
+
- **Action:** Check existing tasks/templates matching story work
|
|
49
|
+
- **Latency:** < 24h (async)
|
|
50
|
+
- **Blocking:** No
|
|
51
|
+
|
|
52
|
+
### G3: Story Validation (@po)
|
|
53
|
+
- **Type:** Human-in-loop, Soft Block
|
|
54
|
+
- **Trigger:** `*validate-story-draft` workflow
|
|
55
|
+
- **Action:** Verify referenced artifacts exist, detect potential duplication
|
|
56
|
+
- **Latency:** < 4h (async)
|
|
57
|
+
- **Blocking:** Soft (can override with reason)
|
|
58
|
+
|
|
59
|
+
### G4: Dev Context (@dev)
|
|
60
|
+
- **Type:** Automated, Informational
|
|
61
|
+
- **Trigger:** Story assignment / `*develop` start
|
|
62
|
+
- **Action:** Display matching patterns as reminder
|
|
63
|
+
- **Latency:** < 2s
|
|
64
|
+
- **Blocking:** NO (logged only for metrics)
|
|
65
|
+
|
|
66
|
+
### G5: QA Review (@qa)
|
|
67
|
+
- **Type:** Automated, Blocks Merge
|
|
68
|
+
- **Trigger:** PR/merge request
|
|
69
|
+
- **Action:** Check if new artifacts could have reused existing
|
|
70
|
+
- **Latency:** < 30s
|
|
71
|
+
- **Blocking:** YES if new entity without registry entry or justification
|
|
72
|
+
|
|
73
|
+
### G6: CI/CD (@devops)
|
|
74
|
+
- **Type:** Automated, Blocks Merge
|
|
75
|
+
- **Trigger:** CI pipeline
|
|
76
|
+
- **Action:** Registry integrity check + sync
|
|
77
|
+
- **Latency:** < 60s
|
|
78
|
+
- **Blocking:** YES on CRITICAL, WARN on MEDIUM/LOW
|
|
79
|
+
|
|
80
|
+
## Override Policy
|
|
81
|
+
|
|
82
|
+
**Command:** `--override-ids --override-reason "explanation"`
|
|
83
|
+
|
|
84
|
+
**Permitted when:**
|
|
85
|
+
- Time-critical fix requires immediate creation
|
|
86
|
+
- Adaptation would introduce unacceptable risk
|
|
87
|
+
- Existing artifact is deprecated/frozen
|
|
88
|
+
|
|
89
|
+
**Requirements:**
|
|
90
|
+
- Logged for audit trail
|
|
91
|
+
- Reviewed within 7 days
|
|
92
|
+
- Include override reason in gate verification log
|
|
93
|
+
|
|
94
|
+
## Graceful Degradation
|
|
95
|
+
|
|
96
|
+
All gates implement circuit breaker:
|
|
97
|
+
- **Timeout:** 2s default
|
|
98
|
+
- **On timeout:** warn-and-proceed
|
|
99
|
+
- **On error:** log-and-proceed
|
|
100
|
+
- **Key principle:** Development NEVER blocked by IDS failures
|
|
101
|
+
|
|
102
|
+
```yaml
|
|
103
|
+
circuit_breaker:
|
|
104
|
+
failure_threshold: 5
|
|
105
|
+
success_threshold: 3
|
|
106
|
+
reset_timeout_ms: 60000
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
## Article IV-A: Incremental Development (Constitution Amendment)
|
|
110
|
+
|
|
111
|
+
**Severity:** MUST
|
|
112
|
+
|
|
113
|
+
**Four Core Rules:**
|
|
114
|
+
1. **Registry Consultation Required** — Query before creating
|
|
115
|
+
2. **Decision Hierarchy** — REUSE > ADAPT > CREATE strictly
|
|
116
|
+
3. **Adaptation Limits** — Changes < 30%, don't break consumers
|
|
117
|
+
4. **Creation Requirements** — Full justification, register within 24h
|
|
118
|
+
|
|
119
|
+
**Reference:** `docs/stories/epics/epic-ids-incremental-development/`
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
---
|
|
2
|
+
paths:
|
|
3
|
+
- "docs/stories/**"
|
|
4
|
+
- ".aios-core/development/**"
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Story Lifecycle — Detailed Rules
|
|
8
|
+
|
|
9
|
+
## Status Progression
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
Draft → Ready → InProgress → InReview → Done
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
| Status | Trigger | Agent | Action |
|
|
16
|
+
|--------|---------|-------|--------|
|
|
17
|
+
| Draft | @sm creates story | @sm | Story file created |
|
|
18
|
+
| Ready | @po validates (GO) | @po | **MUST update status field in story file from Draft → Ready** |
|
|
19
|
+
| InProgress | @dev starts implementation | @dev | Update status field |
|
|
20
|
+
| InReview | @dev completes, @qa reviews | @qa | Update status field |
|
|
21
|
+
| Done | @qa PASS, @devops pushes | @devops | Update status field |
|
|
22
|
+
|
|
23
|
+
**CRITICAL:** The `Draft → Ready` transition is the responsibility of @po during `*validate-story-draft`. When verdict is GO (including conditional GO after fixes are applied), @po MUST update the story's Status field to `Ready` and log the transition in the Change Log. A story left in `Draft` after a GO verdict is a process violation.
|
|
24
|
+
|
|
25
|
+
## Phase 1: Create (@sm)
|
|
26
|
+
|
|
27
|
+
**Task:** `create-next-story.md`
|
|
28
|
+
**Inputs:** PRD sharded, epic context
|
|
29
|
+
**Output:** `{epicNum}.{storyNum}.story.md`
|
|
30
|
+
|
|
31
|
+
## Phase 2: Validate (@po)
|
|
32
|
+
|
|
33
|
+
**Task:** `validate-next-story.md`
|
|
34
|
+
|
|
35
|
+
### 10-Point Validation Checklist
|
|
36
|
+
|
|
37
|
+
1. Clear and objective title
|
|
38
|
+
2. Complete description (problem/need explained)
|
|
39
|
+
3. Testable acceptance criteria (Given/When/Then preferred)
|
|
40
|
+
4. Well-defined scope (IN and OUT clearly listed)
|
|
41
|
+
5. Dependencies mapped (prerequisite stories/resources)
|
|
42
|
+
6. Complexity estimate (points or T-shirt sizing)
|
|
43
|
+
7. Business value (benefit to user/business clear)
|
|
44
|
+
8. Risks documented (potential problems identified)
|
|
45
|
+
9. Criteria of Done (clear definition of complete)
|
|
46
|
+
10. Alignment with PRD/Epic (consistency with source docs)
|
|
47
|
+
|
|
48
|
+
**Decision:** GO (≥7/10) or NO-GO (<7/10 with required fixes)
|
|
49
|
+
|
|
50
|
+
## Phase 3: Implement (@dev)
|
|
51
|
+
|
|
52
|
+
**Task:** `dev-develop-story.md`
|
|
53
|
+
|
|
54
|
+
### Execution Modes
|
|
55
|
+
|
|
56
|
+
**YOLO (autonomous):**
|
|
57
|
+
- 0-1 prompts
|
|
58
|
+
- Decisions logged in `decision-log-{story-id}.md`
|
|
59
|
+
- Best for: simple, deterministic tasks
|
|
60
|
+
|
|
61
|
+
**Interactive (default):**
|
|
62
|
+
- 5-10 prompts with educational checkpoints
|
|
63
|
+
- Confirmations at key decision points
|
|
64
|
+
- Best for: learning, complex decisions
|
|
65
|
+
|
|
66
|
+
**Pre-Flight (plan-first):**
|
|
67
|
+
- All questions upfront (10-15 prompts)
|
|
68
|
+
- Generates execution plan
|
|
69
|
+
- Then zero-ambiguity execution
|
|
70
|
+
- Best for: ambiguous requirements, critical work
|
|
71
|
+
|
|
72
|
+
### CodeRabbit Self-Healing in Dev Phase
|
|
73
|
+
|
|
74
|
+
```
|
|
75
|
+
iteration = 0
|
|
76
|
+
while CRITICAL issues found AND iteration < 2:
|
|
77
|
+
auto-fix CRITICAL/HIGH
|
|
78
|
+
iteration++
|
|
79
|
+
if CRITICAL persist after 2 iterations:
|
|
80
|
+
HALT — manual intervention required
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
## Phase 4: QA Gate (@qa)
|
|
84
|
+
|
|
85
|
+
**Task:** `qa-gate.md`
|
|
86
|
+
|
|
87
|
+
### 7 Quality Checks
|
|
88
|
+
|
|
89
|
+
1. **Code review** — patterns, readability, maintainability
|
|
90
|
+
2. **Unit tests** — adequate coverage, all passing
|
|
91
|
+
3. **Acceptance criteria** — all met per story AC
|
|
92
|
+
4. **No regressions** — existing functionality preserved
|
|
93
|
+
5. **Performance** — within acceptable limits
|
|
94
|
+
6. **Security** — OWASP basics verified
|
|
95
|
+
7. **Documentation** — updated if necessary
|
|
96
|
+
|
|
97
|
+
### Gate Decisions
|
|
98
|
+
|
|
99
|
+
| Decision | Score | Action |
|
|
100
|
+
|----------|-------|--------|
|
|
101
|
+
| PASS | All checks OK | Approve, proceed to @devops push |
|
|
102
|
+
| CONCERNS | Minor issues | Approve with observations documented |
|
|
103
|
+
| FAIL | HIGH/CRITICAL issues | Return to @dev with feedback |
|
|
104
|
+
| WAIVED | Issues accepted | Approve with waiver documented (rare) |
|
|
105
|
+
|
|
106
|
+
### Gate File Structure
|
|
107
|
+
|
|
108
|
+
```yaml
|
|
109
|
+
storyId: STORY-42
|
|
110
|
+
verdict: PASS | CONCERNS | FAIL | WAIVED
|
|
111
|
+
issues:
|
|
112
|
+
- severity: low | medium | high
|
|
113
|
+
category: code | tests | requirements | performance | security | docs
|
|
114
|
+
description: "..."
|
|
115
|
+
recommendation: "..."
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
## QA Loop (Iterative Review-Fix)
|
|
119
|
+
|
|
120
|
+
```
|
|
121
|
+
@qa review → verdict → @dev fixes → re-review (max 5 iterations)
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
**Commands:**
|
|
125
|
+
- `*qa-loop {storyId}` — Start full loop
|
|
126
|
+
- `*stop-qa-loop` — Pause and save state
|
|
127
|
+
- `*resume-qa-loop` — Resume from saved state
|
|
128
|
+
- `*escalate-qa-loop` — Force manual escalation
|
|
129
|
+
|
|
130
|
+
**Escalation triggers:**
|
|
131
|
+
- max_iterations_reached (default: 5)
|
|
132
|
+
- verdict_blocked
|
|
133
|
+
- fix_failure (after retries)
|
|
134
|
+
- manual_escalate (user command)
|
|
135
|
+
|
|
136
|
+
**Status:** Tracked in `qa/loop-status.json`
|
|
137
|
+
|
|
138
|
+
## Story File Update Rules
|
|
139
|
+
|
|
140
|
+
| Section | Who Can Edit |
|
|
141
|
+
|---------|-------------|
|
|
142
|
+
| Title, Description, AC, Scope | @po only |
|
|
143
|
+
| File List, Dev Notes, checkboxes | @dev |
|
|
144
|
+
| QA Results | @qa only |
|
|
145
|
+
| Change Log | Any agent (append only) |
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# Tool Input Examples — Selection Guidance
|
|
2
|
+
|
|
3
|
+
## Purpose
|
|
4
|
+
|
|
5
|
+
Improve tool selection accuracy by providing concrete input examples for the most-used tools. When choosing which tool to use, reference these examples to match the current task to the correct tool.
|
|
6
|
+
|
|
7
|
+
## ADR-5 Compliance
|
|
8
|
+
|
|
9
|
+
These examples apply ONLY to always-loaded (Tier 1/2) and essential Tier 3 tools. Non-essential Tier 3 tools are discovered via tool search — do NOT reference examples for them.
|
|
10
|
+
|
|
11
|
+
## Tool Examples
|
|
12
|
+
|
|
13
|
+
### context7 — Library Documentation Lookup
|
|
14
|
+
Use when you need up-to-date documentation for a library or framework.
|
|
15
|
+
- **React docs:** `resolve-library-id("react")` then `get-library-docs` with topic "server components"
|
|
16
|
+
- **Supabase RLS:** `resolve-library-id("supabase")` then `get-library-docs` with topic "row level security"
|
|
17
|
+
- **Jest mocks:** `resolve-library-id("jest")` then `get-library-docs` with topic "mock functions"
|
|
18
|
+
|
|
19
|
+
### git — Version Control
|
|
20
|
+
Use for repository state, history, and branch management.
|
|
21
|
+
- **Check changes:** `git diff --stat` — file-level summary of uncommitted changes
|
|
22
|
+
- **Recent history:** `git log --oneline -10` — last 10 commits with conventional messages
|
|
23
|
+
- **Branch comparison:** `git diff main...HEAD --stat` — all changes since branching from main
|
|
24
|
+
|
|
25
|
+
### coderabbit — Automated Code Review
|
|
26
|
+
Use before commits and PRs for quality validation. Runs in WSL.
|
|
27
|
+
- **Pre-commit:** `wsl bash -c 'cd /mnt/c/.../aios-core && ~/.local/bin/coderabbit --prompt-only -t uncommitted'`
|
|
28
|
+
- **Pre-PR:** `wsl bash -c 'cd /mnt/c/.../aios-core && ~/.local/bin/coderabbit --prompt-only --base main'`
|
|
29
|
+
|
|
30
|
+
### browser — Web Testing
|
|
31
|
+
Use for UI validation, console checks, and web interaction.
|
|
32
|
+
- **Navigate:** Open `http://localhost:3000` to inspect the running app
|
|
33
|
+
- **Console check:** Navigate to a page and check for JavaScript errors/warnings
|
|
34
|
+
|
|
35
|
+
### supabase — Database Operations
|
|
36
|
+
Use for migrations and database management.
|
|
37
|
+
- **Apply migrations:** `supabase db push`
|
|
38
|
+
- **Check status:** `supabase migration list`
|
|
39
|
+
|
|
40
|
+
### github-cli — GitHub Operations
|
|
41
|
+
Use for PRs, issues, and repository management. `@devops` exclusive for push/PR.
|
|
42
|
+
- **Create PR:** `gh pr create --title 'feat: ...' --body '## Summary...'`
|
|
43
|
+
- **List issues:** `gh issue list --state open --label bug`
|
|
44
|
+
- **PR status:** `gh pr view 123 --json reviews,statusCheckRollup`
|
|
45
|
+
|
|
46
|
+
### nogic — Code Intelligence (Essential)
|
|
47
|
+
Use for code analysis, dependency tracking, and usage patterns.
|
|
48
|
+
- **Dependencies:** Analyze import chain for a specific module
|
|
49
|
+
- **Usages:** Find all locations where a function is called
|
|
50
|
+
|
|
51
|
+
### code-graph — Dependency Analysis (Essential)
|
|
52
|
+
Use for dependency graphs and circular dependency detection.
|
|
53
|
+
- **Dependency tree:** Generate graph for a package with configurable depth
|
|
54
|
+
- **Circular check:** Detect circular dependency chains in the project
|
|
55
|
+
|
|
56
|
+
### docker-gateway — MCP Infrastructure
|
|
57
|
+
Use for managing Docker-based MCP servers. `@devops` manages infrastructure.
|
|
58
|
+
- **Health check:** `curl http://localhost:8080/health`
|
|
59
|
+
- **List servers:** `docker mcp server ls`
|
|
60
|
+
|
|
61
|
+
## Reference
|
|
62
|
+
|
|
63
|
+
Full examples registry: `.aios-core/data/mcp-tool-examples.yaml`
|
|
64
|
+
Tool registry: `.aios-core/data/tool-registry.yaml`
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
---
|
|
2
|
+
paths:
|
|
3
|
+
- .aios-core/data/tool-registry.yaml
|
|
4
|
+
- .mcp.json
|
|
5
|
+
---
|
|
6
|
+
# Tool Response Filtering — Dynamic Token Reduction
|
|
7
|
+
|
|
8
|
+
When processing responses from MCP tools or large web fetches, apply the filter
|
|
9
|
+
configuration defined in `.aios-core/data/tool-registry.yaml` for the tool that
|
|
10
|
+
produced the response. This reduces context token consumption without losing
|
|
11
|
+
task-relevant information.
|
|
12
|
+
|
|
13
|
+
## Filter Types
|
|
14
|
+
|
|
15
|
+
### content
|
|
16
|
+
Extract the main informational content and discard noise (navigation, ads,
|
|
17
|
+
boilerplate, repetitive headers/footers). Limit the extracted output to
|
|
18
|
+
approximately `max_tokens` tokens, truncating at a natural paragraph or
|
|
19
|
+
sentence boundary. If `extract` fields are specified, prioritize those
|
|
20
|
+
fields from the response object.
|
|
21
|
+
|
|
22
|
+
**Apply to:** WebFetch HTML responses, EXA search results, Context7 docs.
|
|
23
|
+
|
|
24
|
+
### schema
|
|
25
|
+
From a JSON object or array of objects, select ONLY the fields listed in
|
|
26
|
+
`fields`. Discard all other keys. If `max_tokens` is set, truncate the
|
|
27
|
+
serialized result at that token limit.
|
|
28
|
+
|
|
29
|
+
**Apply to:** Playwright page data, API responses with known schemas.
|
|
30
|
+
|
|
31
|
+
### field
|
|
32
|
+
From an array of objects (tabular data), project ONLY the columns listed
|
|
33
|
+
in `fields` and limit the result to `max_rows` rows. This is analogous to
|
|
34
|
+
`SELECT field1, field2 FROM data LIMIT max_rows`.
|
|
35
|
+
|
|
36
|
+
**Apply to:** Apify scraper results, database query results, CSV-like data.
|
|
37
|
+
|
|
38
|
+
## How to Apply
|
|
39
|
+
|
|
40
|
+
1. After receiving a tool response, identify the tool name.
|
|
41
|
+
2. Look up the tool in `tool-registry.yaml` → check for a `filter` key.
|
|
42
|
+
3. If a filter exists, apply the corresponding type rules above.
|
|
43
|
+
4. If NO filter exists for the tool, use the full response as-is.
|
|
44
|
+
5. Present the filtered result in your reasoning — do NOT repeat the raw
|
|
45
|
+
unfiltered payload.
|
|
46
|
+
|
|
47
|
+
## Fallback
|
|
48
|
+
|
|
49
|
+
If the filter would remove ALL content (empty result), fall back to the
|
|
50
|
+
full unfiltered response. Never produce an empty result from filtering.
|
|
51
|
+
|
|
52
|
+
## Performance Note
|
|
53
|
+
|
|
54
|
+
This is a zero-overhead optimization. The filter is applied during your
|
|
55
|
+
reasoning step — no external scripts are invoked. The utility scripts at
|
|
56
|
+
`.aios-core/utils/filters/` are available for batch post-processing of
|
|
57
|
+
saved responses but are NOT required during normal tool use.
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
# Workflow Execution — Detailed Rules
|
|
2
|
+
|
|
3
|
+
## Task-First Principle
|
|
4
|
+
|
|
5
|
+
**Workflows são compostos por tasks conectadas, não por agentes conectados.** Cada task define seus inputs, outputs, pre/post-conditions e execution modes. Os agentes listados abaixo são os **executores padrão** de cada task — mas a sequência, as regras e as dependências vêm das definições de tasks em `.aios-core/development/tasks/`.
|
|
6
|
+
|
|
7
|
+
Uma task validada é lei: deve ser executada conforme configurada, com todas as suas dependências respeitadas, independente de quem a executa (agent, worker, clone ou humano).
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## 4 Primary Workflows
|
|
12
|
+
|
|
13
|
+
### 1. Story Development Cycle (SDC) — PRIMARY
|
|
14
|
+
|
|
15
|
+
**Full 4-phase workflow for all development work.**
|
|
16
|
+
|
|
17
|
+
#### Phase 1: Create (@sm)
|
|
18
|
+
- **Task:** `create-next-story.md`
|
|
19
|
+
- **Inputs:** PRD sharded, epic context
|
|
20
|
+
- **Output:** `{epicNum}.{storyNum}.story.md`
|
|
21
|
+
- **Status:** Draft
|
|
22
|
+
|
|
23
|
+
#### Phase 2: Validate (@po)
|
|
24
|
+
- **Task:** `validate-next-story.md`
|
|
25
|
+
- **10-point checklist** (see `story-lifecycle.md`)
|
|
26
|
+
- **Decision:** GO (>=7) or NO-GO (required fixes listed)
|
|
27
|
+
|
|
28
|
+
#### Phase 3: Implement (@dev)
|
|
29
|
+
- **Task:** `dev-develop-story.md`
|
|
30
|
+
- **Modes:** Interactive / YOLO / Pre-Flight
|
|
31
|
+
- **CodeRabbit:** Self-healing max 2 iterations
|
|
32
|
+
- **Status:** Ready → InProgress
|
|
33
|
+
|
|
34
|
+
#### Phase 4: QA Gate (@qa)
|
|
35
|
+
- **Task:** `qa-gate.md`
|
|
36
|
+
- **7 quality checks** (see `story-lifecycle.md`)
|
|
37
|
+
- **Decision:** PASS / CONCERNS / FAIL / WAIVED
|
|
38
|
+
- **Status:** InProgress → InReview → Done
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
### 2. QA Loop — ITERATIVE REVIEW
|
|
43
|
+
|
|
44
|
+
**Automated review-fix cycle after initial QA gate.**
|
|
45
|
+
|
|
46
|
+
```
|
|
47
|
+
@qa review → verdict → @dev fixes → re-review (max 5)
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
**Commands:**
|
|
51
|
+
- `*qa-loop {storyId}` — Start loop
|
|
52
|
+
- `*qa-loop-review` — Resume from review
|
|
53
|
+
- `*qa-loop-fix` — Resume from fix
|
|
54
|
+
- `*stop-qa-loop` — Pause, save state
|
|
55
|
+
- `*resume-qa-loop` — Resume from state
|
|
56
|
+
- `*escalate-qa-loop` — Force escalation
|
|
57
|
+
|
|
58
|
+
**Config:**
|
|
59
|
+
- Max iterations: 5 (`autoClaude.qaLoop.maxIterations`)
|
|
60
|
+
- Status file: `qa/loop-status.json`
|
|
61
|
+
|
|
62
|
+
**Verdicts:**
|
|
63
|
+
- APPROVE → Complete, mark Done
|
|
64
|
+
- REJECT → @dev fixes, re-review
|
|
65
|
+
- BLOCKED → Escalate immediately
|
|
66
|
+
|
|
67
|
+
**Escalation triggers:**
|
|
68
|
+
- `max_iterations_reached`
|
|
69
|
+
- `verdict_blocked`
|
|
70
|
+
- `fix_failure`
|
|
71
|
+
- `manual_escalate`
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
### 3. Spec Pipeline — PRE-IMPLEMENTATION
|
|
76
|
+
|
|
77
|
+
**Transform informal requirements into executable spec.**
|
|
78
|
+
|
|
79
|
+
| Phase | Agent | Output | Skip If |
|
|
80
|
+
|-------|-------|--------|---------|
|
|
81
|
+
| 1. Gather | @pm | `requirements.json` | Never |
|
|
82
|
+
| 2. Assess | @architect | `complexity.json` | source=simple |
|
|
83
|
+
| 3. Research | @analyst | `research.json` | SIMPLE class |
|
|
84
|
+
| 4. Write Spec | @pm | `spec.md` | Never |
|
|
85
|
+
| 5. Critique | @qa | `critique.json` | Never |
|
|
86
|
+
| 6. Plan | @architect | `implementation.yaml` | If APPROVED |
|
|
87
|
+
|
|
88
|
+
**Complexity Classes:**
|
|
89
|
+
|
|
90
|
+
| Score | Class | Phases |
|
|
91
|
+
|-------|-------|--------|
|
|
92
|
+
| <= 8 | SIMPLE | gather → spec → critique (3) |
|
|
93
|
+
| 9-15 | STANDARD | All 6 phases |
|
|
94
|
+
| >= 16 | COMPLEX | 6 phases + revision cycle |
|
|
95
|
+
|
|
96
|
+
**5 Complexity Dimensions (scored 1-5):**
|
|
97
|
+
- **Scope:** Files affected
|
|
98
|
+
- **Integration:** External APIs
|
|
99
|
+
- **Infrastructure:** Changes needed
|
|
100
|
+
- **Knowledge:** Team familiarity
|
|
101
|
+
- **Risk:** Criticality level
|
|
102
|
+
|
|
103
|
+
**Critique Verdicts:**
|
|
104
|
+
|
|
105
|
+
| Verdict | Average Score | Next Step |
|
|
106
|
+
|---------|--------------|-----------|
|
|
107
|
+
| APPROVED | >= 4.0 | Plan (Phase 6) |
|
|
108
|
+
| NEEDS_REVISION | 3.0-3.9 | Revise (Phase 5b) |
|
|
109
|
+
| BLOCKED | < 3.0 | Escalate to @architect |
|
|
110
|
+
|
|
111
|
+
**Constitutional Gate (Article IV — No Invention):**
|
|
112
|
+
Every statement in spec.md MUST trace to FR-*, NFR-*, CON-*, or research finding. NO invented features.
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
### 4. Brownfield Discovery — LEGACY ASSESSMENT
|
|
117
|
+
|
|
118
|
+
**10-phase technical debt assessment for existing codebases.**
|
|
119
|
+
|
|
120
|
+
**Data Collection (Phases 1-3):**
|
|
121
|
+
- Phase 1: @architect → `system-architecture.md`
|
|
122
|
+
- Phase 2: @data-engineer → `SCHEMA.md` + `DB-AUDIT.md` (if DB exists)
|
|
123
|
+
- Phase 3: @ux-design-expert → `frontend-spec.md`
|
|
124
|
+
|
|
125
|
+
**Draft & Validation (Phases 4-7):**
|
|
126
|
+
- Phase 4: @architect → `technical-debt-DRAFT.md`
|
|
127
|
+
- Phase 5: @data-engineer → `db-specialist-review.md`
|
|
128
|
+
- Phase 6: @ux-design-expert → `ux-specialist-review.md`
|
|
129
|
+
- Phase 7: @qa → `qa-review.md` (QA Gate: APPROVED | NEEDS WORK)
|
|
130
|
+
|
|
131
|
+
**Finalization (Phases 8-10):**
|
|
132
|
+
- Phase 8: @architect → `technical-debt-assessment.md` (final)
|
|
133
|
+
- Phase 9: @analyst → `TECHNICAL-DEBT-REPORT.md` (executive)
|
|
134
|
+
- Phase 10: @pm → Epic + stories ready for development
|
|
135
|
+
|
|
136
|
+
**QA Gate (Phase 7):**
|
|
137
|
+
- **APPROVED:** All debits validated, no critical gaps, dependencies mapped
|
|
138
|
+
- **NEEDS WORK:** Gaps not addressed, return to Phase 4
|
|
139
|
+
|
|
140
|
+
---
|
|
141
|
+
|
|
142
|
+
## Workflow Selection Guide
|
|
143
|
+
|
|
144
|
+
| Situation | Workflow |
|
|
145
|
+
|-----------|---------|
|
|
146
|
+
| New story from epic | Story Development Cycle |
|
|
147
|
+
| QA found issues, need iteration | QA Loop |
|
|
148
|
+
| Complex feature needs spec | Spec Pipeline → then SDC |
|
|
149
|
+
| Joining existing project | Brownfield Discovery |
|
|
150
|
+
| Simple bug fix | SDC only (YOLO mode) |
|