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
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
# - SHA256 hashes for change detection
|
|
8
8
|
# - File types for categorization
|
|
9
9
|
#
|
|
10
|
-
version: 4.
|
|
11
|
-
generated_at: "2026-02-
|
|
10
|
+
version: 4.4.0
|
|
11
|
+
generated_at: "2026-02-24T15:12:39.856Z"
|
|
12
12
|
generator: scripts/generate-install-manifest.js
|
|
13
|
-
file_count:
|
|
13
|
+
file_count: 1084
|
|
14
14
|
files:
|
|
15
15
|
- path: cli/commands/config/index.js
|
|
16
16
|
hash: sha256:ebcad2ce3807eda29dcddff76d7a95ddc9b7fa160df21fd608f94b802237e862
|
|
@@ -117,9 +117,9 @@ files:
|
|
|
117
117
|
type: cli
|
|
118
118
|
size: 5320
|
|
119
119
|
- path: cli/commands/validate/index.js
|
|
120
|
-
hash: sha256:
|
|
120
|
+
hash: sha256:f124e073fdd3709a7c8661752222e21af7e4106c79e73dd8ce474b2e611f804c
|
|
121
121
|
type: cli
|
|
122
|
-
size:
|
|
122
|
+
size: 12893
|
|
123
123
|
- path: cli/commands/workers/formatters/info-formatter.js
|
|
124
124
|
hash: sha256:6f0d25f4033828616656178c55e50d1eeec9457279807c1b06e111d9dd79c53e
|
|
125
125
|
type: cli
|
|
@@ -177,33 +177,61 @@ files:
|
|
|
177
177
|
type: cli
|
|
178
178
|
size: 5907
|
|
179
179
|
- path: core-config.yaml
|
|
180
|
-
hash: sha256:
|
|
180
|
+
hash: sha256:e8b52daa2b2fc084de7be08b41be14ebd9f44a59cfad8b96c94e9e9ddee038de
|
|
181
181
|
type: config
|
|
182
|
-
size:
|
|
182
|
+
size: 10999
|
|
183
183
|
- path: core/code-intel/code-intel-client.js
|
|
184
|
-
hash: sha256:
|
|
184
|
+
hash: sha256:6c9a08a37775acf90397aa079a4ad2c5edcc47f2cfd592b26ae9f3d154d1deb8
|
|
185
185
|
type: core
|
|
186
|
-
size:
|
|
186
|
+
size: 8172
|
|
187
187
|
- path: core/code-intel/code-intel-enricher.js
|
|
188
188
|
hash: sha256:0bea0c1953a21621afbb4c9755e782842940cf54cdc88a4318dd7242f1fb02a8
|
|
189
189
|
type: core
|
|
190
190
|
size: 4320
|
|
191
|
+
- path: core/code-intel/helpers/creation-helper.js
|
|
192
|
+
hash: sha256:e674fdbe6979dbe961853f080d5971ba264dee23ab70abafcc21ee99356206e7
|
|
193
|
+
type: core
|
|
194
|
+
size: 5637
|
|
191
195
|
- path: core/code-intel/helpers/dev-helper.js
|
|
192
196
|
hash: sha256:2418a5f541003c73cc284e88a6b0cb666896a47ffd5ed4c08648269d281efc4c
|
|
193
197
|
type: core
|
|
194
198
|
size: 5770
|
|
199
|
+
- path: core/code-intel/helpers/devops-helper.js
|
|
200
|
+
hash: sha256:c40cfa9ac2f554a707ff68c7709ae436349041bf00ad2f42811ccbe8ba842462
|
|
201
|
+
type: core
|
|
202
|
+
size: 5115
|
|
203
|
+
- path: core/code-intel/helpers/planning-helper.js
|
|
204
|
+
hash: sha256:2edcf275122125205a9e737035c8b25efdc4af13e7349ffc10c3ebe8ebe7654d
|
|
205
|
+
type: core
|
|
206
|
+
size: 6863
|
|
207
|
+
- path: core/code-intel/helpers/qa-helper.js
|
|
208
|
+
hash: sha256:ca069dad294224dd5c3369826fb39d5c24287d49d74360049f8bbc55f190eeda
|
|
209
|
+
type: core
|
|
210
|
+
size: 5184
|
|
211
|
+
- path: core/code-intel/helpers/story-helper.js
|
|
212
|
+
hash: sha256:778466253ac66103ebc3b1caf71f44b06a0d5fb3d39fe8d3d473dd4bc73fefc6
|
|
213
|
+
type: core
|
|
214
|
+
size: 4323
|
|
215
|
+
- path: core/code-intel/hook-runtime.js
|
|
216
|
+
hash: sha256:4d812dc503650ef90249ad2993b3f713aea806138a27455a6a9757329d829c8e
|
|
217
|
+
type: core
|
|
218
|
+
size: 5613
|
|
195
219
|
- path: core/code-intel/index.js
|
|
196
|
-
hash: sha256:
|
|
220
|
+
hash: sha256:c8103fb966def9e8ed53dc1840e0e853b5fa4f13291a73a179cbae3545f38754
|
|
197
221
|
type: core
|
|
198
|
-
size:
|
|
222
|
+
size: 3893
|
|
199
223
|
- path: core/code-intel/providers/code-graph-provider.js
|
|
200
|
-
hash: sha256:
|
|
224
|
+
hash: sha256:83251871bc2d65864a4e148e3921408e74662a2739bfbd12395a2daaa4bde9a0
|
|
201
225
|
type: core
|
|
202
|
-
size:
|
|
226
|
+
size: 6519
|
|
203
227
|
- path: core/code-intel/providers/provider-interface.js
|
|
204
|
-
hash: sha256:
|
|
228
|
+
hash: sha256:74df278e31f240ee4499f10989c4b6f8c7c7cba6e8f317cb433a23fd6693c487
|
|
229
|
+
type: core
|
|
230
|
+
size: 3282
|
|
231
|
+
- path: core/code-intel/providers/registry-provider.js
|
|
232
|
+
hash: sha256:a019168a151a07f60a655a6ec1833154ac73ec868ac9c22afe472d4ea565a2ba
|
|
205
233
|
type: core
|
|
206
|
-
size:
|
|
234
|
+
size: 15619
|
|
207
235
|
- path: core/code-intel/registry-syncer.js
|
|
208
236
|
hash: sha256:011318e2ba5c250daae2e565a8e8fb1570c99b7569e631276a2bf46e887fc514
|
|
209
237
|
type: core
|
|
@@ -233,25 +261,109 @@ files:
|
|
|
233
261
|
type: core
|
|
234
262
|
size: 8156
|
|
235
263
|
- path: core/config/schemas/framework-config.schema.json
|
|
236
|
-
hash: sha256:
|
|
264
|
+
hash: sha256:b20e62d2c18eafcccca46647604ff629addad16067cf58c04182758dcb61500b
|
|
237
265
|
type: core
|
|
238
|
-
size:
|
|
266
|
+
size: 5890
|
|
239
267
|
- path: core/config/schemas/local-config.schema.json
|
|
240
268
|
hash: sha256:86d87049562a3d278451096c973ce065ba6ad01ad375ba203ebdfc24691488ea
|
|
241
269
|
type: core
|
|
242
270
|
size: 496
|
|
243
271
|
- path: core/config/schemas/project-config.schema.json
|
|
244
|
-
hash: sha256:
|
|
272
|
+
hash: sha256:6ad7dbc70eca1d1d082f0eba4aa53a99003babda3e1393c1793c16d9c7ab202c
|
|
245
273
|
type: core
|
|
246
|
-
size:
|
|
274
|
+
size: 11878
|
|
247
275
|
- path: core/config/schemas/user-config.schema.json
|
|
248
276
|
hash: sha256:5cfc53fd0a80aa30f592cfa2aa6535afab746e3b8f6adfd2c0bf6786f6637d69
|
|
249
277
|
type: core
|
|
250
278
|
size: 936
|
|
279
|
+
- path: core/config/template-overrides.js
|
|
280
|
+
hash: sha256:1708dc8764e7f88dfefd7684240afcd5f13657170ac104aed99145e2bb8ae82c
|
|
281
|
+
type: core
|
|
282
|
+
size: 2223
|
|
251
283
|
- path: core/config/templates/user-config.yaml
|
|
252
284
|
hash: sha256:866128ca19c1be8254534ff42b9eefad77f6c4ef34adfe20319b1f80c5258382
|
|
253
285
|
type: template
|
|
254
286
|
size: 721
|
|
287
|
+
- path: core/doctor/checks/agent-memory.js
|
|
288
|
+
hash: sha256:1100511be904b8dc1eca7fc10dda7555e4c9f10c50dddfb740ac947c593a744e
|
|
289
|
+
type: core
|
|
290
|
+
size: 1367
|
|
291
|
+
- path: core/doctor/checks/claude-md.js
|
|
292
|
+
hash: sha256:11b8cdd9b3b45f5dad368bf99d61e4b6465f43c1731bcd53355393a706a01129
|
|
293
|
+
type: core
|
|
294
|
+
size: 1188
|
|
295
|
+
- path: core/doctor/checks/code-intel.js
|
|
296
|
+
hash: sha256:fa58ed6b2cd639d2f27971853a055e7497874536223472ac3ef5063fc371d412
|
|
297
|
+
type: core
|
|
298
|
+
size: 4098
|
|
299
|
+
- path: core/doctor/checks/commands-count.js
|
|
300
|
+
hash: sha256:7a0369852a09bca2b1c7fe480d12f4cfbf734103221c6510fbff7e5a6bac4bc7
|
|
301
|
+
type: core
|
|
302
|
+
size: 1720
|
|
303
|
+
- path: core/doctor/checks/core-config.js
|
|
304
|
+
hash: sha256:fbf07087b997250f1c00a2f698910f0689f82f4a3ddfcc007c084a81a784ef87
|
|
305
|
+
type: core
|
|
306
|
+
size: 1208
|
|
307
|
+
- path: core/doctor/checks/entity-registry.js
|
|
308
|
+
hash: sha256:5e94ced04a6d835b45b18a574108f908fdee43fe973dbd8fa5aea3675bb927e1
|
|
309
|
+
type: core
|
|
310
|
+
size: 1333
|
|
311
|
+
- path: core/doctor/checks/git-hooks.js
|
|
312
|
+
hash: sha256:0fbf921cee36695716d8762a4b675403d788ffdb69ae41c0e2a398d516d2530f
|
|
313
|
+
type: core
|
|
314
|
+
size: 1029
|
|
315
|
+
- path: core/doctor/checks/graph-dashboard.js
|
|
316
|
+
hash: sha256:edfd68c7ab96a91304382cddce13029cadcf52284433a43d8146e61162c3fb44
|
|
317
|
+
type: core
|
|
318
|
+
size: 1106
|
|
319
|
+
- path: core/doctor/checks/hooks-claude-count.js
|
|
320
|
+
hash: sha256:2873a8c33b11a24952b0a417726a6a94c6169b467c27e7d454a06f767595c533
|
|
321
|
+
type: core
|
|
322
|
+
size: 3348
|
|
323
|
+
- path: core/doctor/checks/ide-sync.js
|
|
324
|
+
hash: sha256:9f79c8477ee9279e013ca7077b50e1b532fec1410a1099382445f41da75bf9b7
|
|
325
|
+
type: core
|
|
326
|
+
size: 2142
|
|
327
|
+
- path: core/doctor/checks/index.js
|
|
328
|
+
hash: sha256:ba46a69971da584fe1d23f11285b24f872af31af3ca8d86f60d693ee6e0d4f73
|
|
329
|
+
type: core
|
|
330
|
+
size: 1192
|
|
331
|
+
- path: core/doctor/checks/node-version.js
|
|
332
|
+
hash: sha256:972840a623cd452017af5d7a3e91e9d4c29e4bebeaa1f79f009e0cfe90abdcd8
|
|
333
|
+
type: core
|
|
334
|
+
size: 674
|
|
335
|
+
- path: core/doctor/checks/npm-packages.js
|
|
336
|
+
hash: sha256:16f747d25d3185050c3b149d235dce707555038b51c0659e416a4d33a3672032
|
|
337
|
+
type: core
|
|
338
|
+
size: 702
|
|
339
|
+
- path: core/doctor/checks/rules-files.js
|
|
340
|
+
hash: sha256:6fe670f3759520f0d4b0abdad14f5f8b0eaa12cc9b15252c6de7e4cfa099d337
|
|
341
|
+
type: core
|
|
342
|
+
size: 1426
|
|
343
|
+
- path: core/doctor/checks/settings-json.js
|
|
344
|
+
hash: sha256:03920105e204a369b0c0d881e7fce730b26cbc1b2e6a2ee16758c3dd88e2a7a8
|
|
345
|
+
type: core
|
|
346
|
+
size: 3286
|
|
347
|
+
- path: core/doctor/checks/skills-count.js
|
|
348
|
+
hash: sha256:8ee05e30dd12b85d928f9b6d4c30cfeb20cfe4b9bc105c64cf64a3aacd913456
|
|
349
|
+
type: core
|
|
350
|
+
size: 1584
|
|
351
|
+
- path: core/doctor/fix-handler.js
|
|
352
|
+
hash: sha256:51cac57859a662d56a01d2137e789a36d36ff4a52d4bfe20ab45da8525c125be
|
|
353
|
+
type: core
|
|
354
|
+
size: 4535
|
|
355
|
+
- path: core/doctor/formatters/json.js
|
|
356
|
+
hash: sha256:a2f03e7aec43d1c9c1a0d5a9c35bbac75da2e727e397c4c8407c5c9a4692841d
|
|
357
|
+
type: core
|
|
358
|
+
size: 256
|
|
359
|
+
- path: core/doctor/formatters/text.js
|
|
360
|
+
hash: sha256:f79986236f5a4c094622dabc6432ea0162e8a96218af9fb7c52ef684113a3dd4
|
|
361
|
+
type: core
|
|
362
|
+
size: 1456
|
|
363
|
+
- path: core/doctor/index.js
|
|
364
|
+
hash: sha256:9865804725e3b0889861637b9d38cb1fc2032f6b00d07e824c98988db6c62016
|
|
365
|
+
type: core
|
|
366
|
+
size: 2529
|
|
255
367
|
- path: core/elicitation/agent-elicitation.js
|
|
256
368
|
hash: sha256:ef13ebff1375279e7b8f0f0bbd3699a0d201f9a67127efa64c4142159a26f417
|
|
257
369
|
type: elicitation
|
|
@@ -328,206 +440,254 @@ files:
|
|
|
328
440
|
hash: sha256:4e2324edb37ae0729062b5ac029f2891e050e7efd3a48d0f4a1dc4f227a6716b
|
|
329
441
|
type: core
|
|
330
442
|
size: 11060
|
|
443
|
+
- path: core/graph-dashboard/cli.js
|
|
444
|
+
hash: sha256:243a22ac68520b78d1924fbaad2c4de69e328ff1e90e55f01f241372b09cf65d
|
|
445
|
+
type: core
|
|
446
|
+
size: 10251
|
|
447
|
+
- path: core/graph-dashboard/data-sources/code-intel-source.js
|
|
448
|
+
hash: sha256:e508d6cbadcd2358fa7756dcaceefbaa510bd89155e036e2cbd386585408ff8f
|
|
449
|
+
type: core
|
|
450
|
+
size: 6799
|
|
451
|
+
- path: core/graph-dashboard/data-sources/metrics-source.js
|
|
452
|
+
hash: sha256:b1e4027f82350760b67ea8f58e04a5e739f87f010838487043e29dab7301ae9e
|
|
453
|
+
type: core
|
|
454
|
+
size: 2393
|
|
455
|
+
- path: core/graph-dashboard/data-sources/registry-source.js
|
|
456
|
+
hash: sha256:32d2a4bd5b102823d5933e5f9a648ae7e647cb1918092063161fed80d32b844b
|
|
457
|
+
type: core
|
|
458
|
+
size: 2521
|
|
459
|
+
- path: core/graph-dashboard/formatters/dot-formatter.js
|
|
460
|
+
hash: sha256:4c369343f2b617a730951eb137d5ba74087bfd9f5dddbbf439e1fc2f87117d7a
|
|
461
|
+
type: core
|
|
462
|
+
size: 1162
|
|
463
|
+
- path: core/graph-dashboard/formatters/html-formatter.js
|
|
464
|
+
hash: sha256:c96802e7216a9d45aaba5a90d0708decd0bb1866143d5f81e803affef0fb66cd
|
|
465
|
+
type: core
|
|
466
|
+
size: 60064
|
|
467
|
+
- path: core/graph-dashboard/formatters/json-formatter.js
|
|
468
|
+
hash: sha256:0544ec384f716130a5141edc7ad6733dccd82b86e37fc1606f1120b0037c3f8d
|
|
469
|
+
type: core
|
|
470
|
+
size: 381
|
|
471
|
+
- path: core/graph-dashboard/formatters/mermaid-formatter.js
|
|
472
|
+
hash: sha256:a6a5361cb7cdce2632d348ad32c659a3c383471fd338e76d578cc83c0888b2d7
|
|
473
|
+
type: core
|
|
474
|
+
size: 1568
|
|
475
|
+
- path: core/graph-dashboard/index.js
|
|
476
|
+
hash: sha256:d4e43c674dd7c119afd0afacc5b899c35de82890a61a3bcefc957819314f8cee
|
|
477
|
+
type: core
|
|
478
|
+
size: 528
|
|
479
|
+
- path: core/graph-dashboard/renderers/stats-renderer.js
|
|
480
|
+
hash: sha256:375f904e8592a546f594f63b2c717db03db500e7070372db6de5524ac74ba474
|
|
481
|
+
type: core
|
|
482
|
+
size: 6193
|
|
483
|
+
- path: core/graph-dashboard/renderers/status-renderer.js
|
|
484
|
+
hash: sha256:8e971ae267a570fac96782ee2d1ddb7787cc1efde9e17a2f23c9261ae0286acb
|
|
485
|
+
type: core
|
|
486
|
+
size: 2954
|
|
487
|
+
- path: core/graph-dashboard/renderers/tree-renderer.js
|
|
488
|
+
hash: sha256:067bb5aefdfff0442a6132b89cec9ac61e84c9a9295097209a71c839978cef10
|
|
489
|
+
type: core
|
|
490
|
+
size: 3599
|
|
331
491
|
- path: core/health-check/base-check.js
|
|
332
|
-
hash: sha256:
|
|
492
|
+
hash: sha256:2fcf75c1cd504686d4acc3c578f62a3468a527863112dad4759338003b2ce340
|
|
333
493
|
type: core
|
|
334
|
-
size:
|
|
494
|
+
size: 6164
|
|
335
495
|
- path: core/health-check/check-registry.js
|
|
336
|
-
hash: sha256:
|
|
496
|
+
hash: sha256:bbdf400da9e99dec0eb38f6757588cce87d5fd3a9aad7c350f7abcd9b00766c0
|
|
337
497
|
type: core
|
|
338
|
-
size:
|
|
498
|
+
size: 6906
|
|
339
499
|
- path: core/health-check/checks/deployment/build-config.js
|
|
340
|
-
hash: sha256:
|
|
500
|
+
hash: sha256:1d4a3100a248e6674da8db9aebc75a093e85e7e4de68cc5e9737e7a829098bf8
|
|
341
501
|
type: core
|
|
342
|
-
size:
|
|
502
|
+
size: 3007
|
|
343
503
|
- path: core/health-check/checks/deployment/ci-config.js
|
|
344
|
-
hash: sha256:
|
|
504
|
+
hash: sha256:f11df8acd0827c4f686a82f05292eb8b595e4964ce28d8cf4d624a4a6ed4b852
|
|
345
505
|
type: core
|
|
346
|
-
size:
|
|
506
|
+
size: 3466
|
|
347
507
|
- path: core/health-check/checks/deployment/deployment-readiness.js
|
|
348
|
-
hash: sha256:
|
|
508
|
+
hash: sha256:c0a5c4289e27742c062b9b3accab6b5f2ddf72a4c881271885c09777a7bb1cd9
|
|
349
509
|
type: core
|
|
350
|
-
size:
|
|
510
|
+
size: 4469
|
|
351
511
|
- path: core/health-check/checks/deployment/docker-config.js
|
|
352
|
-
hash: sha256:
|
|
512
|
+
hash: sha256:2326898e578e55bd7ab9b2a7dc1b2685976d35ba83f6cc94ea5f345d11c87f79
|
|
353
513
|
type: core
|
|
354
|
-
size:
|
|
514
|
+
size: 3165
|
|
355
515
|
- path: core/health-check/checks/deployment/env-file.js
|
|
356
|
-
hash: sha256:
|
|
516
|
+
hash: sha256:da84776df6f478813355d8c13e9f706869bf2a3918428832e68c517934b4d89f
|
|
357
517
|
type: core
|
|
358
|
-
size:
|
|
518
|
+
size: 3223
|
|
359
519
|
- path: core/health-check/checks/deployment/index.js
|
|
360
|
-
hash: sha256:
|
|
520
|
+
hash: sha256:44cf25748508bcf38395ecca3fa1896b71a74cbd74be98011440632fe1241b36
|
|
361
521
|
type: core
|
|
362
|
-
size:
|
|
522
|
+
size: 685
|
|
363
523
|
- path: core/health-check/checks/index.js
|
|
364
|
-
hash: sha256:
|
|
524
|
+
hash: sha256:08b623ca8feefa6920a8f973710e8a14fbcbf68fae39c9d3c70ea10bb8dc554e
|
|
365
525
|
type: core
|
|
366
|
-
size:
|
|
526
|
+
size: 1392
|
|
367
527
|
- path: core/health-check/checks/local/disk-space.js
|
|
368
|
-
hash: sha256:
|
|
528
|
+
hash: sha256:2693188c8c79e1e33bff474827e10303840cb2c660ce82c291b403a0ca9bcc92
|
|
369
529
|
type: core
|
|
370
|
-
size:
|
|
530
|
+
size: 5984
|
|
371
531
|
- path: core/health-check/checks/local/environment-vars.js
|
|
372
|
-
hash: sha256:
|
|
532
|
+
hash: sha256:af30b964d5c452ce7d3354dab4b76dc71b6cf5137988a1c575a6a8433b638a1f
|
|
373
533
|
type: core
|
|
374
|
-
size:
|
|
534
|
+
size: 3324
|
|
375
535
|
- path: core/health-check/checks/local/git-install.js
|
|
376
|
-
hash: sha256:
|
|
536
|
+
hash: sha256:8a7db96c2a54656ac68800d997615b8fa5e32cbe34ac2d788505e3769f32efdc
|
|
377
537
|
type: core
|
|
378
|
-
size:
|
|
538
|
+
size: 4339
|
|
379
539
|
- path: core/health-check/checks/local/ide-detection.js
|
|
380
|
-
hash: sha256:
|
|
540
|
+
hash: sha256:9eaae98cb3e58a3d67c59f6bd7cb60073771b8e82402ab9b0b87b67fb97e4075
|
|
381
541
|
type: core
|
|
382
|
-
size:
|
|
542
|
+
size: 3737
|
|
383
543
|
- path: core/health-check/checks/local/index.js
|
|
384
|
-
hash: sha256:
|
|
544
|
+
hash: sha256:b8331a3b781efbaf4a4a4e86bd639d07758623033a083dcd72325d5b1007dcbc
|
|
385
545
|
type: core
|
|
386
|
-
size:
|
|
546
|
+
size: 872
|
|
387
547
|
- path: core/health-check/checks/local/memory.js
|
|
388
|
-
hash: sha256:
|
|
548
|
+
hash: sha256:da597e180571bd4da3e074241927df1774e1ab9697910426eb2834ad46ad5249
|
|
389
549
|
type: core
|
|
390
|
-
size:
|
|
550
|
+
size: 3586
|
|
391
551
|
- path: core/health-check/checks/local/network.js
|
|
392
|
-
hash: sha256:
|
|
552
|
+
hash: sha256:e482aacb549464b8700213108005c6ef963f52a53ff5198f1813c33fb8ffef0f
|
|
393
553
|
type: core
|
|
394
|
-
size:
|
|
554
|
+
size: 4318
|
|
395
555
|
- path: core/health-check/checks/local/npm-install.js
|
|
396
|
-
hash: sha256:
|
|
556
|
+
hash: sha256:d47d4c3db287e3a5321a1d411f8d2a1fc92d4fec17928910fb2559e1842b210d
|
|
397
557
|
type: core
|
|
398
|
-
size:
|
|
558
|
+
size: 3831
|
|
399
559
|
- path: core/health-check/checks/local/shell-environment.js
|
|
400
|
-
hash: sha256:
|
|
560
|
+
hash: sha256:67c51887235d2a7f5da507ec765cdd1e942a0ed04dae93d4eae3f9c5b07d2b0e
|
|
401
561
|
type: core
|
|
402
|
-
size:
|
|
562
|
+
size: 3234
|
|
403
563
|
- path: core/health-check/checks/project/agent-config.js
|
|
404
|
-
hash: sha256:
|
|
564
|
+
hash: sha256:19e0c6388919d8dfa832c07ce8a1d1db972c828dfd66def06a260e894929f8fa
|
|
405
565
|
type: core
|
|
406
|
-
size:
|
|
566
|
+
size: 4728
|
|
407
567
|
- path: core/health-check/checks/project/aios-directory.js
|
|
408
|
-
hash: sha256:
|
|
568
|
+
hash: sha256:19f27baf630be024ca1ee1f7c1fe5fdf12b2e94613c31453749d9a29aa6f72ba
|
|
409
569
|
type: core
|
|
410
|
-
size:
|
|
570
|
+
size: 4086
|
|
411
571
|
- path: core/health-check/checks/project/dependencies.js
|
|
412
|
-
hash: sha256:
|
|
572
|
+
hash: sha256:112520d3aa4e021e2a152e6d0d1285dd88949fadb87ac4bd8062cb63bb2b1a49
|
|
413
573
|
type: core
|
|
414
|
-
size:
|
|
574
|
+
size: 4366
|
|
415
575
|
- path: core/health-check/checks/project/framework-config.js
|
|
416
|
-
hash: sha256:
|
|
576
|
+
hash: sha256:a8a5a6751c2736bf0b66f520a717d80794d0151b26afb2460a7b0b4d4e4a77e4
|
|
417
577
|
type: core
|
|
418
|
-
size:
|
|
578
|
+
size: 4002
|
|
419
579
|
- path: core/health-check/checks/project/index.js
|
|
420
|
-
hash: sha256:
|
|
580
|
+
hash: sha256:6e5452724ea9d478cb61910677d6bfd810419b3b179018179802e01fb3a173aa
|
|
421
581
|
type: core
|
|
422
|
-
size:
|
|
582
|
+
size: 935
|
|
423
583
|
- path: core/health-check/checks/project/node-version.js
|
|
424
|
-
hash: sha256:
|
|
584
|
+
hash: sha256:3940ff684b0253b9123b3388feb65c4729fe2e8c297323153f6a41d7d7a45490
|
|
425
585
|
type: core
|
|
426
|
-
size:
|
|
586
|
+
size: 4685
|
|
427
587
|
- path: core/health-check/checks/project/package-json.js
|
|
428
|
-
hash: sha256:
|
|
588
|
+
hash: sha256:c74dd208743b4a102775e5afa68e066e142fb7a42c18866b7178cdf19bc304b5
|
|
429
589
|
type: core
|
|
430
|
-
size:
|
|
590
|
+
size: 2947
|
|
431
591
|
- path: core/health-check/checks/project/task-definitions.js
|
|
432
|
-
hash: sha256:
|
|
592
|
+
hash: sha256:5df3e13e73a82a5ab6f9dfa1a2482a653287059525da2795f182c24920d98119
|
|
433
593
|
type: core
|
|
434
|
-
size:
|
|
594
|
+
size: 5080
|
|
435
595
|
- path: core/health-check/checks/project/workflow-dependencies.js
|
|
436
|
-
hash: sha256:
|
|
596
|
+
hash: sha256:6d61c187f64525e2ba0e5c5ad6c1bc66c3f8ab7572b6ceb776a7414beea89093
|
|
437
597
|
type: core
|
|
438
|
-
size:
|
|
598
|
+
size: 5784
|
|
439
599
|
- path: core/health-check/checks/repository/branch-protection.js
|
|
440
|
-
hash: sha256:
|
|
600
|
+
hash: sha256:ec85f9af8c3bdd573b6073f08db62b3c447cc7abe6520b6eb6bc76eb2b43c477
|
|
441
601
|
type: core
|
|
442
|
-
size:
|
|
602
|
+
size: 2963
|
|
443
603
|
- path: core/health-check/checks/repository/commit-history.js
|
|
444
|
-
hash: sha256:
|
|
604
|
+
hash: sha256:1575027628d842063d0974c14906c1a0a1815ce4edccb8fbb09b9fcadc925506
|
|
445
605
|
type: core
|
|
446
|
-
size:
|
|
606
|
+
size: 3700
|
|
447
607
|
- path: core/health-check/checks/repository/conflicts.js
|
|
448
|
-
hash: sha256:
|
|
608
|
+
hash: sha256:24872fd4a779657a59f0d6983c5029071c4aefbf345f4a3816e68f597c217540
|
|
449
609
|
type: core
|
|
450
|
-
size:
|
|
610
|
+
size: 3939
|
|
451
611
|
- path: core/health-check/checks/repository/git-repo.js
|
|
452
|
-
hash: sha256:
|
|
612
|
+
hash: sha256:548b4b09f2f0e89f8bc90ce53c5e759cbd730136a8e5e711c11bb8367311f4fd
|
|
453
613
|
type: core
|
|
454
|
-
size:
|
|
614
|
+
size: 4106
|
|
455
615
|
- path: core/health-check/checks/repository/git-status.js
|
|
456
|
-
hash: sha256:
|
|
616
|
+
hash: sha256:7419d366efd902a74449f1a5f56c458515002eb87e6e660f1a39aac1c2a10df7
|
|
457
617
|
type: core
|
|
458
|
-
size:
|
|
618
|
+
size: 4063
|
|
459
619
|
- path: core/health-check/checks/repository/gitignore.js
|
|
460
|
-
hash: sha256:
|
|
620
|
+
hash: sha256:49c9b66aa18ba5292ac55b6ec09fa5cb45910728712df4bdc370918d66fb37c5
|
|
461
621
|
type: core
|
|
462
|
-
size:
|
|
622
|
+
size: 5208
|
|
463
623
|
- path: core/health-check/checks/repository/index.js
|
|
464
|
-
hash: sha256:
|
|
624
|
+
hash: sha256:815779705c31cd76af4137f1bd2c1eb703aff05adca830afd7d8596e809c094a
|
|
465
625
|
type: core
|
|
466
|
-
size:
|
|
626
|
+
size: 893
|
|
467
627
|
- path: core/health-check/checks/repository/large-files.js
|
|
468
|
-
hash: sha256:
|
|
628
|
+
hash: sha256:0810197a37cd0c8ec2b7e1079598379c8605948220426a67ee3e3eb791dd8a0e
|
|
469
629
|
type: core
|
|
470
|
-
size:
|
|
630
|
+
size: 5167
|
|
471
631
|
- path: core/health-check/checks/repository/lockfile-integrity.js
|
|
472
|
-
hash: sha256:
|
|
632
|
+
hash: sha256:be0a14ead36c9bcdff95717e8da16f407cab3b8daae1f151aa34c45dca96a391
|
|
473
633
|
type: core
|
|
474
|
-
size:
|
|
634
|
+
size: 4373
|
|
475
635
|
- path: core/health-check/checks/services/api-endpoints.js
|
|
476
|
-
hash: sha256:
|
|
636
|
+
hash: sha256:8f25499e40e1cccabd45cd22a370e968ad588a268336bb1f57cd7d1be471b805
|
|
477
637
|
type: core
|
|
478
|
-
size:
|
|
638
|
+
size: 4315
|
|
479
639
|
- path: core/health-check/checks/services/claude-code.js
|
|
480
|
-
hash: sha256:
|
|
640
|
+
hash: sha256:030e0470a5f9649d842312c2f5e50d2b3eccb8ff99a6fd5bb58c93f627dc5350
|
|
481
641
|
type: core
|
|
482
|
-
size:
|
|
642
|
+
size: 3598
|
|
483
643
|
- path: core/health-check/checks/services/gemini-cli.js
|
|
484
|
-
hash: sha256:
|
|
644
|
+
hash: sha256:040d9c887c68b01316c15abf809d7e71d6573900867165839fa3c1b67ebf5ed6
|
|
485
645
|
type: core
|
|
486
|
-
size:
|
|
646
|
+
size: 7179
|
|
487
647
|
- path: core/health-check/checks/services/github-cli.js
|
|
488
|
-
hash: sha256:
|
|
648
|
+
hash: sha256:9b846fa8837666c25448d35110ae0163bd7d1d70a624f2bb7e15894fce8a9ba3
|
|
489
649
|
type: core
|
|
490
|
-
size:
|
|
650
|
+
size: 2883
|
|
491
651
|
- path: core/health-check/checks/services/index.js
|
|
492
|
-
hash: sha256:
|
|
652
|
+
hash: sha256:d0f875e772fe0f0f32a75e141045c3dcac95ecf65b1b7242a8af8ca4eabd78ff
|
|
493
653
|
type: core
|
|
494
|
-
size:
|
|
654
|
+
size: 656
|
|
495
655
|
- path: core/health-check/checks/services/mcp-integration.js
|
|
496
|
-
hash: sha256:
|
|
656
|
+
hash: sha256:e7036807b0014c674b1fa6e83c4d35af9245c76bf06297f25186bd9c6a4ead35
|
|
497
657
|
type: core
|
|
498
|
-
size:
|
|
658
|
+
size: 3362
|
|
499
659
|
- path: core/health-check/engine.js
|
|
500
|
-
hash: sha256:
|
|
660
|
+
hash: sha256:6f566c016c8a3216d929dace4ebcbd151c6d0866d67754d7ea5c16cdd37ea94f
|
|
501
661
|
type: core
|
|
502
|
-
size:
|
|
662
|
+
size: 11015
|
|
503
663
|
- path: core/health-check/healers/backup-manager.js
|
|
504
|
-
hash: sha256:
|
|
664
|
+
hash: sha256:668359235e10c5fad268011d56f32a5d832b5b074882b731ae95297acd82f1df
|
|
505
665
|
type: core
|
|
506
|
-
size:
|
|
666
|
+
size: 8623
|
|
507
667
|
- path: core/health-check/healers/index.js
|
|
508
|
-
hash: sha256:
|
|
668
|
+
hash: sha256:8f5b98f7c1b23cecc13e89da332d9473c6a30cb63423b61620b2189c1cb75537
|
|
509
669
|
type: core
|
|
510
|
-
size:
|
|
670
|
+
size: 8894
|
|
511
671
|
- path: core/health-check/index.js
|
|
512
|
-
hash: sha256:
|
|
672
|
+
hash: sha256:e4ff084b19f16bc06149bcb94ab68e9c578ac59c7c56df0f291e39e46c1e9477
|
|
513
673
|
type: core
|
|
514
|
-
size:
|
|
674
|
+
size: 10726
|
|
515
675
|
- path: core/health-check/reporters/console.js
|
|
516
|
-
hash: sha256:
|
|
676
|
+
hash: sha256:e08e8023bb03f2cb90602ff5541076edd5d5edaa9ec0b70b08ef1c03846b9947
|
|
517
677
|
type: core
|
|
518
|
-
size:
|
|
678
|
+
size: 7934
|
|
519
679
|
- path: core/health-check/reporters/index.js
|
|
520
|
-
hash: sha256:
|
|
680
|
+
hash: sha256:984f98ae3e1f8c64b15a422b8c741c1bc37d5bbb37a858d10ebb02553497e9d6
|
|
521
681
|
type: core
|
|
522
|
-
size:
|
|
682
|
+
size: 3187
|
|
523
683
|
- path: core/health-check/reporters/json.js
|
|
524
|
-
hash: sha256:
|
|
684
|
+
hash: sha256:87641a984b2930c5ac5ed9a0ce4758d1a8c662643e54d176fa32afdd69ab05ea
|
|
525
685
|
type: core
|
|
526
|
-
size:
|
|
686
|
+
size: 7058
|
|
527
687
|
- path: core/health-check/reporters/markdown.js
|
|
528
|
-
hash: sha256:
|
|
688
|
+
hash: sha256:4f522642e64bccc53b25a8047cb7aaeffdacc782c78a76ab190e9b9aad39baca
|
|
529
689
|
type: core
|
|
530
|
-
size:
|
|
690
|
+
size: 7755
|
|
531
691
|
- path: core/ideation/ideation-engine.js
|
|
532
692
|
hash: sha256:f803c2e9823b6526feaec5f875f0fe2ac204a15403dbe41f89fa959c12e016e7
|
|
533
693
|
type: core
|
|
@@ -564,6 +724,10 @@ files:
|
|
|
564
724
|
hash: sha256:89969400668078caea7398b0d7218f3f2fab2e996c05b6361e5618da2b9262d2
|
|
565
725
|
type: core
|
|
566
726
|
size: 3624
|
|
727
|
+
- path: core/ids/layer-classifier.js
|
|
728
|
+
hash: sha256:0ebae24d4ceb8e38fa2aac05b400c01b7a102f0720c7dc64dea32403119f9e52
|
|
729
|
+
type: core
|
|
730
|
+
size: 2382
|
|
567
731
|
- path: core/ids/README.md
|
|
568
732
|
hash: sha256:1599b5be7d5a72431c10cb137087b3886e1190abfd06a658d676f1f0c284c89d
|
|
569
733
|
type: core
|
|
@@ -577,21 +741,21 @@ files:
|
|
|
577
741
|
type: core
|
|
578
742
|
size: 8096
|
|
579
743
|
- path: core/ids/registry-updater.js
|
|
580
|
-
hash: sha256:
|
|
744
|
+
hash: sha256:4492bae17bfcaf2081baed1e42ae226ef34db27909e56b1bb76fa63a6b6bc392
|
|
581
745
|
type: core
|
|
582
|
-
size:
|
|
746
|
+
size: 24542
|
|
583
747
|
- path: core/ids/verification-gate.js
|
|
584
748
|
hash: sha256:96050661c90fa52bfc755911d02c9194ec35c00e71fc6bbc92a13686dd53bb91
|
|
585
749
|
type: core
|
|
586
750
|
size: 8823
|
|
587
751
|
- path: core/index.esm.js
|
|
588
|
-
hash: sha256:
|
|
752
|
+
hash: sha256:752ae5ea70a18460847b96afed522a65f6c79c711d2c5d2b9fba6d7eed11d945
|
|
589
753
|
type: core
|
|
590
|
-
size:
|
|
754
|
+
size: 1486
|
|
591
755
|
- path: core/index.js
|
|
592
|
-
hash: sha256:
|
|
756
|
+
hash: sha256:40fc7ebce33a93b1b0f7343ae91e499b8551740214566891bf6739bb2effc5a0
|
|
593
757
|
type: core
|
|
594
|
-
size:
|
|
758
|
+
size: 2585
|
|
595
759
|
- path: core/manifest/manifest-generator.js
|
|
596
760
|
hash: sha256:94d25e22a261c09f719b52ad62979d0c013506866b07aca1b0e2623192b76428
|
|
597
761
|
type: core
|
|
@@ -873,9 +1037,9 @@ files:
|
|
|
873
1037
|
type: core
|
|
874
1038
|
size: 9179
|
|
875
1039
|
- path: core/session/context-detector.js
|
|
876
|
-
hash: sha256:
|
|
1040
|
+
hash: sha256:7323a5416e3826524aac7f3e68625465ca013c862f7fdbc5fd6e4487ecd738ec
|
|
877
1041
|
type: core
|
|
878
|
-
size:
|
|
1042
|
+
size: 7107
|
|
879
1043
|
- path: core/session/context-loader.js
|
|
880
1044
|
hash: sha256:eaef1e3a11feb2d355c5dc8fc2813ae095e27911cdf1261e5d003b22be16d8f0
|
|
881
1045
|
type: core
|
|
@@ -885,9 +1049,9 @@ files:
|
|
|
885
1049
|
type: core
|
|
886
1050
|
size: 1013
|
|
887
1051
|
- path: core/synapse/context/context-tracker.js
|
|
888
|
-
hash: sha256:
|
|
1052
|
+
hash: sha256:48e94db7b1778dedecc8eae829139579ad7778ff47668597ebe766610696553f
|
|
889
1053
|
type: core
|
|
890
|
-
size:
|
|
1054
|
+
size: 5839
|
|
891
1055
|
- path: core/synapse/diagnostics/collectors/consistency-collector.js
|
|
892
1056
|
hash: sha256:65f4255f87c9900400649dc8b9aedaac4851b5939d93e127778bd93cee99db12
|
|
893
1057
|
type: core
|
|
@@ -945,9 +1109,9 @@ files:
|
|
|
945
1109
|
type: core
|
|
946
1110
|
size: 8122
|
|
947
1111
|
- path: core/synapse/engine.js
|
|
948
|
-
hash: sha256:
|
|
1112
|
+
hash: sha256:47bab93a2144edce875ee68cc2717fee1bd824c9affdd5964454f5141310b8e0
|
|
949
1113
|
type: core
|
|
950
|
-
size:
|
|
1114
|
+
size: 13602
|
|
951
1115
|
- path: core/synapse/layers/l0-constitution.js
|
|
952
1116
|
hash: sha256:2123a6a44915aaac2a6bbd26c67c285c9d1e12b50fe42a8ada668306b07d1c4a
|
|
953
1117
|
type: core
|
|
@@ -985,25 +1149,33 @@ files:
|
|
|
985
1149
|
type: core
|
|
986
1150
|
size: 2881
|
|
987
1151
|
- path: core/synapse/memory/memory-bridge.js
|
|
988
|
-
hash: sha256:
|
|
1152
|
+
hash: sha256:820875f97ceea80fc6402c0dab1706cfe58de527897b22dea68db40b0d6ec368
|
|
1153
|
+
type: core
|
|
1154
|
+
size: 6197
|
|
1155
|
+
- path: core/synapse/memory/synapse-memory-provider.js
|
|
1156
|
+
hash: sha256:5d613d1fac7ee82c49a3f03b38735fd3cabfe87dd868494672ddfef300ea3145
|
|
989
1157
|
type: core
|
|
990
|
-
size:
|
|
1158
|
+
size: 5532
|
|
991
1159
|
- path: core/synapse/output/formatter.js
|
|
992
1160
|
hash: sha256:fe4f6c2f6091defb6af66dad71db0640f919b983111087f8cc5821e3d44ca864
|
|
993
1161
|
type: core
|
|
994
1162
|
size: 16418
|
|
995
1163
|
- path: core/synapse/runtime/hook-runtime.js
|
|
996
|
-
hash: sha256:
|
|
1164
|
+
hash: sha256:06fdea2d032ff166dc317c4aa86541e7357d26f84e036ebbd3695141b4382a20
|
|
997
1165
|
type: core
|
|
998
|
-
size:
|
|
1166
|
+
size: 3030
|
|
999
1167
|
- path: core/synapse/scripts/generate-constitution.js
|
|
1000
1168
|
hash: sha256:65405d3e4ee080d19a25fb8967e159360a289e773c15253a351ee163b469e877
|
|
1001
1169
|
type: script
|
|
1002
1170
|
size: 6160
|
|
1003
1171
|
- path: core/synapse/session/session-manager.js
|
|
1004
|
-
hash: sha256:
|
|
1172
|
+
hash: sha256:98e8c8fa15b074b6102bcd51c6f91f101743338e8cde6de9c31d6b6eea5d6580
|
|
1173
|
+
type: core
|
|
1174
|
+
size: 11185
|
|
1175
|
+
- path: core/synapse/utils/atomic-write.js
|
|
1176
|
+
hash: sha256:efeef0fbcebb184df5b79f4ba4b4b7fe274c3ba7d1c705ce1af92628e920bd8b
|
|
1005
1177
|
type: core
|
|
1006
|
-
size:
|
|
1178
|
+
size: 2161
|
|
1007
1179
|
- path: core/synapse/utils/paths.js
|
|
1008
1180
|
hash: sha256:bf8cf93c1a16295e7de055bee292e2778a152b6e7d6c648dbc054a4b04dffc10
|
|
1009
1181
|
type: core
|
|
@@ -1041,17 +1213,29 @@ files:
|
|
|
1041
1213
|
type: data
|
|
1042
1214
|
size: 10938
|
|
1043
1215
|
- path: data/aios-kb.md
|
|
1044
|
-
hash: sha256:
|
|
1216
|
+
hash: sha256:fe9bffd71c2070116a7802ecc91718ad64e7ca4e4ba4f7e2fd2f5e188120ffb7
|
|
1045
1217
|
type: data
|
|
1046
|
-
size:
|
|
1218
|
+
size: 34235
|
|
1219
|
+
- path: data/capability-detection.js
|
|
1220
|
+
hash: sha256:564fe9677277ed50f0393a10ccc3f17263e021d9e4e57b3c4a6005ab3b93f520
|
|
1221
|
+
type: data
|
|
1222
|
+
size: 9575
|
|
1047
1223
|
- path: data/entity-registry.yaml
|
|
1048
|
-
hash: sha256:
|
|
1224
|
+
hash: sha256:1a3ebc7fb0c09631e18192e376903db69ef9e40ffc2a661ca87a100e6996051f
|
|
1049
1225
|
type: data
|
|
1050
|
-
size:
|
|
1226
|
+
size: 517912
|
|
1051
1227
|
- path: data/learned-patterns.yaml
|
|
1052
1228
|
hash: sha256:24ac0b160615583a0ff783d3da8af80b7f94191575d6db2054ec8e10a3f945dc
|
|
1053
1229
|
type: data
|
|
1054
1230
|
size: 68
|
|
1231
|
+
- path: data/mcp-discipline.js
|
|
1232
|
+
hash: sha256:893cf7c6c0f69e9e7c9efe23cd2ae74fc63613480f6b645a820908d6d1351dfa
|
|
1233
|
+
type: data
|
|
1234
|
+
size: 5093
|
|
1235
|
+
- path: data/mcp-tool-examples.yaml
|
|
1236
|
+
hash: sha256:853d3653ef82583dca5284e96613df0988ce6255d5cffbe9bd359df63a3feb46
|
|
1237
|
+
type: data
|
|
1238
|
+
size: 9266
|
|
1055
1239
|
- path: data/tech-presets/_template.md
|
|
1056
1240
|
hash: sha256:1a7262912c8c8e264d307f0d38a1109bdb2b9bff9ea7d8855c768835201aa59b
|
|
1057
1241
|
type: data
|
|
@@ -1064,6 +1248,26 @@ files:
|
|
|
1064
1248
|
hash: sha256:7acc7123b9678ce4a48ee5c0e5f4d84665b7f3c34798178640c2c1e982c2e2c3
|
|
1065
1249
|
type: data
|
|
1066
1250
|
size: 2643
|
|
1251
|
+
- path: data/tok2-validation.js
|
|
1252
|
+
hash: sha256:52ffb14d8bb00a28d0568570a60d5af01a970d64a320bfb63fde9fcf5a2db481
|
|
1253
|
+
type: data
|
|
1254
|
+
size: 7026
|
|
1255
|
+
- path: data/tok3-token-comparison.js
|
|
1256
|
+
hash: sha256:1f484f8054bec7a7e8055acbc9fddd7863a769948c30c6db42c5c8694410da8f
|
|
1257
|
+
type: data
|
|
1258
|
+
size: 4622
|
|
1259
|
+
- path: data/tool-registry.yaml
|
|
1260
|
+
hash: sha256:f619a2c25a22ad2a6250b224e16870772b7568b6cc6ee01a46af534aa4b9f0c4
|
|
1261
|
+
type: data
|
|
1262
|
+
size: 15178
|
|
1263
|
+
- path: data/tool-search-validation.js
|
|
1264
|
+
hash: sha256:8757bf087692f002d67115dbe1c8244bbd869600e4f52c49b0d9b07cb9fbb783
|
|
1265
|
+
type: data
|
|
1266
|
+
size: 5754
|
|
1267
|
+
- path: data/workflow-chains.yaml
|
|
1268
|
+
hash: sha256:1fbf1625e267eedc315cf1e08e5827c250ddc6785fb2cb139e7702def9b66268
|
|
1269
|
+
type: data
|
|
1270
|
+
size: 5055
|
|
1067
1271
|
- path: data/workflow-patterns.yaml
|
|
1068
1272
|
hash: sha256:3c3625a5d9eb6eca6f33e3ac35d20fa377b44b061dc1dbf6b04116c6c5722834
|
|
1069
1273
|
type: data
|
|
@@ -1093,53 +1297,93 @@ files:
|
|
|
1093
1297
|
type: development
|
|
1094
1298
|
size: 5012
|
|
1095
1299
|
- path: development/agents/aios-master.md
|
|
1096
|
-
hash: sha256:
|
|
1300
|
+
hash: sha256:f1adbcbede1646b4337ef868389f1d0f7153d81b4f99edbcb52a1967d4bdc18a
|
|
1097
1301
|
type: agent
|
|
1098
|
-
size:
|
|
1302
|
+
size: 18860
|
|
1099
1303
|
- path: development/agents/analyst.md
|
|
1100
|
-
hash: sha256:
|
|
1304
|
+
hash: sha256:69e3124c4d6eba4763c16bc792af5d28d6a9cfeaf35bb253c764c194cdd21da4
|
|
1101
1305
|
type: agent
|
|
1102
|
-
size:
|
|
1306
|
+
size: 11210
|
|
1307
|
+
- path: development/agents/analyst/MEMORY.md
|
|
1308
|
+
hash: sha256:eb2a3f733781f4094ffac4f52656d917c4cdf93ee1bdb26ea4c54728b8ba0b34
|
|
1309
|
+
type: agent
|
|
1310
|
+
size: 1254
|
|
1103
1311
|
- path: development/agents/architect.md
|
|
1104
|
-
hash: sha256:
|
|
1312
|
+
hash: sha256:ca91af384903fff1b8172fe3353e03cce4c6ada834437e7fe010c301b51c6942
|
|
1313
|
+
type: agent
|
|
1314
|
+
size: 20017
|
|
1315
|
+
- path: development/agents/architect/MEMORY.md
|
|
1316
|
+
hash: sha256:8885804d07cd492fc6de3aeb11cfc15954d24ed81a31c4b1f048008f378f8b93
|
|
1105
1317
|
type: agent
|
|
1106
|
-
size:
|
|
1318
|
+
size: 1385
|
|
1107
1319
|
- path: development/agents/data-engineer.md
|
|
1108
|
-
hash: sha256:
|
|
1320
|
+
hash: sha256:bdb6bf1a615b698ee87103c2d0b3059a7d9fe86ff6ea1b55a98cec22d0a6c85c
|
|
1321
|
+
type: agent
|
|
1322
|
+
size: 21327
|
|
1323
|
+
- path: development/agents/data-engineer/MEMORY.md
|
|
1324
|
+
hash: sha256:df784ef187328736d5059c9a5b424cdfbf4021c4d1fb26050431ad89b45adbc7
|
|
1109
1325
|
type: agent
|
|
1110
|
-
size:
|
|
1326
|
+
size: 1106
|
|
1111
1327
|
- path: development/agents/dev.md
|
|
1112
|
-
hash: sha256:
|
|
1328
|
+
hash: sha256:e6e41d8ea02e16592e1483dcc6d082bcedceefae6ee8fabb3f7c7d41ea0ca895
|
|
1113
1329
|
type: agent
|
|
1114
|
-
size:
|
|
1330
|
+
size: 23935
|
|
1331
|
+
- path: development/agents/dev/MEMORY.md
|
|
1332
|
+
hash: sha256:84f197b1ade880b67657ac364267bd03ccc08e7cbfee75403187f4af68423134
|
|
1333
|
+
type: agent
|
|
1334
|
+
size: 2486
|
|
1115
1335
|
- path: development/agents/devops.md
|
|
1116
|
-
hash: sha256:
|
|
1336
|
+
hash: sha256:f5c9cc3d75bd0d9eb58f1240977d32d7ff0d2af46ed66f04adcdae294bb18141
|
|
1337
|
+
type: agent
|
|
1338
|
+
size: 22288
|
|
1339
|
+
- path: development/agents/devops/MEMORY.md
|
|
1340
|
+
hash: sha256:eb2ee887047c94db3441126cd0198cac44cec779026d7842a3a1c7eba936027f
|
|
1117
1341
|
type: agent
|
|
1118
|
-
size:
|
|
1342
|
+
size: 1398
|
|
1119
1343
|
- path: development/agents/pm.md
|
|
1120
|
-
hash: sha256:
|
|
1344
|
+
hash: sha256:fb08472aa6b5481cfe3f86a2c729aad8d7c46ce6577dc55fe7ef75ae3740340c
|
|
1345
|
+
type: agent
|
|
1346
|
+
size: 16148
|
|
1347
|
+
- path: development/agents/pm/MEMORY.md
|
|
1348
|
+
hash: sha256:94d46bfb4f6ed79088a4a45c8cbf5b059e4522fee123b048f08430d2e37ca697
|
|
1121
1349
|
type: agent
|
|
1122
|
-
size:
|
|
1350
|
+
size: 1220
|
|
1123
1351
|
- path: development/agents/po.md
|
|
1124
|
-
hash: sha256:
|
|
1352
|
+
hash: sha256:8a489551f6d93880ba1575597502dc551d24577ef8c2703b06715ea069a4075a
|
|
1125
1353
|
type: agent
|
|
1126
|
-
size:
|
|
1354
|
+
size: 13795
|
|
1355
|
+
- path: development/agents/po/MEMORY.md
|
|
1356
|
+
hash: sha256:7505510d70568ad46bc3de65dcdd3514b479052c298ea9f83cd5debba7ab0841
|
|
1357
|
+
type: agent
|
|
1358
|
+
size: 1376
|
|
1127
1359
|
- path: development/agents/qa.md
|
|
1128
|
-
hash: sha256:
|
|
1360
|
+
hash: sha256:6c065b077af93be53e706762b6d03852c342a4ce0bdcf5828aaba72ea756b617
|
|
1361
|
+
type: agent
|
|
1362
|
+
size: 18413
|
|
1363
|
+
- path: development/agents/qa/MEMORY.md
|
|
1364
|
+
hash: sha256:eec482f057d09635940e9a46bdd6cbb677af12dc4deed64bf71196d551b93abf
|
|
1129
1365
|
type: agent
|
|
1130
|
-
size:
|
|
1366
|
+
size: 1367
|
|
1131
1367
|
- path: development/agents/sm.md
|
|
1132
|
-
hash: sha256:
|
|
1368
|
+
hash: sha256:9c11401e9b4fde21d4a5b638f7c7343ec77e0dc7122db073da63f966866b76a9
|
|
1133
1369
|
type: agent
|
|
1134
|
-
size:
|
|
1370
|
+
size: 12107
|
|
1371
|
+
- path: development/agents/sm/MEMORY.md
|
|
1372
|
+
hash: sha256:88ea4db64df4ce94a5fd264c0db2add7ec05168402d6987bf70c6a238bc5ca50
|
|
1373
|
+
type: agent
|
|
1374
|
+
size: 1123
|
|
1135
1375
|
- path: development/agents/squad-creator.md
|
|
1136
|
-
hash: sha256:
|
|
1376
|
+
hash: sha256:2ce619b8ddf16fa415bf3f113b900928d03597221472aa5f2fb15f5599a67fd6
|
|
1137
1377
|
type: agent
|
|
1138
|
-
size:
|
|
1378
|
+
size: 13346
|
|
1139
1379
|
- path: development/agents/ux-design-expert.md
|
|
1140
|
-
hash: sha256:
|
|
1380
|
+
hash: sha256:411ea1468aadc6c6abc770edad335526dcd3a94ce6cc583f14d106905ddd54a0
|
|
1381
|
+
type: agent
|
|
1382
|
+
size: 19440
|
|
1383
|
+
- path: development/agents/ux/MEMORY.md
|
|
1384
|
+
hash: sha256:e177840efba9c8762891e9789a8252a647add9fb2423ef81618372b27c614d56
|
|
1141
1385
|
type: agent
|
|
1142
|
-
size:
|
|
1386
|
+
size: 1073
|
|
1143
1387
|
- path: development/checklists/agent-quality-gate.md
|
|
1144
1388
|
hash: sha256:04d1bf12dd4b0b3d10de04c1825efab742e6475087d3ac9d5c86ca7ff8ec9057
|
|
1145
1389
|
type: checklist
|
|
@@ -1148,6 +1392,14 @@ files:
|
|
|
1148
1392
|
hash: sha256:d07b1f9e2fcb78f62188ef05a6e6f75a94821b6bb297ea67f2e782e260d27f49
|
|
1149
1393
|
type: checklist
|
|
1150
1394
|
size: 3335
|
|
1395
|
+
- path: development/checklists/issue-triage-checklist.md
|
|
1396
|
+
hash: sha256:c6dbaae38c0e3030dbffebcbcf95e5e766e0294a7a678531531cbd7ad6e54e2b
|
|
1397
|
+
type: checklist
|
|
1398
|
+
size: 1245
|
|
1399
|
+
- path: development/checklists/memory-audit-checklist.md
|
|
1400
|
+
hash: sha256:61388618dd944199a693d6245ee3cdd726321bdf747e8d0996b8e78770d5bafa
|
|
1401
|
+
type: checklist
|
|
1402
|
+
size: 2459
|
|
1151
1403
|
- path: development/checklists/self-critique-checklist.md
|
|
1152
1404
|
hash: sha256:869fbc8fbc333ac8eea4eca3ea4ab9ca79917fa5e53735b70d634c85ac6420c8
|
|
1153
1405
|
type: checklist
|
|
@@ -1280,6 +1532,10 @@ files:
|
|
|
1280
1532
|
hash: sha256:8155920904d4d8b9e9c5eac09732ad86639b0303e077725f2692e90c28715492
|
|
1281
1533
|
type: script
|
|
1282
1534
|
size: 5166
|
|
1535
|
+
- path: development/scripts/issue-triage.js
|
|
1536
|
+
hash: sha256:a9f9741b1426732f19803bf9f292b15d8eed0fb875cf02df70735f48512f2310
|
|
1537
|
+
type: script
|
|
1538
|
+
size: 5777
|
|
1283
1539
|
- path: development/scripts/manifest-preview.js
|
|
1284
1540
|
hash: sha256:caccc28155efee736533622e3bc62c67abb9721e1f4e9bf761ef02f8d8a37026
|
|
1285
1541
|
type: script
|
|
@@ -1305,9 +1561,9 @@ files:
|
|
|
1305
1561
|
type: script
|
|
1306
1562
|
size: 23410
|
|
1307
1563
|
- path: development/scripts/populate-entity-registry.js
|
|
1308
|
-
hash: sha256:
|
|
1564
|
+
hash: sha256:e2d6752fca6246de842fc145c9bf9a26a0cd84cb878cf8ea976f1000ca052990
|
|
1309
1565
|
type: script
|
|
1310
|
-
size:
|
|
1566
|
+
size: 22558
|
|
1311
1567
|
- path: development/scripts/refactoring-suggester.js
|
|
1312
1568
|
hash: sha256:d5183f79fae9dc4bf4d3c9136b3622e43a63643a7df622742c350931e45f18f4
|
|
1313
1569
|
type: script
|
|
@@ -1405,9 +1661,9 @@ files:
|
|
|
1405
1661
|
type: script
|
|
1406
1662
|
size: 17607
|
|
1407
1663
|
- path: development/scripts/unified-activation-pipeline.js
|
|
1408
|
-
hash: sha256:
|
|
1664
|
+
hash: sha256:54dff85f760679f85a9eaa8ad7c76223a24c4a6c1192eb0080ac6c3d11fe9157
|
|
1409
1665
|
type: script
|
|
1410
|
-
size:
|
|
1666
|
+
size: 30125
|
|
1411
1667
|
- path: development/scripts/usage-tracker.js
|
|
1412
1668
|
hash: sha256:b3079713787de7c6ac38a742255861f04e8359ef1b227836040920a64b7e8aac
|
|
1413
1669
|
type: script
|
|
@@ -1473,17 +1729,17 @@ files:
|
|
|
1473
1729
|
type: task
|
|
1474
1730
|
size: 15464
|
|
1475
1731
|
- path: development/tasks/analyze-project-structure.md
|
|
1476
|
-
hash: sha256:
|
|
1732
|
+
hash: sha256:35e41cbcdf5731187f1051bfdfea70ad39b022d189325f2ae3c6f98bab6d8cba
|
|
1477
1733
|
type: task
|
|
1478
|
-
size:
|
|
1734
|
+
size: 16149
|
|
1479
1735
|
- path: development/tasks/apply-qa-fixes.md
|
|
1480
|
-
hash: sha256:
|
|
1736
|
+
hash: sha256:8bc17f353b404cecb8d485b9d17857d409213b40125c111f41496a08b96fd2ea
|
|
1481
1737
|
type: task
|
|
1482
|
-
size:
|
|
1738
|
+
size: 9106
|
|
1483
1739
|
- path: development/tasks/architect-analyze-impact.md
|
|
1484
|
-
hash: sha256:
|
|
1740
|
+
hash: sha256:b0b6b4e37c7ac3624749de8a66b057bea7304f7767ed6481ab0c89d34e0d0659
|
|
1485
1741
|
type: task
|
|
1486
|
-
size:
|
|
1742
|
+
size: 26656
|
|
1487
1743
|
- path: development/tasks/audit-codebase.md
|
|
1488
1744
|
hash: sha256:60b8b87ecda1290e1079a6458f43e607916e1d80c0a77faf72000feb07517dc8
|
|
1489
1745
|
type: task
|
|
@@ -1521,17 +1777,17 @@ files:
|
|
|
1521
1777
|
type: task
|
|
1522
1778
|
size: 7609
|
|
1523
1779
|
- path: development/tasks/brownfield-create-epic.md
|
|
1524
|
-
hash: sha256:
|
|
1780
|
+
hash: sha256:5f08daf94281cf0a9c77339c0e88e8c6d7e2388ea8b3f094384c8f371d87c14c
|
|
1525
1781
|
type: task
|
|
1526
|
-
size:
|
|
1782
|
+
size: 17900
|
|
1527
1783
|
- path: development/tasks/brownfield-create-story.md
|
|
1528
|
-
hash: sha256:
|
|
1784
|
+
hash: sha256:015e83759562c9a4341eb6c03297e67c279e67e28359346638b0114c714ab166
|
|
1529
1785
|
type: task
|
|
1530
|
-
size:
|
|
1786
|
+
size: 9227
|
|
1531
1787
|
- path: development/tasks/build-autonomous.md
|
|
1532
|
-
hash: sha256:
|
|
1788
|
+
hash: sha256:2d9c458163020dc97089ec7e7c8deee9feecf484b573871c89df638212e01055
|
|
1533
1789
|
type: task
|
|
1534
|
-
size:
|
|
1790
|
+
size: 6282
|
|
1535
1791
|
- path: development/tasks/build-component.md
|
|
1536
1792
|
hash: sha256:992a116fae239712e6b371a61deb299ab592b58a5d64909664e2f5e22b7caeff
|
|
1537
1793
|
type: task
|
|
@@ -1593,25 +1849,25 @@ files:
|
|
|
1593
1849
|
type: task
|
|
1594
1850
|
size: 22378
|
|
1595
1851
|
- path: development/tasks/create-deep-research-prompt.md
|
|
1596
|
-
hash: sha256:
|
|
1852
|
+
hash: sha256:aec36f62e6be5bff6e0fdf465ccd961837e13f8e28bad4e532890b56556a1b74
|
|
1597
1853
|
type: task
|
|
1598
|
-
size:
|
|
1854
|
+
size: 12484
|
|
1599
1855
|
- path: development/tasks/create-doc.md
|
|
1600
|
-
hash: sha256:
|
|
1856
|
+
hash: sha256:ad95f32e687a57b24449273c6916023cfbb95229d55561ff68b06c2f4c8cddd4
|
|
1601
1857
|
type: task
|
|
1602
|
-
size:
|
|
1858
|
+
size: 10334
|
|
1603
1859
|
- path: development/tasks/create-next-story.md
|
|
1604
|
-
hash: sha256:
|
|
1860
|
+
hash: sha256:792aec86f594ac40a6bd3af1909761c4cc88cde2c60267e925ea5e641c9f5502
|
|
1605
1861
|
type: task
|
|
1606
|
-
size:
|
|
1862
|
+
size: 30564
|
|
1607
1863
|
- path: development/tasks/create-service.md
|
|
1608
1864
|
hash: sha256:31c4b50dbaede1c09d72a1dd5d9b1e5ca4edcbedc5204639d7399818e737c898
|
|
1609
1865
|
type: task
|
|
1610
1866
|
size: 9882
|
|
1611
1867
|
- path: development/tasks/create-suite.md
|
|
1612
|
-
hash: sha256:
|
|
1868
|
+
hash: sha256:ae4bbf2a8ca3d2f42c2e9f9a671a16a169a5897b0497488e8027e179b4a3d165
|
|
1613
1869
|
type: task
|
|
1614
|
-
size:
|
|
1870
|
+
size: 7382
|
|
1615
1871
|
- path: development/tasks/create-task.md
|
|
1616
1872
|
hash: sha256:98932670187a40e38a6c06103d9a12fe8a7924eec78ff10aa2ccaf6ea98b0608
|
|
1617
1873
|
type: task
|
|
@@ -1717,9 +1973,9 @@ files:
|
|
|
1717
1973
|
type: task
|
|
1718
1974
|
size: 11021
|
|
1719
1975
|
- path: development/tasks/dev-develop-story.md
|
|
1720
|
-
hash: sha256:
|
|
1976
|
+
hash: sha256:c2eb2cd403684cf6d4bcfc719cfcd9cdc00b42083b8d099b0e7fc51b46d098fb
|
|
1721
1977
|
type: task
|
|
1722
|
-
size:
|
|
1978
|
+
size: 27355
|
|
1723
1979
|
- path: development/tasks/dev-improve-code-quality.md
|
|
1724
1980
|
hash: sha256:8f8e6b0dcb1328cf7efcde263be95b93b2592176beafc7adfd3cdffbfa763be4
|
|
1725
1981
|
type: task
|
|
@@ -1749,9 +2005,9 @@ files:
|
|
|
1749
2005
|
type: task
|
|
1750
2006
|
size: 45596
|
|
1751
2007
|
- path: development/tasks/execute-checklist.md
|
|
1752
|
-
hash: sha256:
|
|
2008
|
+
hash: sha256:237fcd32c503ec148346ee9cff14baa961ab07259170b8d941c849d7527a1211
|
|
1753
2009
|
type: task
|
|
1754
|
-
size:
|
|
2010
|
+
size: 8796
|
|
1755
2011
|
- path: development/tasks/execute-epic-plan.md
|
|
1756
2012
|
hash: sha256:6665f240d809fdb8a8c53c1a5d2aada9ac8f2e1ca7716d6b467273cada542dcd
|
|
1757
2013
|
type: task
|
|
@@ -1793,13 +2049,13 @@ files:
|
|
|
1793
2049
|
type: task
|
|
1794
2050
|
size: 13659
|
|
1795
2051
|
- path: development/tasks/github-devops-github-pr-automation.md
|
|
1796
|
-
hash: sha256:
|
|
2052
|
+
hash: sha256:48ceb011ca36a0a63430691d09d424d7270a23916cf36dae8f99c60829036ae5
|
|
1797
2053
|
type: task
|
|
1798
|
-
size:
|
|
2054
|
+
size: 19476
|
|
1799
2055
|
- path: development/tasks/github-devops-pre-push-quality-gate.md
|
|
1800
|
-
hash: sha256:
|
|
2056
|
+
hash: sha256:1afbce6ca04a7806c0bde33e368ff3e3c2a316f1e4e78eff967bdb7bc1c4eb2c
|
|
1801
2057
|
type: task
|
|
1802
|
-
size:
|
|
2058
|
+
size: 23843
|
|
1803
2059
|
- path: development/tasks/github-devops-repository-cleanup.md
|
|
1804
2060
|
hash: sha256:41bab1eb9841602af7c806ddc7c03d6d36e8a2390e290d87818037076fe5fb05
|
|
1805
2061
|
type: task
|
|
@@ -1808,6 +2064,10 @@ files:
|
|
|
1808
2064
|
hash: sha256:823916f01d2242591cd5a4b607e96f130ceaf040015f510b24847752861bcc0c
|
|
1809
2065
|
type: task
|
|
1810
2066
|
size: 11737
|
|
2067
|
+
- path: development/tasks/github-issue-triage.md
|
|
2068
|
+
hash: sha256:a76192c203ff0e709ba52dfa595f2d81351e4c52180407b9d05b99dbea8de709
|
|
2069
|
+
type: task
|
|
2070
|
+
size: 3884
|
|
1811
2071
|
- path: development/tasks/gotcha.md
|
|
1812
2072
|
hash: sha256:c6f621ada5233e0f4181b8e052181017a040246eec604749c970786b7cf9f837
|
|
1813
2073
|
type: task
|
|
@@ -1817,9 +2077,9 @@ files:
|
|
|
1817
2077
|
type: task
|
|
1818
2078
|
size: 3595
|
|
1819
2079
|
- path: development/tasks/health-check.yaml
|
|
1820
|
-
hash: sha256:
|
|
2080
|
+
hash: sha256:4aef179167c00df3aa67532727e1c5acd5b084dcd30773f4fff85393c3177578
|
|
1821
2081
|
type: task
|
|
1822
|
-
size:
|
|
2082
|
+
size: 7859
|
|
1823
2083
|
- path: development/tasks/ids-governor.md
|
|
1824
2084
|
hash: sha256:d1aa11f338f3f943ea7ac3f299d536ae9af0a8bad48394d893c345ab98b452fe
|
|
1825
2085
|
type: task
|
|
@@ -1849,9 +2109,9 @@ files:
|
|
|
1849
2109
|
type: task
|
|
1850
2110
|
size: 6820
|
|
1851
2111
|
- path: development/tasks/kb-mode-interaction.md
|
|
1852
|
-
hash: sha256:
|
|
2112
|
+
hash: sha256:d6c415087b1838d03443b210296818a40dc48ae1ae73f92d58f1d7430a20fcf3
|
|
1853
2113
|
type: task
|
|
1854
|
-
size:
|
|
2114
|
+
size: 7154
|
|
1855
2115
|
- path: development/tasks/learn-patterns.md
|
|
1856
2116
|
hash: sha256:6e6ac0585d2178a2d5a8c53495c323cb764018b3fc8b7b4c96244dec2fbf5339
|
|
1857
2117
|
type: task
|
|
@@ -1909,13 +2169,13 @@ files:
|
|
|
1909
2169
|
type: task
|
|
1910
2170
|
size: 7372
|
|
1911
2171
|
- path: development/tasks/plan-create-context.md
|
|
1912
|
-
hash: sha256:
|
|
2172
|
+
hash: sha256:7f37ac5b4a7469df43e33a068ef5460ee9f91d6fb90a3793539c3c34328ccb6c
|
|
1913
2173
|
type: task
|
|
1914
|
-
size:
|
|
2174
|
+
size: 21748
|
|
1915
2175
|
- path: development/tasks/plan-create-implementation.md
|
|
1916
|
-
hash: sha256:
|
|
2176
|
+
hash: sha256:0d8db44dd5c573bac94f0419464ddc20f5ebc81a485df47930cd6fc8f9f64109
|
|
1917
2177
|
type: task
|
|
1918
|
-
size:
|
|
2178
|
+
size: 20649
|
|
1919
2179
|
- path: development/tasks/plan-execute-subtask.md
|
|
1920
2180
|
hash: sha256:fcce92949e2d35b03e9b056ce28894f83566abaf0158e4591c9165b97a6833f6
|
|
1921
2181
|
type: task
|
|
@@ -1925,9 +2185,9 @@ files:
|
|
|
1925
2185
|
type: task
|
|
1926
2186
|
size: 8302
|
|
1927
2187
|
- path: development/tasks/po-close-story.md
|
|
1928
|
-
hash: sha256:
|
|
2188
|
+
hash: sha256:c008468965f132b49b82878ae0f6262280df667c58ba1ed8652da4eb841415d5
|
|
1929
2189
|
type: task
|
|
1930
|
-
size:
|
|
2190
|
+
size: 10887
|
|
1931
2191
|
- path: development/tasks/po-manage-story-backlog.md
|
|
1932
2192
|
hash: sha256:cf18517faca1fe371397de9d3ba6a77456a2b5acf21130d7e7c982d83330f489
|
|
1933
2193
|
type: task
|
|
@@ -1953,9 +2213,9 @@ files:
|
|
|
1953
2213
|
type: task
|
|
1954
2214
|
size: 6896
|
|
1955
2215
|
- path: development/tasks/pr-automation.md
|
|
1956
|
-
hash: sha256:
|
|
2216
|
+
hash: sha256:ee4c392c91673077e489ecd344e0a2b464073ffe1f031395302c41ffb5ae9eab
|
|
1957
2217
|
type: task
|
|
1958
|
-
size:
|
|
2218
|
+
size: 19031
|
|
1959
2219
|
- path: development/tasks/propose-modification.md
|
|
1960
2220
|
hash: sha256:56f48bdae2572ee632bd782ada47804018cc0ba660f7711df73e34ab667d1e40
|
|
1961
2221
|
type: task
|
|
@@ -1977,9 +2237,9 @@ files:
|
|
|
1977
2237
|
type: task
|
|
1978
2238
|
size: 6827
|
|
1979
2239
|
- path: development/tasks/qa-create-fix-request.md
|
|
1980
|
-
hash: sha256:
|
|
2240
|
+
hash: sha256:0d8f1610bc13e54c4a2f89bb88482c327f196a0154c6db35dc5fa1a53bf95b74
|
|
1981
2241
|
type: task
|
|
1982
|
-
size:
|
|
2242
|
+
size: 13489
|
|
1983
2243
|
- path: development/tasks/qa-evidence-requirements.md
|
|
1984
2244
|
hash: sha256:cfa30b79bf1eac27511c94de213dbae761f3fb5544da07cc38563bcbd9187569
|
|
1985
2245
|
type: task
|
|
@@ -1989,13 +2249,13 @@ files:
|
|
|
1989
2249
|
type: task
|
|
1990
2250
|
size: 9387
|
|
1991
2251
|
- path: development/tasks/qa-fix-issues.md
|
|
1992
|
-
hash: sha256:
|
|
2252
|
+
hash: sha256:32fbac4c8d3c5c7bc0adeddf202332d1816faf949ef876fec11107fd8ed6ee3e
|
|
1993
2253
|
type: task
|
|
1994
|
-
size:
|
|
2254
|
+
size: 15785
|
|
1995
2255
|
- path: development/tasks/qa-gate.md
|
|
1996
|
-
hash: sha256:
|
|
2256
|
+
hash: sha256:5ce3e9292872d7b8b7b53f267d78ae7e6be450ec7e43e6630c5b3d424b335e1e
|
|
1997
2257
|
type: task
|
|
1998
|
-
size:
|
|
2258
|
+
size: 10759
|
|
1999
2259
|
- path: development/tasks/qa-generate-tests.md
|
|
2000
2260
|
hash: sha256:6155f078cc4f24e04b7b3379bf70dacd26e71fbf7f0e829dca52ce395ff48d3c
|
|
2001
2261
|
type: task
|
|
@@ -2021,9 +2281,9 @@ files:
|
|
|
2021
2281
|
type: task
|
|
2022
2282
|
size: 35266
|
|
2023
2283
|
- path: development/tasks/qa-review-story.md
|
|
2024
|
-
hash: sha256:
|
|
2284
|
+
hash: sha256:5df4ffdf1556bef56eb3a5d03e2e6529dae8ea0876dc4e8f3237791b9b7ba851
|
|
2025
2285
|
type: task
|
|
2026
|
-
size:
|
|
2286
|
+
size: 24668
|
|
2027
2287
|
- path: development/tasks/qa-risk-profile.md
|
|
2028
2288
|
hash: sha256:95873134bd7eb1b0cec8982709051dd1c2f97c983b404478d990c88a2fadd5d5
|
|
2029
2289
|
type: task
|
|
@@ -2045,9 +2305,9 @@ files:
|
|
|
2045
2305
|
type: task
|
|
2046
2306
|
size: 11411
|
|
2047
2307
|
- path: development/tasks/release-management.md
|
|
2048
|
-
hash: sha256:
|
|
2308
|
+
hash: sha256:b52530dd80a4ed5b30172e8d197d213e54f4add9f0c2b8fecec0eb68334df1a4
|
|
2049
2309
|
type: task
|
|
2050
|
-
size:
|
|
2310
|
+
size: 18947
|
|
2051
2311
|
- path: development/tasks/remove-mcp.md
|
|
2052
2312
|
hash: sha256:3f4bf3f8d4d651109dc783e95598ab21569447295f22a7b868d3973f0848aa4c
|
|
2053
2313
|
type: task
|
|
@@ -2056,6 +2316,14 @@ files:
|
|
|
2056
2316
|
hash: sha256:969e7ee512c837ef3161ad786b0177ae14818671d7ee2fa989a24e060932a9ed
|
|
2057
2317
|
type: task
|
|
2058
2318
|
size: 8651
|
|
2319
|
+
- path: development/tasks/resolve-github-issue.md
|
|
2320
|
+
hash: sha256:c29abaafa58746b6240a62ad7126646e123f58443b33950a4df9797406ef6b30
|
|
2321
|
+
type: task
|
|
2322
|
+
size: 18271
|
|
2323
|
+
- path: development/tasks/review-contributor-pr.md
|
|
2324
|
+
hash: sha256:257ae093707a89dd1faef9449547eea23a188eecea22fc2e178a54ea5fff0b05
|
|
2325
|
+
type: task
|
|
2326
|
+
size: 5254
|
|
2059
2327
|
- path: development/tasks/run-design-system-pipeline.md
|
|
2060
2328
|
hash: sha256:89482d6d061afa53e155267f51b52b4ae475d27e05320401123209a92994262f
|
|
2061
2329
|
type: task
|
|
@@ -2097,9 +2365,9 @@ files:
|
|
|
2097
2365
|
type: task
|
|
2098
2366
|
size: 31202
|
|
2099
2367
|
- path: development/tasks/setup-llm-routing.md
|
|
2100
|
-
hash: sha256:
|
|
2368
|
+
hash: sha256:41135aa018b8ffcdad7ace7c96b414dd8b8d7d27054f59ddd59f1d7e4b054fbf
|
|
2101
2369
|
type: task
|
|
2102
|
-
size:
|
|
2370
|
+
size: 4692
|
|
2103
2371
|
- path: development/tasks/setup-mcp-docker.md
|
|
2104
2372
|
hash: sha256:2d81956e164d5e62f2e5be6b0c25d37b85fded3dc25a8393fb1cdc44d1dfbddc
|
|
2105
2373
|
type: task
|
|
@@ -2121,21 +2389,21 @@ files:
|
|
|
2121
2389
|
type: task
|
|
2122
2390
|
size: 10448
|
|
2123
2391
|
- path: development/tasks/spec-critique.md
|
|
2124
|
-
hash: sha256:
|
|
2392
|
+
hash: sha256:d2c3615b84dff942bb1c36fe1d89d025a5c52eedf15a382e75bba6cee085e7dd
|
|
2125
2393
|
type: task
|
|
2126
|
-
size:
|
|
2394
|
+
size: 13590
|
|
2127
2395
|
- path: development/tasks/spec-gather-requirements.md
|
|
2128
|
-
hash: sha256:
|
|
2396
|
+
hash: sha256:b2ae9cd6da1233bd610a0a8023dcf1dfece81ab75a1cb6da6b9016e0351a7d40
|
|
2129
2397
|
type: task
|
|
2130
|
-
size:
|
|
2398
|
+
size: 14489
|
|
2131
2399
|
- path: development/tasks/spec-research-dependencies.md
|
|
2132
|
-
hash: sha256:
|
|
2400
|
+
hash: sha256:84e0a3591758980d2d4707563c0f2f066877cb72e0182d78eb2b447234ad05aa
|
|
2133
2401
|
type: task
|
|
2134
|
-
size:
|
|
2402
|
+
size: 9740
|
|
2135
2403
|
- path: development/tasks/spec-write-spec.md
|
|
2136
|
-
hash: sha256:
|
|
2404
|
+
hash: sha256:1ecef348cf83403243398c362629e016ff299b4e0634d7a0581b39d779a113bf
|
|
2137
2405
|
type: task
|
|
2138
|
-
size:
|
|
2406
|
+
size: 11457
|
|
2139
2407
|
- path: development/tasks/squad-creator-analyze.md
|
|
2140
2408
|
hash: sha256:5e1c24c1474e77a517b266c862a915d4b5c632340bb7ea426b5ac50ee53273e0
|
|
2141
2409
|
type: task
|
|
@@ -2204,6 +2472,10 @@ files:
|
|
|
2204
2472
|
hash: sha256:d4ccfa417bd80734ee0b7dbbccbdc8e00fd8af5a62705aa1e1d031b2311f2883
|
|
2205
2473
|
type: task
|
|
2206
2474
|
size: 3341
|
|
2475
|
+
- path: development/tasks/triage-github-issues.md
|
|
2476
|
+
hash: sha256:0a0d97af3e0fec311ea13dbd7e1eb32fbaa769ab57cd4be0cac94e016a0a5283
|
|
2477
|
+
type: task
|
|
2478
|
+
size: 10008
|
|
2207
2479
|
- path: development/tasks/undo-last.md
|
|
2208
2480
|
hash: sha256:e99b5aed1331dbedcd3ef771fa8cf43b59725eee7c222a21f32183baedc7a432
|
|
2209
2481
|
type: task
|
|
@@ -2233,13 +2505,13 @@ files:
|
|
|
2233
2505
|
type: task
|
|
2234
2506
|
size: 13275
|
|
2235
2507
|
- path: development/tasks/validate-agents.md
|
|
2236
|
-
hash: sha256:
|
|
2508
|
+
hash: sha256:cdec9e294c2fea6e2b69d5283ec06588679b77380c125145d2db451367e6a13e
|
|
2237
2509
|
type: task
|
|
2238
|
-
size:
|
|
2510
|
+
size: 3595
|
|
2239
2511
|
- path: development/tasks/validate-next-story.md
|
|
2240
|
-
hash: sha256:
|
|
2512
|
+
hash: sha256:2942bcc95432a9ae06d375edbfadb0325d420fd5fef012fc598149422336967b
|
|
2241
2513
|
type: task
|
|
2242
|
-
size:
|
|
2514
|
+
size: 16914
|
|
2243
2515
|
- path: development/tasks/validate-tech-preset.md
|
|
2244
2516
|
hash: sha256:1919c65909aab2b52a9d2f5c3e2c336711bc873d155707a654dc120ce7d18a25
|
|
2245
2517
|
type: task
|
|
@@ -2260,10 +2532,30 @@ files:
|
|
|
2260
2532
|
hash: sha256:a273d4e3aebfd505b2e15721a49912ed25e4f2d6a58ddcf06e9e6c4d2fc9dec0
|
|
2261
2533
|
type: task
|
|
2262
2534
|
size: 2233
|
|
2535
|
+
- path: development/templates/agent-handoff-tmpl.yaml
|
|
2536
|
+
hash: sha256:683371374512bfbb4e439825074bb5328c2e5936483e70cfeacb81875224011c
|
|
2537
|
+
type: template
|
|
2538
|
+
size: 1987
|
|
2263
2539
|
- path: development/templates/aios-doc-template.md
|
|
2264
2540
|
hash: sha256:755abbb43aacb901a07dd2b66574f7d5a0750bf4f18e59f58fe52c35e61de8c1
|
|
2265
2541
|
type: template
|
|
2266
2542
|
size: 8230
|
|
2543
|
+
- path: development/templates/code-intel-integration-pattern.md
|
|
2544
|
+
hash: sha256:a4018ffc06633c4f829e12df881ac1934f5919400dd518ace7f8079e52db6549
|
|
2545
|
+
type: template
|
|
2546
|
+
size: 6390
|
|
2547
|
+
- path: development/templates/ptc-entity-validation.md
|
|
2548
|
+
hash: sha256:9f35e23319053c301d48db441008a3e61018b8b6e72ced3eb9e6e13e4028ac6a
|
|
2549
|
+
type: template
|
|
2550
|
+
size: 3174
|
|
2551
|
+
- path: development/templates/ptc-qa-gate.md
|
|
2552
|
+
hash: sha256:4331a24f9dbb91f7794f35e910e350fdefbc773a71e8931de73c27cd2303e492
|
|
2553
|
+
type: template
|
|
2554
|
+
size: 2567
|
|
2555
|
+
- path: development/templates/ptc-research-aggregation.md
|
|
2556
|
+
hash: sha256:a61e49c4c6c2b6bcedc142c3f8e3c61173c96f3856ce90ea039c4296eb2c245f
|
|
2557
|
+
type: template
|
|
2558
|
+
size: 3137
|
|
2267
2559
|
- path: development/templates/research-prompt-tmpl.md
|
|
2268
2560
|
hash: sha256:000676982a6f1a22559a673102949604d6b97354356ab1891815ba18e0e72c30
|
|
2269
2561
|
type: template
|
|
@@ -2271,19 +2563,19 @@ files:
|
|
|
2271
2563
|
- path: development/templates/service-template/__tests__/index.test.ts.hbs
|
|
2272
2564
|
hash: sha256:04090b95bc0b606448c161d8e698fcf4d5c7da2517a5ac65663554a54c5acf91
|
|
2273
2565
|
type: template
|
|
2274
|
-
size:
|
|
2566
|
+
size: 9573
|
|
2275
2567
|
- path: development/templates/service-template/client.ts.hbs
|
|
2276
2568
|
hash: sha256:3adbfb5a17d7f734a498bd2520fd44a1eadf05aad9f31b980f886ad6386394a6
|
|
2277
2569
|
type: template
|
|
2278
|
-
size:
|
|
2570
|
+
size: 11810
|
|
2279
2571
|
- path: development/templates/service-template/errors.ts.hbs
|
|
2280
2572
|
hash: sha256:cc7139c0a2654dbd938ba79730fc97b6d30a79b8d1556fe43c61e0fca6553351
|
|
2281
2573
|
type: template
|
|
2282
|
-
size:
|
|
2574
|
+
size: 5213
|
|
2283
2575
|
- path: development/templates/service-template/index.ts.hbs
|
|
2284
2576
|
hash: sha256:29d66364af401592a3ea0d5c4c4ebfb09e67373e62f21caac82b47b1bf78b3b8
|
|
2285
2577
|
type: template
|
|
2286
|
-
size:
|
|
2578
|
+
size: 3086
|
|
2287
2579
|
- path: development/templates/service-template/jest.config.js
|
|
2288
2580
|
hash: sha256:1681bfd7fbc0d330d3487d3427515847c4d57ef300833f573af59e0ad69ed159
|
|
2289
2581
|
type: template
|
|
@@ -2291,11 +2583,11 @@ files:
|
|
|
2291
2583
|
- path: development/templates/service-template/package.json.hbs
|
|
2292
2584
|
hash: sha256:7a25b377c72a98e44758afbe5a5b6d95971e47cca8e248b664ec63d7d1b7a590
|
|
2293
2585
|
type: template
|
|
2294
|
-
size:
|
|
2586
|
+
size: 2227
|
|
2295
2587
|
- path: development/templates/service-template/README.md.hbs
|
|
2296
2588
|
hash: sha256:be6e4531587c37cc2ce1542dbd0c5487752d57f58c84e5dd23978d4173746c2e
|
|
2297
2589
|
type: template
|
|
2298
|
-
size:
|
|
2590
|
+
size: 3426
|
|
2299
2591
|
- path: development/templates/service-template/tsconfig.json
|
|
2300
2592
|
hash: sha256:8b465fcbdd45c4d6821ba99aea62f2bd7998b1bca8de80486a1525e77d43c9a1
|
|
2301
2593
|
type: template
|
|
@@ -2303,7 +2595,7 @@ files:
|
|
|
2303
2595
|
- path: development/templates/service-template/types.ts.hbs
|
|
2304
2596
|
hash: sha256:2338ab2e1ade619bf33a2c8f22b149402b513c05a6d1d8a805c5273c7233d151
|
|
2305
2597
|
type: template
|
|
2306
|
-
size:
|
|
2598
|
+
size: 2516
|
|
2307
2599
|
- path: development/templates/squad-template/agents/example-agent.yaml
|
|
2308
2600
|
hash: sha256:824a1b349965e5d4ae85458c231b78260dc65497da75dada25b271f2cabbbe67
|
|
2309
2601
|
type: agent
|
|
@@ -2311,7 +2603,7 @@ files:
|
|
|
2311
2603
|
- path: development/templates/squad-template/LICENSE
|
|
2312
2604
|
hash: sha256:ff7017aa403270cf2c440f5ccb4240d0b08e54d8bf8a0424d34166e8f3e10138
|
|
2313
2605
|
type: template
|
|
2314
|
-
size:
|
|
2606
|
+
size: 1071
|
|
2315
2607
|
- path: development/templates/squad-template/package.json
|
|
2316
2608
|
hash: sha256:c276fe1a238d9587f72cba1fabafae4ca227d212128f7ad339210c3b6a1bd955
|
|
2317
2609
|
type: template
|
|
@@ -2341,9 +2633,9 @@ files:
|
|
|
2341
2633
|
type: workflow
|
|
2342
2634
|
size: 1173
|
|
2343
2635
|
- path: development/templates/squad/agent-template.md
|
|
2344
|
-
hash: sha256:
|
|
2636
|
+
hash: sha256:1b4c081953a4eb4821a3920d8fbe80c54b9582f0b1100528af6466f24f201499
|
|
2345
2637
|
type: template
|
|
2346
|
-
size:
|
|
2638
|
+
size: 1743
|
|
2347
2639
|
- path: development/templates/squad/checklist-template.md
|
|
2348
2640
|
hash: sha256:5c962f20d7d56ef8800f60dc32f8105b2669311664cfd330301f812dc67934af
|
|
2349
2641
|
type: template
|
|
@@ -2357,9 +2649,9 @@ files:
|
|
|
2357
2649
|
type: template
|
|
2358
2650
|
size: 3375
|
|
2359
2651
|
- path: development/templates/squad/task-template.md
|
|
2360
|
-
hash: sha256:
|
|
2652
|
+
hash: sha256:049a90eadee3efbfef9b605ce01684ae8c83de1478590469578d9e9bf2ef6c44
|
|
2361
2653
|
type: template
|
|
2362
|
-
size:
|
|
2654
|
+
size: 2580
|
|
2363
2655
|
- path: development/templates/squad/template-template.md
|
|
2364
2656
|
hash: sha256:b3f13da1cd377d18d3202bd8998fd9f26ad56b5da4b63e316cd01578998b7f55
|
|
2365
2657
|
type: template
|
|
@@ -2485,13 +2777,13 @@ files:
|
|
|
2485
2777
|
type: elicitation
|
|
2486
2778
|
size: 9677
|
|
2487
2779
|
- path: index.esm.js
|
|
2488
|
-
hash: sha256:
|
|
2780
|
+
hash: sha256:58b32a1ba75bf8283b74ea9da35d3ca3b6a8ade70ce457757ca976abdd86f4d4
|
|
2489
2781
|
type: code
|
|
2490
|
-
size:
|
|
2782
|
+
size: 621
|
|
2491
2783
|
- path: index.js
|
|
2492
|
-
hash: sha256:
|
|
2784
|
+
hash: sha256:980f750dcccc5d7fceaf8ac17b2369935d7b9c8f669cd6936ce3a5c8d5b3dd50
|
|
2493
2785
|
type: code
|
|
2494
|
-
size:
|
|
2786
|
+
size: 745
|
|
2495
2787
|
- path: infrastructure/contracts/compatibility/aios-4.0.4.yaml
|
|
2496
2788
|
hash: sha256:e8bea648df5d62a22a979b9d70e3987690db4e19a1ed3beec11d232746297136
|
|
2497
2789
|
type: infrastructure
|
|
@@ -2517,9 +2809,9 @@ files:
|
|
|
2517
2809
|
type: infrastructure
|
|
2518
2810
|
size: 10494
|
|
2519
2811
|
- path: infrastructure/integrations/ai-providers/index.js
|
|
2520
|
-
hash: sha256:
|
|
2812
|
+
hash: sha256:1eb24026939f97526d432a0f40b787da45ce71b611051dbbe8c2f5b2775bed3b
|
|
2521
2813
|
type: infrastructure
|
|
2522
|
-
size:
|
|
2814
|
+
size: 962
|
|
2523
2815
|
- path: infrastructure/integrations/ai-providers/README.md
|
|
2524
2816
|
hash: sha256:06d9b664dff9cea13d7a98ebbeeb95b6961b2927b3c72f7bc095ad5c7ca88f9c
|
|
2525
2817
|
type: infrastructure
|
|
@@ -2581,9 +2873,9 @@ files:
|
|
|
2581
2873
|
type: infrastructure
|
|
2582
2874
|
size: 5111
|
|
2583
2875
|
- path: infrastructure/schemas/task-v3-schema.json
|
|
2584
|
-
hash: sha256:
|
|
2876
|
+
hash: sha256:1fe3c5d4d14007f0fb03953c0cbcf5d54f33603aaa2d950ed72a7863bcae6c0b
|
|
2585
2877
|
type: infrastructure
|
|
2586
|
-
size:
|
|
2878
|
+
size: 4462
|
|
2587
2879
|
- path: infrastructure/scripts/aios-validator.js
|
|
2588
2880
|
hash: sha256:a48d7e1a6f33ed8f751f2b00b79b316529cd68d181a62a7b4a72ecd4858fc770
|
|
2589
2881
|
type: script
|
|
@@ -2648,6 +2940,10 @@ files:
|
|
|
2648
2940
|
hash: sha256:5ecea0783dcd25191ec7e486c42089bc8d71a336549c2d3142945e7f7de2f6aa
|
|
2649
2941
|
type: script
|
|
2650
2942
|
size: 4572
|
|
2943
|
+
- path: infrastructure/scripts/collect-tool-usage.js
|
|
2944
|
+
hash: sha256:a774697a1675069484cb9f806c6c0532ad77e70c880a9df95cf08208baf71ff7
|
|
2945
|
+
type: script
|
|
2946
|
+
size: 10730
|
|
2651
2947
|
- path: infrastructure/scripts/commit-message-generator.js
|
|
2652
2948
|
hash: sha256:e1286241b9aa6d8918eb682bea331a8ba555341124b1e21c12cc44625ca90a6f
|
|
2653
2949
|
type: script
|
|
@@ -2732,10 +3028,18 @@ files:
|
|
|
2732
3028
|
hash: sha256:2b1bb5ecd76b6a4041b76b18905a88959179ec348be9e11cd520f4bee4719a53
|
|
2733
3029
|
type: script
|
|
2734
3030
|
size: 24263
|
|
3031
|
+
- path: infrastructure/scripts/generate-optimization-report.js
|
|
3032
|
+
hash: sha256:b247a2771eac3d46e5ec10af339959251a290fe7fd75fd916d7722e6840d5338
|
|
3033
|
+
type: script
|
|
3034
|
+
size: 18899
|
|
3035
|
+
- path: infrastructure/scripts/generate-settings-json.js
|
|
3036
|
+
hash: sha256:49156215778d2da818e06759464292e270f769bd51bbdd60f19c5b59af6b4db6
|
|
3037
|
+
type: script
|
|
3038
|
+
size: 8292
|
|
2735
3039
|
- path: infrastructure/scripts/git-config-detector.js
|
|
2736
|
-
hash: sha256:
|
|
3040
|
+
hash: sha256:52ed96d98fc6f9e83671d7d27f78dcff4f2475f3b8e339dc31922f6b2814ad78
|
|
2737
3041
|
type: script
|
|
2738
|
-
size:
|
|
3042
|
+
size: 8962
|
|
2739
3043
|
- path: infrastructure/scripts/git-hooks/post-commit.js
|
|
2740
3044
|
hash: sha256:79144d2d229f4b6c035a3c20d72d3c6bc8f0a6a2e0771b70beb94ab9bca092aa
|
|
2741
3045
|
type: script
|
|
@@ -2757,9 +3061,9 @@ files:
|
|
|
2757
3061
|
type: script
|
|
2758
3062
|
size: 5534
|
|
2759
3063
|
- path: infrastructure/scripts/ide-sync/index.js
|
|
2760
|
-
hash: sha256:
|
|
3064
|
+
hash: sha256:edd61eac7af50a1b2ccd2ae8a769b4c0fa9bc5cebc480d9273402e767e92bd19
|
|
2761
3065
|
type: script
|
|
2762
|
-
size:
|
|
3066
|
+
size: 14906
|
|
2763
3067
|
- path: infrastructure/scripts/ide-sync/README.md
|
|
2764
3068
|
hash: sha256:4b7ce30ded1d8a81c2d293711d6f20cd97fad5c8d014c4102c80e4a54978711f
|
|
2765
3069
|
type: script
|
|
@@ -2780,6 +3084,10 @@ files:
|
|
|
2780
3084
|
hash: sha256:fe38ba6960cc7e1dd2f1de963cdfc5a4be83eb5240c696e9eea607421a23cf22
|
|
2781
3085
|
type: script
|
|
2782
3086
|
size: 2427
|
|
3087
|
+
- path: infrastructure/scripts/ide-sync/transformers/github-copilot.js
|
|
3088
|
+
hash: sha256:25471b51a79d75008e4257bb495dd9c78deb2ca8b236f447064ae776d645d39c
|
|
3089
|
+
type: script
|
|
3090
|
+
size: 5693
|
|
2783
3091
|
- path: infrastructure/scripts/ide-sync/validator.js
|
|
2784
3092
|
hash: sha256:356c78125db7f88d14f4e521808e96593d729291c3d7a1c36cb02f78b4aef8fc
|
|
2785
3093
|
type: script
|
|
@@ -2917,9 +3225,9 @@ files:
|
|
|
2917
3225
|
type: script
|
|
2918
3226
|
size: 34686
|
|
2919
3227
|
- path: infrastructure/scripts/repository-detector.js
|
|
2920
|
-
hash: sha256:
|
|
3228
|
+
hash: sha256:c0299e57ff1f06108660c8bb580893d8e9777bf8f9a7596097559761a0e84bb9
|
|
2921
3229
|
type: script
|
|
2922
|
-
size:
|
|
3230
|
+
size: 2141
|
|
2923
3231
|
- path: infrastructure/scripts/rollback-manager.js
|
|
2924
3232
|
hash: sha256:6391d9e16f5c75f753c2ea5eff58301ec05c9d0b2486040c45b1ef3405c2f3a1
|
|
2925
3233
|
type: script
|
|
@@ -3039,11 +3347,11 @@ files:
|
|
|
3039
3347
|
- path: infrastructure/templates/aios-sync.yaml.template
|
|
3040
3348
|
hash: sha256:a22718c4eec5b7bc808cb283f18a96c96cfcbbed4a0ffec6e332da45a4a0a549
|
|
3041
3349
|
type: template
|
|
3042
|
-
size:
|
|
3350
|
+
size: 8385
|
|
3043
3351
|
- path: infrastructure/templates/coderabbit.yaml.template
|
|
3044
3352
|
hash: sha256:a8f8e08e5c109b4c635a468e9b400bfb35361073de8a0883c5d4c9db84d7ed0a
|
|
3045
3353
|
type: template
|
|
3046
|
-
size:
|
|
3354
|
+
size: 8042
|
|
3047
3355
|
- path: infrastructure/templates/core-config/core-config-brownfield.tmpl.yaml
|
|
3048
3356
|
hash: sha256:de54c7ffc1d785ff2aa43fb268c0dc0ad8a7215b77080a4dc0aaf5e49e02bc58
|
|
3049
3357
|
type: template
|
|
@@ -3055,11 +3363,11 @@ files:
|
|
|
3055
3363
|
- path: infrastructure/templates/github-workflows/ci.yml.template
|
|
3056
3364
|
hash: sha256:ad7ea9f338b7bfec281a6136d40df3954cbaf239245e41e2eb227abf15d001d4
|
|
3057
3365
|
type: template
|
|
3058
|
-
size:
|
|
3366
|
+
size: 4920
|
|
3059
3367
|
- path: infrastructure/templates/github-workflows/pr-automation.yml.template
|
|
3060
3368
|
hash: sha256:46c334bd347a0b36a8de55a4c1db2eb9e66b350555a50439b05000f05fbe307b
|
|
3061
3369
|
type: template
|
|
3062
|
-
size:
|
|
3370
|
+
size: 10609
|
|
3063
3371
|
- path: infrastructure/templates/github-workflows/README.md
|
|
3064
3372
|
hash: sha256:d498f88d14a2eea695ff01dfb27886a9838576bf2be9a4dcbd923d5ae4b9f094
|
|
3065
3373
|
type: template
|
|
@@ -3067,23 +3375,23 @@ files:
|
|
|
3067
3375
|
- path: infrastructure/templates/github-workflows/release.yml.template
|
|
3068
3376
|
hash: sha256:bd40c93023c56489a45690a5829beda662f738f0687beb46bef31475ceee8027
|
|
3069
3377
|
type: template
|
|
3070
|
-
size:
|
|
3378
|
+
size: 6595
|
|
3071
3379
|
- path: infrastructure/templates/gitignore/gitignore-aios-base.tmpl
|
|
3072
3380
|
hash: sha256:eea52813b21c411ada64d2560913cc853a53b8d00ad916f0c9480cd11324b764
|
|
3073
3381
|
type: template
|
|
3074
|
-
size:
|
|
3382
|
+
size: 788
|
|
3075
3383
|
- path: infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl
|
|
3076
3384
|
hash: sha256:da10b4280d52fe7a76649d11ed9d72d452ece94bb5d46e06705ca585589d9e20
|
|
3077
3385
|
type: template
|
|
3078
|
-
size:
|
|
3386
|
+
size: 488
|
|
3079
3387
|
- path: infrastructure/templates/gitignore/gitignore-node.tmpl
|
|
3080
3388
|
hash: sha256:46d261d54d9b57cdecd54ae2d6f19b9971b380316700824caf6026543b6afe5b
|
|
3081
3389
|
type: template
|
|
3082
|
-
size:
|
|
3390
|
+
size: 951
|
|
3083
3391
|
- path: infrastructure/templates/gitignore/gitignore-python.tmpl
|
|
3084
3392
|
hash: sha256:f8da7c8fb5888a59332e63ea5137ed808f6cf1075fd175104a79c44479c749ba
|
|
3085
3393
|
type: template
|
|
3086
|
-
size:
|
|
3394
|
+
size: 1580
|
|
3087
3395
|
- path: infrastructure/templates/project-docs/coding-standards-tmpl.md
|
|
3088
3396
|
hash: sha256:f5eeba2464907e57fad287d842febc64ad22d27f2d33ea2fe74151646a57aaee
|
|
3089
3397
|
type: template
|
|
@@ -3179,43 +3487,43 @@ files:
|
|
|
3179
3487
|
- path: monitor/hooks/lib/__init__.py
|
|
3180
3488
|
hash: sha256:26147f29392400ed7bb87ca750af1c1bdd191193990463952282eaaffc1f35a2
|
|
3181
3489
|
type: monitor
|
|
3182
|
-
size:
|
|
3490
|
+
size: 29
|
|
3183
3491
|
- path: monitor/hooks/lib/enrich.py
|
|
3184
3492
|
hash: sha256:f796c327b54e5282027babe325f9629ad21440275c2a3fdb277840898bdf3653
|
|
3185
3493
|
type: monitor
|
|
3186
|
-
size:
|
|
3494
|
+
size: 1644
|
|
3187
3495
|
- path: monitor/hooks/lib/send_event.py
|
|
3188
3496
|
hash: sha256:2ec9ec9abfded4c0b67a49429d192f171758c0fb4e8a1bf1e47f2c8e32aa47ea
|
|
3189
3497
|
type: monitor
|
|
3190
|
-
size:
|
|
3498
|
+
size: 1190
|
|
3191
3499
|
- path: monitor/hooks/notification.py
|
|
3192
3500
|
hash: sha256:ae9e484772e090c557fcda3be46d19b9c48d7bec9789652cbfec17d7616a956f
|
|
3193
3501
|
type: monitor
|
|
3194
|
-
size:
|
|
3502
|
+
size: 499
|
|
3195
3503
|
- path: monitor/hooks/post_tool_use.py
|
|
3196
3504
|
hash: sha256:5599de99f3292ce7b57ad754abe9a0bfb462b1babc95a2bab22016528eb2515b
|
|
3197
3505
|
type: monitor
|
|
3198
|
-
size:
|
|
3506
|
+
size: 1140
|
|
3199
3507
|
- path: monitor/hooks/pre_compact.py
|
|
3200
3508
|
hash: sha256:df11373948b986814a7602a9dd61a384055de13392a7aa246063b4c4ea75fddd
|
|
3201
3509
|
type: monitor
|
|
3202
|
-
size:
|
|
3510
|
+
size: 500
|
|
3203
3511
|
- path: monitor/hooks/pre_tool_use.py
|
|
3204
3512
|
hash: sha256:e4a7bbd6cbb6e17b819f629ef88a24947612f4dffbe19fab897b9ff4a409efc2
|
|
3205
3513
|
type: monitor
|
|
3206
|
-
size:
|
|
3514
|
+
size: 981
|
|
3207
3515
|
- path: monitor/hooks/stop.py
|
|
3208
3516
|
hash: sha256:9737bcedd34cfdf459641e2f0e74eacf7a56d0e7ad0fb05a32a40c0afc87443e
|
|
3209
3517
|
type: monitor
|
|
3210
|
-
size:
|
|
3518
|
+
size: 490
|
|
3211
3519
|
- path: monitor/hooks/subagent_stop.py
|
|
3212
3520
|
hash: sha256:cfe2b5361a0b668f90d738bcd18f478e2ea49459304b203608377a1226d2bebb
|
|
3213
3521
|
type: monitor
|
|
3214
|
-
size:
|
|
3522
|
+
size: 512
|
|
3215
3523
|
- path: monitor/hooks/user_prompt_submit.py
|
|
3216
3524
|
hash: sha256:f8f9a7550121832811c2d2d12b93d5d42fa7180ddec85c49ae3841c9d259ab76
|
|
3217
3525
|
type: monitor
|
|
3218
|
-
size:
|
|
3526
|
+
size: 818
|
|
3219
3527
|
- path: package.json
|
|
3220
3528
|
hash: sha256:dff580c83cc1554c75162c9cabb711b5cd85e679c9c8f4968ee74499e99de0c0
|
|
3221
3529
|
type: other
|
|
@@ -3363,7 +3671,7 @@ files:
|
|
|
3363
3671
|
- path: product/templates/adr.hbs
|
|
3364
3672
|
hash: sha256:401c2a3ce81905cd4665439d4e2afece92a7c93a1499a927b3522272e6a58027
|
|
3365
3673
|
type: template
|
|
3366
|
-
size:
|
|
3674
|
+
size: 2212
|
|
3367
3675
|
- path: product/templates/agent-template.yaml
|
|
3368
3676
|
hash: sha256:4ad34c41d9e7546c208e4680faa8a30969d6505d59d17111b27d2963a8a22e73
|
|
3369
3677
|
type: template
|
|
@@ -3415,7 +3723,7 @@ files:
|
|
|
3415
3723
|
- path: product/templates/dbdr.hbs
|
|
3416
3724
|
hash: sha256:67de8a2a0fd90ed71111cb31a4c84209ff8b09b4ae263158a0f545ae3ac84cc5
|
|
3417
3725
|
type: template
|
|
3418
|
-
size:
|
|
3726
|
+
size: 4139
|
|
3419
3727
|
- path: product/templates/design-story-tmpl.yaml
|
|
3420
3728
|
hash: sha256:bbf1a20323b217b668c8466307988e505e49f4e472df47b6411b6037511c9b7d
|
|
3421
3729
|
type: template
|
|
@@ -3479,7 +3787,7 @@ files:
|
|
|
3479
3787
|
- path: product/templates/epic.hbs
|
|
3480
3788
|
hash: sha256:abc175a126ff12aaf8fc06201fd36ea8415806d49b95bb86197829997c17a610
|
|
3481
3789
|
type: template
|
|
3482
|
-
size:
|
|
3790
|
+
size: 3868
|
|
3483
3791
|
- path: product/templates/eslintrc-security.json
|
|
3484
3792
|
hash: sha256:657d40117261d6a52083984d29f9f88e79040926a64aa4c2058a602bfe91e0d5
|
|
3485
3793
|
type: template
|
|
@@ -3521,9 +3829,9 @@ files:
|
|
|
3521
3829
|
type: template
|
|
3522
3830
|
size: 3081
|
|
3523
3831
|
- path: product/templates/ide-rules/claude-rules.md
|
|
3524
|
-
hash: sha256:
|
|
3832
|
+
hash: sha256:ef505749c208418e477371e606c0d7c827f6b86d0135a4f280d5a0e276be1cba
|
|
3525
3833
|
type: template
|
|
3526
|
-
size:
|
|
3834
|
+
size: 12679
|
|
3527
3835
|
- path: product/templates/ide-rules/codex-rules.md
|
|
3528
3836
|
hash: sha256:e8345404f17977a268b917a4ff86e4f10f80174a6bb572865e5413c8f7dd217a
|
|
3529
3837
|
type: template
|
|
@@ -3587,7 +3895,7 @@ files:
|
|
|
3587
3895
|
- path: product/templates/pmdr.hbs
|
|
3588
3896
|
hash: sha256:90cb8dcb877938af538a6c7470233a0d908dc1a1041cffe845ad196887ab13a5
|
|
3589
3897
|
type: template
|
|
3590
|
-
size:
|
|
3898
|
+
size: 3239
|
|
3591
3899
|
- path: product/templates/prd-tmpl.yaml
|
|
3592
3900
|
hash: sha256:f94734d78f9df14e0236719dfc63666a4506bcc076fbcdb5e5c5e5e1a3660876
|
|
3593
3901
|
type: template
|
|
@@ -3595,11 +3903,11 @@ files:
|
|
|
3595
3903
|
- path: product/templates/prd-v2.0.hbs
|
|
3596
3904
|
hash: sha256:6a716525255c1236d75bfc1e2be6005006ba827fdf2b4d55e7453140a13df71a
|
|
3597
3905
|
type: template
|
|
3598
|
-
size:
|
|
3906
|
+
size: 4512
|
|
3599
3907
|
- path: product/templates/prd.hbs
|
|
3600
3908
|
hash: sha256:b110a469ae0ba12ccaf5cae59daefbf08ba6e1b96cb6f1d5afc49c1a2d6739d3
|
|
3601
3909
|
type: template
|
|
3602
|
-
size:
|
|
3910
|
+
size: 3425
|
|
3603
3911
|
- path: product/templates/project-brief-tmpl.yaml
|
|
3604
3912
|
hash: sha256:b8d388268c24dc5018f48a87036d591b11cb122fafe9b59c17809b06ea5d9d58
|
|
3605
3913
|
type: template
|
|
@@ -3647,7 +3955,7 @@ files:
|
|
|
3647
3955
|
- path: product/templates/story.hbs
|
|
3648
3956
|
hash: sha256:5a51064b2e371b3e2b22080df2993da0c2517c442c80e3cada3006387a4d29ab
|
|
3649
3957
|
type: template
|
|
3650
|
-
size:
|
|
3958
|
+
size: 5583
|
|
3651
3959
|
- path: product/templates/task-execution-report.md
|
|
3652
3960
|
hash: sha256:6ca0126115ddb0c31b584a964a9938dbbbb8e187e02d6001bd5b69d3d4359992
|
|
3653
3961
|
type: template
|
|
@@ -3659,67 +3967,67 @@ files:
|
|
|
3659
3967
|
- path: product/templates/task.hbs
|
|
3660
3968
|
hash: sha256:6aacffe2c92bf87d3040f2de75f45a586d819f1f73fcdabfadeca6ecb30f1f20
|
|
3661
3969
|
type: template
|
|
3662
|
-
size:
|
|
3970
|
+
size: 2705
|
|
3663
3971
|
- path: product/templates/tmpl-comment-on-examples.sql
|
|
3664
3972
|
hash: sha256:254002c3fbc63cfcc5848b1d4b15822ce240bf5f57e6a1c8bb984e797edc2691
|
|
3665
3973
|
type: template
|
|
3666
|
-
size:
|
|
3974
|
+
size: 6215
|
|
3667
3975
|
- path: product/templates/tmpl-migration-script.sql
|
|
3668
3976
|
hash: sha256:44ef63ea475526d21a11e3c667c9fdb78a9fddace80fdbaa2312b7f2724fbbb5
|
|
3669
3977
|
type: template
|
|
3670
|
-
size:
|
|
3978
|
+
size: 2947
|
|
3671
3979
|
- path: product/templates/tmpl-rls-granular-policies.sql
|
|
3672
3980
|
hash: sha256:36c2fd8c6d9eebb5d164acb0fb0c87bc384d389264b4429ce21e77e06318f5f3
|
|
3673
3981
|
type: template
|
|
3674
|
-
size:
|
|
3982
|
+
size: 3322
|
|
3675
3983
|
- path: product/templates/tmpl-rls-kiss-policy.sql
|
|
3676
3984
|
hash: sha256:5210d37fce62e5a9a00e8d5366f5f75653cd518be73fbf96333ed8a6712453c7
|
|
3677
3985
|
type: template
|
|
3678
|
-
size:
|
|
3986
|
+
size: 299
|
|
3679
3987
|
- path: product/templates/tmpl-rls-roles.sql
|
|
3680
3988
|
hash: sha256:2d032a608a8e87440c3a430c7d69ddf9393d8813d8d4129270f640dd847425c3
|
|
3681
3989
|
type: template
|
|
3682
|
-
size:
|
|
3990
|
+
size: 4592
|
|
3683
3991
|
- path: product/templates/tmpl-rls-simple.sql
|
|
3684
3992
|
hash: sha256:f67af0fa1cdd2f2af9eab31575ac3656d82457421208fd9ccb8b57ca9785275e
|
|
3685
3993
|
type: template
|
|
3686
|
-
size:
|
|
3994
|
+
size: 2915
|
|
3687
3995
|
- path: product/templates/tmpl-rls-tenant.sql
|
|
3688
3996
|
hash: sha256:36629ed87a2c72311809cc3fb96298b6f38716bba35bc56c550ac39d3321757a
|
|
3689
3997
|
type: template
|
|
3690
|
-
size:
|
|
3998
|
+
size: 4978
|
|
3691
3999
|
- path: product/templates/tmpl-rollback-script.sql
|
|
3692
4000
|
hash: sha256:8b84046a98f1163faf7350322f43831447617c5a63a94c88c1a71b49804e022b
|
|
3693
4001
|
type: template
|
|
3694
|
-
size:
|
|
4002
|
+
size: 2657
|
|
3695
4003
|
- path: product/templates/tmpl-seed-data.sql
|
|
3696
4004
|
hash: sha256:a65e73298f46cd6a8e700f29b9d8d26e769e12a57751a943a63fd0fe15768615
|
|
3697
4005
|
type: template
|
|
3698
|
-
size:
|
|
4006
|
+
size: 5576
|
|
3699
4007
|
- path: product/templates/tmpl-smoke-test.sql
|
|
3700
4008
|
hash: sha256:aee7e48bb6d9c093769dee215cacc9769939501914e20e5ea8435b25fad10f3c
|
|
3701
4009
|
type: template
|
|
3702
|
-
size:
|
|
4010
|
+
size: 723
|
|
3703
4011
|
- path: product/templates/tmpl-staging-copy-merge.sql
|
|
3704
4012
|
hash: sha256:55988caeb47cc04261665ba7a37f4caa2aa5fac2e776fdbc5964e0587af24450
|
|
3705
4013
|
type: template
|
|
3706
|
-
size:
|
|
4014
|
+
size: 4081
|
|
3707
4015
|
- path: product/templates/tmpl-stored-proc.sql
|
|
3708
4016
|
hash: sha256:2b205ff99dc0adfade6047a4d79f5b50109e50ceb45386e5c886437692c7a2a3
|
|
3709
4017
|
type: template
|
|
3710
|
-
size:
|
|
4018
|
+
size: 3839
|
|
3711
4019
|
- path: product/templates/tmpl-trigger.sql
|
|
3712
4020
|
hash: sha256:93abdc92e1b475d1370094e69a9d1b18afd804da6acb768b878355c798bd8e0e
|
|
3713
4021
|
type: template
|
|
3714
|
-
size:
|
|
4022
|
+
size: 5272
|
|
3715
4023
|
- path: product/templates/tmpl-view-materialized.sql
|
|
3716
4024
|
hash: sha256:47935510f03d4ad9b2200748e65441ce6c2d6a7c74750395eca6831d77c48e91
|
|
3717
4025
|
type: template
|
|
3718
|
-
size:
|
|
4026
|
+
size: 4363
|
|
3719
4027
|
- path: product/templates/tmpl-view.sql
|
|
3720
4028
|
hash: sha256:22557b076003a856b32397f05fa44245a126521de907058a95e14dd02da67aff
|
|
3721
4029
|
type: template
|
|
3722
|
-
size:
|
|
4030
|
+
size: 4916
|
|
3723
4031
|
- path: product/templates/token-exports-css-tmpl.css
|
|
3724
4032
|
hash: sha256:d937b8d61cdc9e5b10fdff871c6cb41c9f756004d060d671e0ae26624a047f62
|
|
3725
4033
|
type: template
|
|
@@ -3957,9 +4265,9 @@ files:
|
|
|
3957
4265
|
type: script
|
|
3958
4266
|
size: 1708
|
|
3959
4267
|
- path: user-guide.md
|
|
3960
|
-
hash: sha256:
|
|
4268
|
+
hash: sha256:423301e80a529932c464341832f02f99f7a061048b033d96875884ae53091ffd
|
|
3961
4269
|
type: documentation
|
|
3962
|
-
size:
|
|
4270
|
+
size: 38240
|
|
3963
4271
|
- path: workflow-intelligence/__tests__/confidence-scorer.test.js
|
|
3964
4272
|
hash: sha256:237216842d3eb710ae33f3aba6c7b2a6a353cccc1dea6d4b927d8d063d9cb635
|
|
3965
4273
|
type: workflow-intelligence
|