aios-core 4.0.2 → 4.1.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/migrate/analyze.js +6 -6
- package/.aios-core/cli/commands/migrate/backup.js +2 -2
- package/.aios-core/cli/commands/migrate/execute.js +4 -4
- package/.aios-core/cli/commands/migrate/index.js +5 -5
- package/.aios-core/cli/commands/migrate/rollback.js +6 -6
- package/.aios-core/cli/commands/migrate/update-imports.js +2 -2
- package/.aios-core/cli/commands/migrate/validate.js +2 -2
- package/.aios-core/cli/commands/pro/index.js +52 -0
- package/.aios-core/cli/index.js +1 -1
- package/.aios-core/core/ids/registry-updater.js +29 -3
- package/.aios-core/core/migration/migration-config.yaml +2 -2
- package/.aios-core/core/migration/module-mapping.yaml +2 -2
- package/.aios-core/core/registry/README.md +2 -2
- package/.aios-core/core/synapse/context/context-builder.js +34 -0
- package/.aios-core/core/synapse/diagnostics/collectors/consistency-collector.js +168 -0
- package/.aios-core/core/synapse/diagnostics/collectors/hook-collector.js +129 -0
- package/.aios-core/core/synapse/diagnostics/collectors/manifest-collector.js +82 -0
- package/.aios-core/core/synapse/diagnostics/collectors/output-analyzer.js +134 -0
- package/.aios-core/core/synapse/diagnostics/collectors/pipeline-collector.js +75 -0
- package/.aios-core/core/synapse/diagnostics/collectors/quality-collector.js +252 -0
- package/.aios-core/core/synapse/diagnostics/collectors/relevance-matrix.js +174 -0
- package/.aios-core/core/synapse/diagnostics/collectors/safe-read-json.js +31 -0
- package/.aios-core/core/synapse/diagnostics/collectors/session-collector.js +102 -0
- package/.aios-core/core/synapse/diagnostics/collectors/timing-collector.js +126 -0
- package/.aios-core/core/synapse/diagnostics/collectors/uap-collector.js +83 -0
- package/.aios-core/core/synapse/diagnostics/report-formatter.js +484 -0
- package/.aios-core/core/synapse/diagnostics/synapse-diagnostics.js +95 -0
- package/.aios-core/core/synapse/engine.js +73 -20
- package/.aios-core/core/synapse/runtime/hook-runtime.js +60 -0
- package/.aios-core/core-config.yaml +6 -0
- package/.aios-core/data/agent-config-requirements.yaml +2 -2
- package/.aios-core/data/aios-kb.md +4 -4
- package/.aios-core/data/entity-registry.yaml +5 -5
- package/.aios-core/development/agents/architect.md +10 -10
- package/.aios-core/development/agents/devops.md +93 -50
- package/.aios-core/development/agents/qa.md +94 -40
- package/.aios-core/development/agents/ux-design-expert.md +25 -25
- package/.aios-core/development/scripts/activation-runtime.js +63 -0
- package/.aios-core/development/scripts/generate-greeting.js +9 -8
- package/.aios-core/development/scripts/unified-activation-pipeline.js +102 -2
- package/.aios-core/development/tasks/{db-expansion-pack-integration.md → db-squad-integration.md} +5 -5
- package/.aios-core/development/tasks/{integrate-expansion-pack.md → integrate-squad.md} +2 -2
- package/.aios-core/development/tasks/next.md +3 -3
- package/.aios-core/development/tasks/pr-automation.md +2 -2
- package/.aios-core/development/tasks/publish-npm.md +257 -0
- package/.aios-core/development/tasks/release-management.md +4 -4
- package/.aios-core/development/tasks/setup-github.md +1 -1
- package/.aios-core/development/tasks/squad-creator-migrate.md +1 -1
- package/.aios-core/development/tasks/squad-creator-sync-ide-command.md +14 -14
- package/.aios-core/development/tasks/update-aios.md +1 -1
- package/.aios-core/docs/standards/AIOS-COLOR-PALETTE-QUICK-REFERENCE.md +1 -1
- package/.aios-core/docs/standards/AIOS-COLOR-PALETTE-V2.1.md +5 -5
- package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO-V2.1-COMPLETE.md +21 -21
- package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO-V2.2-SUMMARY.md +25 -25
- package/.aios-core/docs/standards/OPEN-SOURCE-VS-SERVICE-DIFFERENCES.md +4 -4
- package/.aios-core/docs/standards/QUALITY-GATES-SPECIFICATION.md +3 -3
- package/.aios-core/docs/standards/STANDARDS-INDEX.md +13 -13
- package/.aios-core/docs/standards/STORY-TEMPLATE-V2-SPECIFICATION.md +1 -1
- package/.aios-core/framework-config.yaml +4 -0
- package/.aios-core/infrastructure/scripts/codex-skills-sync/index.js +182 -0
- package/.aios-core/infrastructure/scripts/codex-skills-sync/validate.js +172 -0
- package/.aios-core/infrastructure/scripts/ide-sync/README.md +14 -0
- package/.aios-core/infrastructure/scripts/ide-sync/index.js +6 -0
- package/.aios-core/infrastructure/scripts/tool-resolver.js +4 -4
- package/.aios-core/infrastructure/scripts/validate-paths.js +142 -0
- package/.aios-core/infrastructure/templates/aios-sync.yaml.template +11 -11
- package/.aios-core/infrastructure/templates/github-workflows/README.md +1 -1
- package/.aios-core/install-manifest.yaml +190 -106
- package/.aios-core/local-config.yaml.template +2 -0
- package/.aios-core/product/README.md +2 -2
- package/.aios-core/product/data/integration-patterns.md +1 -1
- package/.aios-core/product/templates/ide-rules/cline-rules.md +1 -1
- package/.aios-core/product/templates/ide-rules/codex-rules.md +65 -0
- package/.aios-core/product/templates/ide-rules/copilot-rules.md +1 -1
- package/.aios-core/product/templates/ide-rules/roo-rules.md +1 -1
- package/.aios-core/user-guide.md +15 -14
- package/.aios-core/workflow-intelligence/engine/output-formatter.js +1 -1
- package/.claude/hooks/enforce-architecture-first.py +196 -0
- package/.claude/hooks/install-hooks.sh +41 -0
- package/.claude/hooks/mind-clone-governance.py +192 -0
- package/.claude/hooks/pre-commit-mmos-guard.sh +99 -0
- package/.claude/hooks/pre-commit-version-check.sh +156 -0
- package/.claude/hooks/read-protection.py +151 -0
- package/.claude/hooks/slug-validation.py +176 -0
- package/.claude/hooks/sql-governance.py +182 -0
- package/.claude/hooks/synapse-engine.js +9 -20
- package/.claude/hooks/write-path-validation.py +194 -0
- package/README.md +44 -14
- package/bin/aios-init.js +255 -184
- package/bin/aios-minimal.js +2 -2
- package/bin/aios.js +19 -19
- package/package.json +7 -4
- package/packages/aios-pro-cli/bin/aios-pro.js +75 -2
- package/packages/aios-pro-cli/package.json +5 -1
- package/packages/aios-pro-cli/src/recover.js +100 -0
- package/packages/installer/src/__tests__/performance-benchmark.js +382 -0
- package/packages/installer/src/config/ide-configs.js +12 -1
- package/packages/installer/src/config/templates/core-config-template.js +2 -2
- package/packages/installer/src/installer/aios-core-installer.js +2 -2
- package/packages/installer/src/installer/file-hasher.js +97 -0
- package/packages/installer/src/installer/post-install-validator.js +41 -1
- package/packages/installer/src/pro/pro-scaffolder.js +335 -0
- package/packages/installer/src/utils/aios-colors.js +2 -2
- package/packages/installer/src/wizard/feedback.js +1 -1
- package/packages/installer/src/wizard/ide-config-generator.js +2 -2
- package/packages/installer/src/wizard/index.js +58 -19
- package/packages/installer/src/wizard/pro-setup.js +547 -0
- package/packages/installer/src/wizard/questions.js +20 -14
- package/packages/installer/src/wizard/validators.js +1 -1
- package/scripts/package-synapse.js +323 -0
- package/scripts/validate-package-completeness.js +317 -0
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
# - SHA256 hashes for change detection
|
|
8
8
|
# - File types for categorization
|
|
9
9
|
#
|
|
10
|
-
version: 4.0
|
|
11
|
-
generated_at: "2026-02-
|
|
10
|
+
version: 4.1.0
|
|
11
|
+
generated_at: "2026-02-15T20:41:18.885Z"
|
|
12
12
|
generator: scripts/generate-install-manifest.js
|
|
13
|
-
file_count:
|
|
13
|
+
file_count: 992
|
|
14
14
|
files:
|
|
15
15
|
- path: cli/commands/config/index.js
|
|
16
16
|
hash: sha256:ebcad2ce3807eda29dcddff76d7a95ddc9b7fa160df21fd608f94b802237e862
|
|
@@ -73,37 +73,37 @@ files:
|
|
|
73
73
|
type: cli
|
|
74
74
|
size: 7182
|
|
75
75
|
- path: cli/commands/migrate/analyze.js
|
|
76
|
-
hash: sha256:
|
|
76
|
+
hash: sha256:83ad1e0438dacc057ae4397d49e0abd4bd9a8e417a936f21ac7d5ccff6bc80fa
|
|
77
77
|
type: cli
|
|
78
|
-
size:
|
|
78
|
+
size: 9398
|
|
79
79
|
- path: cli/commands/migrate/backup.js
|
|
80
|
-
hash: sha256:
|
|
80
|
+
hash: sha256:c8dba7eeace48beb381157cb603dd721b350a0da8230b1f31cf99a38cedcbdfb
|
|
81
81
|
type: cli
|
|
82
|
-
size:
|
|
82
|
+
size: 9587
|
|
83
83
|
- path: cli/commands/migrate/execute.js
|
|
84
|
-
hash: sha256:
|
|
84
|
+
hash: sha256:5c8f754892b2563a889438e7bbce1400c0dfdac35567727e616924ffab0c416a
|
|
85
85
|
type: cli
|
|
86
|
-
size:
|
|
86
|
+
size: 7827
|
|
87
87
|
- path: cli/commands/migrate/index.js
|
|
88
|
-
hash: sha256:
|
|
88
|
+
hash: sha256:1f80098c6b3f862c1d0f0f2cf0eccea2d5c12e5956fe6001453b6577c9c9711e
|
|
89
89
|
type: cli
|
|
90
|
-
size:
|
|
90
|
+
size: 12389
|
|
91
91
|
- path: cli/commands/migrate/rollback.js
|
|
92
|
-
hash: sha256:
|
|
92
|
+
hash: sha256:9bf8662c17b1dea817f58452943c958815dfd1b7f5ac5d684ef9a03d417d8c7f
|
|
93
93
|
type: cli
|
|
94
|
-
size:
|
|
94
|
+
size: 8536
|
|
95
95
|
- path: cli/commands/migrate/update-imports.js
|
|
96
|
-
hash: sha256:
|
|
96
|
+
hash: sha256:1db3f6eb7a9c4ae20633e4377943c698a977987408f120331c5d1896bd3c985b
|
|
97
97
|
type: cli
|
|
98
|
-
size:
|
|
98
|
+
size: 11154
|
|
99
99
|
- path: cli/commands/migrate/validate.js
|
|
100
|
-
hash: sha256:
|
|
100
|
+
hash: sha256:e598bdf288bb8480496f7f2809c3ddb75b6656b3f10239bd5311ff33a8272f97
|
|
101
101
|
type: cli
|
|
102
|
-
size:
|
|
102
|
+
size: 12326
|
|
103
103
|
- path: cli/commands/pro/index.js
|
|
104
|
-
hash: sha256:
|
|
104
|
+
hash: sha256:fd8844717b3987dfb67860640d96663c755188c52f10cc8a1e248b96aaa84449
|
|
105
105
|
type: cli
|
|
106
|
-
size:
|
|
106
|
+
size: 21940
|
|
107
107
|
- path: cli/commands/qa/index.js
|
|
108
108
|
hash: sha256:ff9c3669e31319d5e7be9b42a45f8ef7b9525ed2094e320000bc06cdd0625ca7
|
|
109
109
|
type: cli
|
|
@@ -165,9 +165,9 @@ files:
|
|
|
165
165
|
type: cli
|
|
166
166
|
size: 2439
|
|
167
167
|
- path: cli/index.js
|
|
168
|
-
hash: sha256:
|
|
168
|
+
hash: sha256:328cd4192935d1ebaf1fb0a5ef16c43edc01894744e7ddaabfe9a08b20719d3e
|
|
169
169
|
type: cli
|
|
170
|
-
size:
|
|
170
|
+
size: 4387
|
|
171
171
|
- path: cli/utils/output-formatter-cli.js
|
|
172
172
|
hash: sha256:4b8a6b8e1fbb3216211d1cb2003bd34a59e651a94b9e0734699ec9dd3881ca73
|
|
173
173
|
type: cli
|
|
@@ -177,9 +177,9 @@ files:
|
|
|
177
177
|
type: cli
|
|
178
178
|
size: 5907
|
|
179
179
|
- path: core-config.yaml
|
|
180
|
-
hash: sha256:
|
|
180
|
+
hash: sha256:10c4b0683612f98b6b3b500592c687aa5a0925cdb814d54b00a8e76bfd413c07
|
|
181
181
|
type: config
|
|
182
|
-
size:
|
|
182
|
+
size: 9283
|
|
183
183
|
- path: core/config/config-cache.js
|
|
184
184
|
hash: sha256:527a788cbe650aa6b13d1101ebc16419489bfef20b2ee93042f6eb6a51e898e9
|
|
185
185
|
type: core
|
|
@@ -549,9 +549,9 @@ files:
|
|
|
549
549
|
type: core
|
|
550
550
|
size: 7170
|
|
551
551
|
- path: core/ids/registry-updater.js
|
|
552
|
-
hash: sha256:
|
|
552
|
+
hash: sha256:6d87ec21d32acff1ba9b9d13025118c106ce6db59c1339c3a6ef4b2a02fd7f52
|
|
553
553
|
type: core
|
|
554
|
-
size:
|
|
554
|
+
size: 22362
|
|
555
555
|
- path: core/ids/verification-gate.js
|
|
556
556
|
hash: sha256:96050661c90fa52bfc755911d02c9194ec35c00e71fc6bbc92a13686dd53bb91
|
|
557
557
|
type: core
|
|
@@ -601,13 +601,13 @@ files:
|
|
|
601
601
|
type: core
|
|
602
602
|
size: 33058
|
|
603
603
|
- path: core/migration/migration-config.yaml
|
|
604
|
-
hash: sha256:
|
|
604
|
+
hash: sha256:2267027b27300a12173ba317c72df54732e865e3ed2305ad2553e6ddac3ec610
|
|
605
605
|
type: core
|
|
606
|
-
size:
|
|
606
|
+
size: 1589
|
|
607
607
|
- path: core/migration/module-mapping.yaml
|
|
608
|
-
hash: sha256:
|
|
608
|
+
hash: sha256:d141e61387871c366be93b5751b32363708e2d6ea42cceda3c4b3be13a4ed80f
|
|
609
609
|
type: core
|
|
610
|
-
size:
|
|
610
|
+
size: 1824
|
|
611
611
|
- path: core/orchestration/agent-invoker.js
|
|
612
612
|
hash: sha256:4cb5cf020be06933052830434db73eb4caffe16f6a8157f57276f6d84122e3c6
|
|
613
613
|
type: core
|
|
@@ -821,9 +821,9 @@ files:
|
|
|
821
821
|
type: core
|
|
822
822
|
size: 13178
|
|
823
823
|
- path: core/registry/README.md
|
|
824
|
-
hash: sha256:
|
|
824
|
+
hash: sha256:1bb10a567899284629f97d5421d076533cc68cc5bada646027b98c8cbe6e2372
|
|
825
825
|
type: core
|
|
826
|
-
size:
|
|
826
|
+
size: 4786
|
|
827
827
|
- path: core/registry/registry-loader.js
|
|
828
828
|
hash: sha256:9e0ab550f6f98db2ac27a95bfb7b11028b889230354cff5864248e53061be095
|
|
829
829
|
type: core
|
|
@@ -848,18 +848,74 @@ files:
|
|
|
848
848
|
hash: sha256:eaef1e3a11feb2d355c5dc8fc2813ae095e27911cdf1261e5d003b22be16d8f0
|
|
849
849
|
type: core
|
|
850
850
|
size: 13729
|
|
851
|
+
- path: core/synapse/context/context-builder.js
|
|
852
|
+
hash: sha256:121cd0a1df8a44098831cd4335536e8facf4e65b8aec48f4ce9c2d432dc6252a
|
|
853
|
+
type: core
|
|
854
|
+
size: 1013
|
|
851
855
|
- path: core/synapse/context/context-tracker.js
|
|
852
856
|
hash: sha256:3b09f8323fab171e3aaa7a3a079b6cd65f6fd5775e661c24c295a4775cb31a68
|
|
853
857
|
type: core
|
|
854
858
|
size: 5581
|
|
859
|
+
- path: core/synapse/diagnostics/collectors/consistency-collector.js
|
|
860
|
+
hash: sha256:65f4255f87c9900400649dc8b9aedaac4851b5939d93e127778bd93cee99db12
|
|
861
|
+
type: core
|
|
862
|
+
size: 5933
|
|
863
|
+
- path: core/synapse/diagnostics/collectors/hook-collector.js
|
|
864
|
+
hash: sha256:9cd342cc0c2253296f931a977b20408370c1e1bebe02a22a757418d4d0630884
|
|
865
|
+
type: core
|
|
866
|
+
size: 3762
|
|
867
|
+
- path: core/synapse/diagnostics/collectors/manifest-collector.js
|
|
868
|
+
hash: sha256:3dc895eb94485320ecbaca3a1d29e3776cfb691dd7dcc71cf44b34af30e8ebb6
|
|
869
|
+
type: core
|
|
870
|
+
size: 2612
|
|
871
|
+
- path: core/synapse/diagnostics/collectors/output-analyzer.js
|
|
872
|
+
hash: sha256:e6846b1aba0a6cba17c297a871861d4f8199d7500220bff296a6a3291e32493e
|
|
873
|
+
type: core
|
|
874
|
+
size: 4968
|
|
875
|
+
- path: core/synapse/diagnostics/collectors/pipeline-collector.js
|
|
876
|
+
hash: sha256:8655b6240e2f54b70def1a8c2fae00d40e2615cb95fd7ca0d64c2e0a6dfe3b73
|
|
877
|
+
type: core
|
|
878
|
+
size: 2198
|
|
879
|
+
- path: core/synapse/diagnostics/collectors/quality-collector.js
|
|
880
|
+
hash: sha256:30ae299eab6d569d09afe3530a5b2f1ff35ef75366a1ab56a9e2a57d39d3611c
|
|
881
|
+
type: core
|
|
882
|
+
size: 8583
|
|
883
|
+
- path: core/synapse/diagnostics/collectors/relevance-matrix.js
|
|
884
|
+
hash: sha256:f92c4f7061dc82eed4310a27b69eade33d3015f9beb1bed688601a2dccbad22e
|
|
885
|
+
type: core
|
|
886
|
+
size: 4959
|
|
887
|
+
- path: core/synapse/diagnostics/collectors/safe-read-json.js
|
|
888
|
+
hash: sha256:dc7bcd13779207ad67b1c3929b7e1e0ccfa3563f3458c20cad28cb1922e9a74c
|
|
889
|
+
type: core
|
|
890
|
+
size: 748
|
|
891
|
+
- path: core/synapse/diagnostics/collectors/session-collector.js
|
|
892
|
+
hash: sha256:a116d884d6947ddc8e5f3def012d93696576c584c4fde1639b8d895924fc09ea
|
|
893
|
+
type: core
|
|
894
|
+
size: 2835
|
|
895
|
+
- path: core/synapse/diagnostics/collectors/timing-collector.js
|
|
896
|
+
hash: sha256:2523ce93f863a28f798d992c4f2fab041c91a09413b3186fd290e6035b391587
|
|
897
|
+
type: core
|
|
898
|
+
size: 3605
|
|
899
|
+
- path: core/synapse/diagnostics/collectors/uap-collector.js
|
|
900
|
+
hash: sha256:dd025894f8f0d3bd22a147dbc0debef8b83e96f3c59483653404b3cd5a01d5aa
|
|
901
|
+
type: core
|
|
902
|
+
size: 2378
|
|
903
|
+
- path: core/synapse/diagnostics/report-formatter.js
|
|
904
|
+
hash: sha256:33faf5820fbe2559e425707ff6ce19ce20b046d7222814d4040e739317ff998e
|
|
905
|
+
type: core
|
|
906
|
+
size: 16421
|
|
907
|
+
- path: core/synapse/diagnostics/synapse-diagnostics.js
|
|
908
|
+
hash: sha256:de9dffce0e380637027cbd64b062d3eeffc37e42a84a337e5758fbef39fe3a00
|
|
909
|
+
type: core
|
|
910
|
+
size: 3812
|
|
855
911
|
- path: core/synapse/domain/domain-loader.js
|
|
856
912
|
hash: sha256:af788f9da956b89eef1e5eb4ef4efdf05ca758c8969a2c375f568119495ebc05
|
|
857
913
|
type: core
|
|
858
914
|
size: 8122
|
|
859
915
|
- path: core/synapse/engine.js
|
|
860
|
-
hash: sha256:
|
|
916
|
+
hash: sha256:65e9c48d8ba7991fcd32bb1ea0bd087ce6d709ebf7f5bc4fd4b2e947ee5ddf0f
|
|
861
917
|
type: core
|
|
862
|
-
size:
|
|
918
|
+
size: 12679
|
|
863
919
|
- path: core/synapse/layers/l0-constitution.js
|
|
864
920
|
hash: sha256:2123a6a44915aaac2a6bbd26c67c285c9d1e12b50fe42a8ada668306b07d1c4a
|
|
865
921
|
type: core
|
|
@@ -904,6 +960,10 @@ files:
|
|
|
904
960
|
hash: sha256:fe4f6c2f6091defb6af66dad71db0640f919b983111087f8cc5821e3d44ca864
|
|
905
961
|
type: core
|
|
906
962
|
size: 16418
|
|
963
|
+
- path: core/synapse/runtime/hook-runtime.js
|
|
964
|
+
hash: sha256:441bdee8bbfea448f4e20eeb0ff1277352b33e79c9cf6cde9012c6d150fee08b
|
|
965
|
+
type: core
|
|
966
|
+
size: 1529
|
|
907
967
|
- path: core/synapse/scripts/generate-constitution.js
|
|
908
968
|
hash: sha256:65405d3e4ee080d19a25fb8967e159360a289e773c15253a351ee163b469e877
|
|
909
969
|
type: script
|
|
@@ -945,15 +1005,15 @@ files:
|
|
|
945
1005
|
type: core
|
|
946
1006
|
size: 10916
|
|
947
1007
|
- path: data/agent-config-requirements.yaml
|
|
948
|
-
hash: sha256:
|
|
1008
|
+
hash: sha256:e798a0ec2b67b37d00b0561f68f8bfb62d8f4d725cb6af81338ec1f2a75992e3
|
|
949
1009
|
type: data
|
|
950
|
-
size:
|
|
1010
|
+
size: 10938
|
|
951
1011
|
- path: data/aios-kb.md
|
|
952
|
-
hash: sha256:
|
|
1012
|
+
hash: sha256:a9e9356e0d0e8618c3342d55e3a6f590f6b320ecf3cd9a2ddf1a297fc5d86764
|
|
953
1013
|
type: data
|
|
954
|
-
size:
|
|
1014
|
+
size: 34744
|
|
955
1015
|
- path: data/entity-registry.yaml
|
|
956
|
-
hash: sha256:
|
|
1016
|
+
hash: sha256:0954d1297befc4e1d0ceea3550a3c9c87b72859af4a7af4a96ba528f8506b321
|
|
957
1017
|
type: data
|
|
958
1018
|
size: 279148
|
|
959
1019
|
- path: data/learned-patterns.yaml
|
|
@@ -1009,9 +1069,9 @@ files:
|
|
|
1009
1069
|
type: agent
|
|
1010
1070
|
size: 10175
|
|
1011
1071
|
- path: development/agents/architect.md
|
|
1012
|
-
hash: sha256:
|
|
1072
|
+
hash: sha256:624cc2a9e8a6cb1549321614927649714a867332272faaa5861f4378206f1c34
|
|
1013
1073
|
type: agent
|
|
1014
|
-
size:
|
|
1074
|
+
size: 18980
|
|
1015
1075
|
- path: development/agents/data-engineer.md
|
|
1016
1076
|
hash: sha256:4be2e5bff60e58d7444d39030edd1e8d34e326e6d1267ae84772871f3e76ec19
|
|
1017
1077
|
type: agent
|
|
@@ -1021,9 +1081,9 @@ files:
|
|
|
1021
1081
|
type: agent
|
|
1022
1082
|
size: 22912
|
|
1023
1083
|
- path: development/agents/devops.md
|
|
1024
|
-
hash: sha256:
|
|
1084
|
+
hash: sha256:958dd617e0c3d4fd3419102df22e6c3f3acdbab30f1333e687ce6191e41113f8
|
|
1025
1085
|
type: agent
|
|
1026
|
-
size:
|
|
1086
|
+
size: 20130
|
|
1027
1087
|
- path: development/agents/pm.md
|
|
1028
1088
|
hash: sha256:e724b248d30c0e67e316e72d5d408c4c57b2da0bfe0cc014e48415531703e765
|
|
1029
1089
|
type: agent
|
|
@@ -1033,9 +1093,9 @@ files:
|
|
|
1033
1093
|
type: agent
|
|
1034
1094
|
size: 12765
|
|
1035
1095
|
- path: development/agents/qa.md
|
|
1036
|
-
hash: sha256:
|
|
1096
|
+
hash: sha256:0f8fb4bce7c75852937bc822547ce74735b212c16761b2d58d95356708fd0a14
|
|
1037
1097
|
type: agent
|
|
1038
|
-
size:
|
|
1098
|
+
size: 17391
|
|
1039
1099
|
- path: development/agents/sm.md
|
|
1040
1100
|
hash: sha256:0f0a8171a68035594ef5dfc5f3e611e6a16198b3c3cc116b98c34d38ef2045ad
|
|
1041
1101
|
type: agent
|
|
@@ -1045,9 +1105,9 @@ files:
|
|
|
1045
1105
|
type: agent
|
|
1046
1106
|
size: 12076
|
|
1047
1107
|
- path: development/agents/ux-design-expert.md
|
|
1048
|
-
hash: sha256:
|
|
1108
|
+
hash: sha256:5dde817f220f1f452b53026643e267eb027e4a131d1e5fc4bbcf6ebd772da3bb
|
|
1049
1109
|
type: agent
|
|
1050
|
-
size:
|
|
1110
|
+
size: 18376
|
|
1051
1111
|
- path: development/checklists/agent-quality-gate.md
|
|
1052
1112
|
hash: sha256:04d1bf12dd4b0b3d10de04c1825efab742e6475087d3ac9d5c86ca7ff8ec9057
|
|
1053
1113
|
type: checklist
|
|
@@ -1072,6 +1132,10 @@ files:
|
|
|
1072
1132
|
hash: sha256:66c7cc2510c1100c13aa176502428e7b1396fcd88af748a966f9ad3e2d0773b3
|
|
1073
1133
|
type: development
|
|
1074
1134
|
size: 4429
|
|
1135
|
+
- path: development/scripts/activation-runtime.js
|
|
1136
|
+
hash: sha256:310884d94b81be976a346987822306a16a73ba812c08c3b805f4a03216ffef38
|
|
1137
|
+
type: script
|
|
1138
|
+
size: 1893
|
|
1075
1139
|
- path: development/scripts/agent-assignment-resolver.js
|
|
1076
1140
|
hash: sha256:ae8a89d038cd9af894d9ec45d8b97ed930f84f70e88f17dbf1a3c556e336c75e
|
|
1077
1141
|
type: script
|
|
@@ -1161,9 +1225,9 @@ files:
|
|
|
1161
1225
|
type: script
|
|
1162
1226
|
size: 8111
|
|
1163
1227
|
- path: development/scripts/generate-greeting.js
|
|
1164
|
-
hash: sha256:
|
|
1228
|
+
hash: sha256:49b857fe36a0216a0df8395a6847f14608bd6a228817276201d22598a6862a4f
|
|
1165
1229
|
type: script
|
|
1166
|
-
size:
|
|
1230
|
+
size: 3220
|
|
1167
1231
|
- path: development/scripts/git-wrapper.js
|
|
1168
1232
|
hash: sha256:2cc481d4cdaf2f34f6c907c54dcc6168f26859de3d1d3d71a6caf7a50de30e8c
|
|
1169
1233
|
type: script
|
|
@@ -1305,9 +1369,9 @@ files:
|
|
|
1305
1369
|
type: script
|
|
1306
1370
|
size: 17607
|
|
1307
1371
|
- path: development/scripts/unified-activation-pipeline.js
|
|
1308
|
-
hash: sha256:
|
|
1372
|
+
hash: sha256:dd1ad8050ac6ea04ff634434be9b97f67239ee0a7342d669bc5618eb2b7a7f5b
|
|
1309
1373
|
type: script
|
|
1310
|
-
size:
|
|
1374
|
+
size: 29211
|
|
1311
1375
|
- path: development/scripts/usage-tracker.js
|
|
1312
1376
|
hash: sha256:b3079713787de7c6ac38a742255861f04e8359ef1b227836040920a64b7e8aac
|
|
1313
1377
|
type: script
|
|
@@ -1548,10 +1612,6 @@ files:
|
|
|
1548
1612
|
hash: sha256:87847ae950523df49e1ec4f86e689be538dfebb4cecc9ce8461e68dce509fb25
|
|
1549
1613
|
type: task
|
|
1550
1614
|
size: 5710
|
|
1551
|
-
- path: development/tasks/db-expansion-pack-integration.md
|
|
1552
|
-
hash: sha256:0a18f3a72210707fa66f8fddd6de737172da647931b9327a58deda02ff1cf748
|
|
1553
|
-
type: task
|
|
1554
|
-
size: 16819
|
|
1555
1615
|
- path: development/tasks/db-explain.md
|
|
1556
1616
|
hash: sha256:91178c01e12b6129bda0851a90560afa81393cc88e769802a88c8a03a90e0ee4
|
|
1557
1617
|
type: task
|
|
@@ -1596,6 +1656,10 @@ files:
|
|
|
1596
1656
|
hash: sha256:fdc691f542306d96f6793463df5c5e6787d3f12ca3e7659b96e4848100ad0150
|
|
1597
1657
|
type: task
|
|
1598
1658
|
size: 11713
|
|
1659
|
+
- path: development/tasks/db-squad-integration.md
|
|
1660
|
+
hash: sha256:ecd73fbd76ea15664c13abcb9ad328586b097e1ed42b5889ce6ea16e0d4d1644
|
|
1661
|
+
type: task
|
|
1662
|
+
size: 16774
|
|
1599
1663
|
- path: development/tasks/db-supabase-setup.md
|
|
1600
1664
|
hash: sha256:1b67b6b90d964026d6aea4fcea8488db6d1445319d73f43a3d041547f8217db4
|
|
1601
1665
|
type: task
|
|
@@ -1744,10 +1808,10 @@ files:
|
|
|
1744
1808
|
hash: sha256:31f85d85d8679a4dae27b26860985bc775d744092f2c4d4203acfbcd0cd63516
|
|
1745
1809
|
type: task
|
|
1746
1810
|
size: 10990
|
|
1747
|
-
- path: development/tasks/integrate-
|
|
1748
|
-
hash: sha256:
|
|
1811
|
+
- path: development/tasks/integrate-squad.md
|
|
1812
|
+
hash: sha256:f645b5ea7940b0cde92f542acb3263ce36bc41aec202bb123e5628a89cd55948
|
|
1749
1813
|
type: task
|
|
1750
|
-
size:
|
|
1814
|
+
size: 6829
|
|
1751
1815
|
- path: development/tasks/kb-mode-interaction.md
|
|
1752
1816
|
hash: sha256:97706a85b87ab4b506bad2fb29eadd425e2b95418bb9ada1288d2c478d6704a6
|
|
1753
1817
|
type: task
|
|
@@ -1785,9 +1849,9 @@ files:
|
|
|
1785
1849
|
type: task
|
|
1786
1850
|
size: 13356
|
|
1787
1851
|
- path: development/tasks/next.md
|
|
1788
|
-
hash: sha256:
|
|
1852
|
+
hash: sha256:8ba7dc4567c0c7bf7001f0a26650767f72f45442d312daeb0e321ba4605ce429
|
|
1789
1853
|
type: task
|
|
1790
|
-
size:
|
|
1854
|
+
size: 6556
|
|
1791
1855
|
- path: development/tasks/orchestrate-resume.md
|
|
1792
1856
|
hash: sha256:5da88a904fc9e77d7428344fb83e55f6f4a3cae4f9d21d77092d1c67664c3d86
|
|
1793
1857
|
type: task
|
|
@@ -1853,13 +1917,17 @@ files:
|
|
|
1853
1917
|
type: task
|
|
1854
1918
|
size: 6896
|
|
1855
1919
|
- path: development/tasks/pr-automation.md
|
|
1856
|
-
hash: sha256:
|
|
1920
|
+
hash: sha256:730dc930cd78b0e4313326068ecd390d3f19ecbfc98d04b3935dc6130049a951
|
|
1857
1921
|
type: task
|
|
1858
|
-
size:
|
|
1922
|
+
size: 19098
|
|
1859
1923
|
- path: development/tasks/propose-modification.md
|
|
1860
1924
|
hash: sha256:56f48bdae2572ee632bd782ada47804018cc0ba660f7711df73e34ab667d1e40
|
|
1861
1925
|
type: task
|
|
1862
1926
|
size: 23884
|
|
1927
|
+
- path: development/tasks/publish-npm.md
|
|
1928
|
+
hash: sha256:f7a0bb8fed5663c88ad691b8871fdf7a861b6a7c02599f0c2db3eb9393d353c8
|
|
1929
|
+
type: task
|
|
1930
|
+
size: 6470
|
|
1863
1931
|
- path: development/tasks/qa-after-creation.md
|
|
1864
1932
|
hash: sha256:e9f6ceff7a0bc00d4fc035e890b7f1178c6ea43f447d135774b46a00713450e6
|
|
1865
1933
|
type: task
|
|
@@ -1941,9 +2009,9 @@ files:
|
|
|
1941
2009
|
type: task
|
|
1942
2010
|
size: 11411
|
|
1943
2011
|
- path: development/tasks/release-management.md
|
|
1944
|
-
hash: sha256:
|
|
2012
|
+
hash: sha256:569e48755ab32820456fbb6fd82492f79d007ff51a6975e4f92772bb097ab916
|
|
1945
2013
|
type: task
|
|
1946
|
-
size:
|
|
2014
|
+
size: 18740
|
|
1947
2015
|
- path: development/tasks/remove-mcp.md
|
|
1948
2016
|
hash: sha256:3f4bf3f8d4d651109dc783e95598ab21569447295f22a7b868d3973f0848aa4c
|
|
1949
2017
|
type: task
|
|
@@ -1989,9 +2057,9 @@ files:
|
|
|
1989
2057
|
type: task
|
|
1990
2058
|
size: 13042
|
|
1991
2059
|
- path: development/tasks/setup-github.md
|
|
1992
|
-
hash: sha256:
|
|
2060
|
+
hash: sha256:6ae57c32e34af7c59e3ba8153113ca3c3661f501ec6ed41f2c0534f6f1d2a788
|
|
1993
2061
|
type: task
|
|
1994
|
-
size:
|
|
2062
|
+
size: 31202
|
|
1995
2063
|
- path: development/tasks/setup-llm-routing.md
|
|
1996
2064
|
hash: sha256:1cd70ae8b8bfb62cfb7db79cb214f4408bc4d9c2c604d330696969356ccf2607
|
|
1997
2065
|
type: task
|
|
@@ -2057,17 +2125,17 @@ files:
|
|
|
2057
2125
|
type: task
|
|
2058
2126
|
size: 6555
|
|
2059
2127
|
- path: development/tasks/squad-creator-migrate.md
|
|
2060
|
-
hash: sha256:
|
|
2128
|
+
hash: sha256:c376c2844aaff4fccf4970215f864fd329c029f891176481814d69c46784f759
|
|
2061
2129
|
type: task
|
|
2062
|
-
size:
|
|
2130
|
+
size: 8703
|
|
2063
2131
|
- path: development/tasks/squad-creator-publish.md
|
|
2064
2132
|
hash: sha256:f54cd24b45796ac9d3cee8876a1edca316f5560878201e828cad43d9e951ddc6
|
|
2065
2133
|
type: task
|
|
2066
2134
|
size: 4918
|
|
2067
2135
|
- path: development/tasks/squad-creator-sync-ide-command.md
|
|
2068
|
-
hash: sha256:
|
|
2136
|
+
hash: sha256:7c99d2b298bc37a64f53236e813856f96cea6865b7a19d5ac73e18706d04913b
|
|
2069
2137
|
type: task
|
|
2070
|
-
size:
|
|
2138
|
+
size: 12465
|
|
2071
2139
|
- path: development/tasks/squad-creator-sync-synkra.md
|
|
2072
2140
|
hash: sha256:9e3cb982b6de771daf22788eb43d06bf7a197c32f15be4860946407b824ef150
|
|
2073
2141
|
type: task
|
|
@@ -2101,9 +2169,9 @@ files:
|
|
|
2101
2169
|
type: task
|
|
2102
2170
|
size: 7649
|
|
2103
2171
|
- path: development/tasks/update-aios.md
|
|
2104
|
-
hash: sha256:
|
|
2172
|
+
hash: sha256:425aab2ec69812648676d3dc6072136fd5614177d82cf6c979cdec1ed825cdef
|
|
2105
2173
|
type: task
|
|
2106
|
-
size:
|
|
2174
|
+
size: 4181
|
|
2107
2175
|
- path: development/tasks/update-manifest.md
|
|
2108
2176
|
hash: sha256:0f3fbe1a4bad652851e5b59332b4d4a39daadc0af2764913fce534a3e2d5968e
|
|
2109
2177
|
type: task
|
|
@@ -2333,33 +2401,33 @@ files:
|
|
|
2333
2401
|
type: documentation
|
|
2334
2402
|
size: 16023
|
|
2335
2403
|
- path: docs/standards/AIOS-COLOR-PALETTE-QUICK-REFERENCE.md
|
|
2336
|
-
hash: sha256:
|
|
2404
|
+
hash: sha256:3bf52aa948c6f5a79a43ab6cd4170b5ab476737e88813176d4d7a33f4a659edb
|
|
2337
2405
|
type: documentation
|
|
2338
|
-
size:
|
|
2406
|
+
size: 4095
|
|
2339
2407
|
- path: docs/standards/AIOS-COLOR-PALETTE-V2.1.md
|
|
2340
|
-
hash: sha256:
|
|
2408
|
+
hash: sha256:1007f12366036f7817f08cf260eed30e4df45a061fce6ec693b0446add966716
|
|
2341
2409
|
type: documentation
|
|
2342
|
-
size:
|
|
2410
|
+
size: 9529
|
|
2343
2411
|
- path: docs/standards/EXECUTOR-DECISION-TREE.md
|
|
2344
2412
|
hash: sha256:106af2a8bc009c129618fbd501e68c6927862dbbc2e28d1a5b67be9b5fc2bb5b
|
|
2345
2413
|
type: documentation
|
|
2346
2414
|
size: 19268
|
|
2347
2415
|
- path: docs/standards/OPEN-SOURCE-VS-SERVICE-DIFFERENCES.md
|
|
2348
|
-
hash: sha256:
|
|
2416
|
+
hash: sha256:3cb48a85705305a5a70ec35cd110570a5cb71056d151ca226367e83d4a67e0f7
|
|
2349
2417
|
type: documentation
|
|
2350
|
-
size:
|
|
2418
|
+
size: 16398
|
|
2351
2419
|
- path: docs/standards/QUALITY-GATES-SPECIFICATION.md
|
|
2352
|
-
hash: sha256:
|
|
2420
|
+
hash: sha256:43eb6b05aa08af79f53dfe0a2a67a0fdd20672d7d98883e5e345691edbca571d
|
|
2353
2421
|
type: documentation
|
|
2354
|
-
size:
|
|
2422
|
+
size: 19761
|
|
2355
2423
|
- path: docs/standards/STANDARDS-INDEX.md
|
|
2356
|
-
hash: sha256:
|
|
2424
|
+
hash: sha256:80d3072befba5b5f439396c96a7bc9328b0e849cd0f684f4e60c4523864e0c44
|
|
2357
2425
|
type: documentation
|
|
2358
|
-
size:
|
|
2426
|
+
size: 8421
|
|
2359
2427
|
- path: docs/standards/STORY-TEMPLATE-V2-SPECIFICATION.md
|
|
2360
|
-
hash: sha256:
|
|
2428
|
+
hash: sha256:06d4ac7f0e37f9eb9ef9cbc0123e74738f1c9b0130e39a78dd07331f70b58682
|
|
2361
2429
|
type: documentation
|
|
2362
|
-
size:
|
|
2430
|
+
size: 11592
|
|
2363
2431
|
- path: docs/standards/TASK-FORMAT-SPECIFICATION-V1.md
|
|
2364
2432
|
hash: sha256:f46e020f07b11f6409877a1d75c6e29fa2e0310a53ab2677e2c0c42f282c6339
|
|
2365
2433
|
type: documentation
|
|
@@ -2528,6 +2596,14 @@ files:
|
|
|
2528
2596
|
hash: sha256:dc3fdaea27fb37e3d2b0326f401a3b2854fa8212cd71c702a1ec2c4c9fc706f0
|
|
2529
2597
|
type: script
|
|
2530
2598
|
size: 40724
|
|
2599
|
+
- path: infrastructure/scripts/codex-skills-sync/index.js
|
|
2600
|
+
hash: sha256:9ea0726a9415dcf30c706d8116464026d973a18fb94644b0c2a9d15afb04e0e1
|
|
2601
|
+
type: script
|
|
2602
|
+
size: 5246
|
|
2603
|
+
- path: infrastructure/scripts/codex-skills-sync/validate.js
|
|
2604
|
+
hash: sha256:5ecea0783dcd25191ec7e486c42089bc8d71a336549c2d3142945e7f7de2f6aa
|
|
2605
|
+
type: script
|
|
2606
|
+
size: 4572
|
|
2531
2607
|
- path: infrastructure/scripts/commit-message-generator.js
|
|
2532
2608
|
hash: sha256:e1286241b9aa6d8918eb682bea331a8ba555341124b1e21c12cc44625ca90a6f
|
|
2533
2609
|
type: script
|
|
@@ -2633,13 +2709,13 @@ files:
|
|
|
2633
2709
|
type: script
|
|
2634
2710
|
size: 8846
|
|
2635
2711
|
- path: infrastructure/scripts/ide-sync/index.js
|
|
2636
|
-
hash: sha256:
|
|
2712
|
+
hash: sha256:024f71d130ddad97d4f53290248b2fe1208e5739b4fb12d4713f7b9200857f4c
|
|
2637
2713
|
type: script
|
|
2638
|
-
size:
|
|
2714
|
+
size: 13426
|
|
2639
2715
|
- path: infrastructure/scripts/ide-sync/README.md
|
|
2640
|
-
hash: sha256:
|
|
2716
|
+
hash: sha256:9ae7b657f83e37991f84fd687188929485130cb43a5f9fb9b6f91f5ef6a2dd2b
|
|
2641
2717
|
type: script
|
|
2642
|
-
size:
|
|
2718
|
+
size: 4676
|
|
2643
2719
|
- path: infrastructure/scripts/ide-sync/redirect-generator.js
|
|
2644
2720
|
hash: sha256:d5ca34590201e7a7e4077c8712fa0421f3ed41df76cd6717baf8b589799b5c13
|
|
2645
2721
|
type: script
|
|
@@ -2861,9 +2937,9 @@ files:
|
|
|
2861
2937
|
type: script
|
|
2862
2938
|
size: 5870
|
|
2863
2939
|
- path: infrastructure/scripts/tool-resolver.js
|
|
2864
|
-
hash: sha256:
|
|
2940
|
+
hash: sha256:ee1e900119a8464f744d7702c1e82fb30536675adaa59ce807c3f638dcd407cb
|
|
2865
2941
|
type: script
|
|
2866
|
-
size:
|
|
2942
|
+
size: 11018
|
|
2867
2943
|
- path: infrastructure/scripts/transaction-manager.js
|
|
2868
2944
|
hash: sha256:4c07f113b887de626cbbd1f1657ae49cb2e239dc768bc040487cc28c01a3829d
|
|
2869
2945
|
type: script
|
|
@@ -2880,6 +2956,10 @@ files:
|
|
|
2880
2956
|
hash: sha256:91111d656e8d7b38a20a1bda753e663b74318f75cdab2025c7e0b84c775fc83d
|
|
2881
2957
|
type: script
|
|
2882
2958
|
size: 6692
|
|
2959
|
+
- path: infrastructure/scripts/validate-paths.js
|
|
2960
|
+
hash: sha256:4360d0735ec2c717a97c1670855c5423cf5172005a93c4698b5305ccec48bc2e
|
|
2961
|
+
type: script
|
|
2962
|
+
size: 3772
|
|
2883
2963
|
- path: infrastructure/scripts/validate-user-profile.js
|
|
2884
2964
|
hash: sha256:8d9e687b842135a184c87a72b83b9a1448b0315c5030d6119b32003059b5cf77
|
|
2885
2965
|
type: script
|
|
@@ -2897,9 +2977,9 @@ files:
|
|
|
2897
2977
|
type: script
|
|
2898
2978
|
size: 10362
|
|
2899
2979
|
- path: infrastructure/templates/aios-sync.yaml.template
|
|
2900
|
-
hash: sha256:
|
|
2980
|
+
hash: sha256:3052ef8c6e541068461818d26eb54b7cd8ee5e0dd279f0ab9e09a169b1a48f3b
|
|
2901
2981
|
type: template
|
|
2902
|
-
size:
|
|
2982
|
+
size: 8721
|
|
2903
2983
|
- path: infrastructure/templates/coderabbit.yaml.template
|
|
2904
2984
|
hash: sha256:a8f8e08e5c109b4c635a468e9b400bfb35361073de8a0883c5d4c9db84d7ed0a
|
|
2905
2985
|
type: template
|
|
@@ -2921,9 +3001,9 @@ files:
|
|
|
2921
3001
|
type: template
|
|
2922
3002
|
size: 10609
|
|
2923
3003
|
- path: infrastructure/templates/github-workflows/README.md
|
|
2924
|
-
hash: sha256:
|
|
3004
|
+
hash: sha256:d498f88d14a2eea695ff01dfb27886a9838576bf2be9a4dcbd923d5ae4b9f094
|
|
2925
3005
|
type: template
|
|
2926
|
-
size:
|
|
3006
|
+
size: 2654
|
|
2927
3007
|
- path: infrastructure/templates/github-workflows/release.yml.template
|
|
2928
3008
|
hash: sha256:bd40c93023c56489a45690a5829beda662f738f0687beb46bef31475ceee8027
|
|
2929
3009
|
type: template
|
|
@@ -3169,9 +3249,9 @@ files:
|
|
|
3169
3249
|
type: data
|
|
3170
3250
|
size: 5046
|
|
3171
3251
|
- path: product/data/integration-patterns.md
|
|
3172
|
-
hash: sha256:
|
|
3252
|
+
hash: sha256:ec90d223732a9df474d4a38665ff2826ea01831a70133e3245b7f13530d465f4
|
|
3173
3253
|
type: data
|
|
3174
|
-
size:
|
|
3254
|
+
size: 4817
|
|
3175
3255
|
- path: product/data/migration-safety-guide.md
|
|
3176
3256
|
hash: sha256:42200ca180d4586447304dfc7f8035ccd09860b6ac34c72b63d284e57c94d2db
|
|
3177
3257
|
type: data
|
|
@@ -3209,7 +3289,7 @@ files:
|
|
|
3209
3289
|
type: data
|
|
3210
3290
|
size: 4994
|
|
3211
3291
|
- path: product/README.md
|
|
3212
|
-
hash: sha256:
|
|
3292
|
+
hash: sha256:cbe127070152b8da73a49c4ade02dc7318a8f957a87b88dc7d1ec11484e0b1ad
|
|
3213
3293
|
type: product
|
|
3214
3294
|
size: 1709
|
|
3215
3295
|
- path: product/templates/activation-instructions-inline-greeting.yaml
|
|
@@ -3381,13 +3461,17 @@ files:
|
|
|
3381
3461
|
type: template
|
|
3382
3462
|
size: 6785
|
|
3383
3463
|
- path: product/templates/ide-rules/cline-rules.md
|
|
3384
|
-
hash: sha256:
|
|
3464
|
+
hash: sha256:e2c7a57d630fab3220810b32aa24009a6bf749cd8b863d8b8a7a524861758e77
|
|
3465
|
+
type: template
|
|
3466
|
+
size: 2840
|
|
3467
|
+
- path: product/templates/ide-rules/codex-rules.md
|
|
3468
|
+
hash: sha256:e8345404f17977a268b917a4ff86e4f10f80174a6bb572865e5413c8f7dd217a
|
|
3385
3469
|
type: template
|
|
3386
|
-
size:
|
|
3470
|
+
size: 2702
|
|
3387
3471
|
- path: product/templates/ide-rules/copilot-rules.md
|
|
3388
|
-
hash: sha256:
|
|
3472
|
+
hash: sha256:8ff2822680e189ba5fd0e14370625964ddb1017f893c1d0c5aa242b9bf786069
|
|
3389
3473
|
type: template
|
|
3390
|
-
size:
|
|
3474
|
+
size: 3101
|
|
3391
3475
|
- path: product/templates/ide-rules/cursor-rules.md
|
|
3392
3476
|
hash: sha256:925bd5e4cd9f463f90910fda047593383346dce128d281e81de04cbb7663ecd0
|
|
3393
3477
|
type: template
|
|
@@ -3397,9 +3481,9 @@ files:
|
|
|
3397
3481
|
type: template
|
|
3398
3482
|
size: 6605
|
|
3399
3483
|
- path: product/templates/ide-rules/roo-rules.md
|
|
3400
|
-
hash: sha256:
|
|
3484
|
+
hash: sha256:65746d390f570aade0ef98876861b510494a5d3c040c41650297b1c95c04581a
|
|
3401
3485
|
type: template
|
|
3402
|
-
size:
|
|
3486
|
+
size: 3063
|
|
3403
3487
|
- path: product/templates/ide-rules/windsurf-rules.md
|
|
3404
3488
|
hash: sha256:7c880de0dec8b06eb3390a56614996c6033c1939907d77f73f4f6f85ae42b3e2
|
|
3405
3489
|
type: template
|
|
@@ -3813,9 +3897,9 @@ files:
|
|
|
3813
3897
|
type: script
|
|
3814
3898
|
size: 1708
|
|
3815
3899
|
- path: user-guide.md
|
|
3816
|
-
hash: sha256:
|
|
3900
|
+
hash: sha256:392885f5bd71f3be9a764d83d5b401b61a2a875ea8000ad2569c17a7139e68e5
|
|
3817
3901
|
type: documentation
|
|
3818
|
-
size:
|
|
3902
|
+
size: 38725
|
|
3819
3903
|
- path: workflow-intelligence/__tests__/confidence-scorer.test.js
|
|
3820
3904
|
hash: sha256:237216842d3eb710ae33f3aba6c7b2a6a353cccc1dea6d4b927d8d063d9cb635
|
|
3821
3905
|
type: workflow-intelligence
|
|
@@ -3841,9 +3925,9 @@ files:
|
|
|
3841
3925
|
type: workflow-intelligence
|
|
3842
3926
|
size: 8822
|
|
3843
3927
|
- path: workflow-intelligence/engine/output-formatter.js
|
|
3844
|
-
hash: sha256:
|
|
3928
|
+
hash: sha256:f15086c91ed86daa4d48b0acf2f3dc6c319ff36415c24594b7232e4e5581b4bc
|
|
3845
3929
|
type: workflow-intelligence
|
|
3846
|
-
size:
|
|
3930
|
+
size: 8436
|
|
3847
3931
|
- path: workflow-intelligence/engine/suggestion-engine.js
|
|
3848
3932
|
hash: sha256:1283f4a80e4bb00fe22b34822695c282d7a2ca3e2d1394f2923cd57b99a91f32
|
|
3849
3933
|
type: workflow-intelligence
|
|
@@ -50,7 +50,7 @@ const checklistPath = '.aios-core/product/checklists/story-dod-checklist.md';
|
|
|
50
50
|
|
|
51
51
|
## Migration
|
|
52
52
|
|
|
53
|
-
Created as part of [Story 2.4](../../../docs/stories/
|
|
53
|
+
Created as part of [Story 2.4](../../../docs/stories/v4.0.4/sprint-2/story-2.4-product-module.md) in Sprint 2.
|
|
54
54
|
|
|
55
55
|
---
|
|
56
|
-
*Synkra AIOS
|
|
56
|
+
*Synkra AIOS v4 - Product Module*
|