aios-core 4.2.3 → 4.2.4
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/core/registry/service-registry.json +6466 -6586
- package/.aios-core/core-config.yaml +10 -5
- package/.aios-core/data/aios-kb.md +19 -25
- package/.aios-core/data/entity-registry.yaml +311 -204
- package/.aios-core/data/registry-update-log.jsonl +8 -0
- package/.aios-core/development/tasks/db-squad-integration.md +3 -3
- package/.aios-core/development/tasks/dev-develop-story.md +1 -1
- package/.aios-core/development/tasks/integrate-squad.md +1 -1
- package/.aios-core/development/tasks/pr-automation.md +3 -3
- package/.aios-core/development/tasks/squad-creator-migrate.md +1 -1
- package/.aios-core/development/tasks/squad-creator-sync-ide-command.md +0 -2
- package/.aios-core/development/tasks/update-aios.md +2 -2
- package/.aios-core/development/tasks/validate-next-story.md +2 -99
- package/.aios-core/development/workflows/README.md +0 -4
- package/.aios-core/docs/standards/AIOS-COLOR-PALETTE-V2.1.md +0 -1
- package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO-V2.1-COMPLETE.md +3 -3
- package/.aios-core/docs/standards/QUALITY-GATES-SPECIFICATION.md +1 -1
- package/.aios-core/docs/standards/STANDARDS-INDEX.md +4 -4
- package/.aios-core/docs/standards/STORY-TEMPLATE-V2-SPECIFICATION.md +2 -2
- package/.aios-core/framework-config.yaml +8 -4
- package/.aios-core/infrastructure/scripts/ide-sync/README.md +29 -5
- package/.aios-core/infrastructure/scripts/ide-sync/gemini-commands.js +205 -0
- package/.aios-core/infrastructure/scripts/ide-sync/index.js +48 -11
- package/.aios-core/infrastructure/scripts/ide-sync/redirect-generator.js +1 -1
- package/.aios-core/infrastructure/scripts/test-utilities.js +1 -1
- package/.aios-core/infrastructure/scripts/tool-resolver.js +2 -2
- package/.aios-core/infrastructure/scripts/validate-claude-integration.js +101 -0
- package/.aios-core/infrastructure/scripts/validate-codex-integration.js +141 -0
- package/.aios-core/infrastructure/scripts/validate-gemini-integration.js +151 -0
- package/.aios-core/infrastructure/scripts/validate-parity.js +119 -0
- package/.aios-core/infrastructure/templates/aios-sync.yaml.template +0 -11
- package/.aios-core/install-manifest.yaml +83 -71
- package/.aios-core/local-config.yaml.template +2 -1
- package/.aios-core/presets/README.md +0 -1
- package/.aios-core/product/data/integration-patterns.md +1 -1
- package/.aios-core/product/templates/ide-rules/gemini-rules.md +87 -233
- package/.aios-core/product/templates/statusline/statusline-script.js +188 -0
- package/.aios-core/product/templates/statusline/track-agent.sh +68 -0
- package/.aios-core/user-guide.md +14 -19
- package/LICENSE +0 -27
- package/README.md +42 -6
- package/bin/aios-init.js +98 -54
- package/bin/modules/env-config.js +0 -1
- package/package.json +18 -5
- package/packages/gemini-aios-extension/README.md +13 -8
- package/packages/gemini-aios-extension/commands/aios-agent.js +7 -0
- package/packages/gemini-aios-extension/commands/aios-agents.js +2 -1
- package/packages/gemini-aios-extension/commands/aios-analyst.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-architect.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-data-engineer.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-dev.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-devops.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-master.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-menu.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-pm.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-po.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-qa.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-sm.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-squad-creator.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-ux-design-expert.js +6 -0
- package/packages/gemini-aios-extension/commands/lib/agent-launcher.js +138 -0
- package/packages/gemini-aios-extension/extension.json +70 -0
- package/packages/gemini-aios-extension/gemini-extension.json +147 -0
- package/packages/gemini-aios-extension/hooks/hooks.json +67 -65
- package/packages/installer/src/config/ide-configs.js +10 -10
- package/packages/installer/src/config/templates/core-config-template.js +6 -3
- package/packages/installer/src/wizard/ide-config-generator.js +373 -2
- package/packages/installer/src/wizard/ide-selector.js +1 -1
- package/scripts/code-intel-health-check.js +125 -125
- package/scripts/ensure-manifest.js +58 -0
- package/.aios-core/infrastructure/scripts/ide-sync/transformers/windsurf.js +0 -106
- package/.aios-core/product/templates/ide-rules/cline-rules.md +0 -84
- package/.aios-core/product/templates/ide-rules/roo-rules.md +0 -86
- package/.aios-core/product/templates/ide-rules/windsurf-rules.md +0 -80
|
@@ -18,10 +18,7 @@ version: "1.0.0"
|
|
|
18
18
|
active_ides:
|
|
19
19
|
- claude # Claude Code (.claude/commands/)
|
|
20
20
|
- cursor # Cursor IDE (.cursor/rules/)
|
|
21
|
-
# - windsurf # Windsurf IDE (.windsurf/)
|
|
22
21
|
# - gemini # Google Gemini (.gemini/)
|
|
23
|
-
# - trae # Trae IDE (.trae/)
|
|
24
|
-
# - cline # Cline (.cline/)
|
|
25
22
|
|
|
26
23
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
27
24
|
# SQUAD ALIASES
|
|
@@ -54,18 +51,10 @@ sync_mappings:
|
|
|
54
51
|
- path: ".cursor/rules/"
|
|
55
52
|
format: "mdc"
|
|
56
53
|
wrapper: "cursor-rule"
|
|
57
|
-
windsurf:
|
|
58
|
-
- path: ".windsurf/{squad_alias}/agents/"
|
|
59
|
-
format: "md"
|
|
60
|
-
wrapper: "none"
|
|
61
54
|
gemini:
|
|
62
55
|
- path: ".gemini/agents/"
|
|
63
56
|
format: "md"
|
|
64
57
|
wrapper: "none"
|
|
65
|
-
trae:
|
|
66
|
-
- path: ".trae/{squad_alias}/agents/"
|
|
67
|
-
format: "md"
|
|
68
|
-
wrapper: "none"
|
|
69
58
|
|
|
70
59
|
# Tasks - sync to Claude only by default
|
|
71
60
|
squad_tasks:
|
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
# - SHA256 hashes for change detection
|
|
8
8
|
# - File types for categorization
|
|
9
9
|
#
|
|
10
|
-
version: 4.2.
|
|
11
|
-
generated_at: "2026-02-
|
|
10
|
+
version: 4.2.4
|
|
11
|
+
generated_at: "2026-02-16T01:41:22.479Z"
|
|
12
12
|
generator: scripts/generate-install-manifest.js
|
|
13
|
-
file_count:
|
|
13
|
+
file_count: 995
|
|
14
14
|
files:
|
|
15
15
|
- path: cli/commands/config/index.js
|
|
16
16
|
hash: sha256:ebcad2ce3807eda29dcddff76d7a95ddc9b7fa160df21fd608f94b802237e862
|
|
@@ -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:c1266389772b3fcf3e4c91df085bd38dc0b01d0a5f98bdf977d134972ccaf49b
|
|
181
181
|
type: config
|
|
182
|
-
size:
|
|
182
|
+
size: 9392
|
|
183
183
|
- path: core/config/config-cache.js
|
|
184
184
|
hash: sha256:527a788cbe650aa6b13d1101ebc16419489bfef20b2ee93042f6eb6a51e898e9
|
|
185
185
|
type: core
|
|
@@ -833,9 +833,9 @@ files:
|
|
|
833
833
|
type: core
|
|
834
834
|
size: 5445
|
|
835
835
|
- path: core/registry/service-registry.json
|
|
836
|
-
hash: sha256:
|
|
836
|
+
hash: sha256:07123457d0b77216fb7074e0dfd94f23b1e425fe5b9af75caa2b5b1b3f5a7773
|
|
837
837
|
type: core
|
|
838
|
-
size:
|
|
838
|
+
size: 158190
|
|
839
839
|
- path: core/registry/validate-registry.js
|
|
840
840
|
hash: sha256:48f2408386a565e93c8c293da2af4fd1e6357a69891ab823f3976b2cf1dbb4e8
|
|
841
841
|
type: core
|
|
@@ -1009,13 +1009,13 @@ files:
|
|
|
1009
1009
|
type: data
|
|
1010
1010
|
size: 10938
|
|
1011
1011
|
- path: data/aios-kb.md
|
|
1012
|
-
hash: sha256:
|
|
1012
|
+
hash: sha256:c322dbd1964172108be6d1520f8d596472fac69258ef3a12d7b9e26079553b18
|
|
1013
1013
|
type: data
|
|
1014
|
-
size:
|
|
1014
|
+
size: 34251
|
|
1015
1015
|
- path: data/entity-registry.yaml
|
|
1016
|
-
hash: sha256:
|
|
1016
|
+
hash: sha256:edec5a66aec966e122185c213f71974a8b57d8b9d227927630b6561762d0debd
|
|
1017
1017
|
type: data
|
|
1018
|
-
size:
|
|
1018
|
+
size: 289345
|
|
1019
1019
|
- path: data/learned-patterns.yaml
|
|
1020
1020
|
hash: sha256:24ac0b160615583a0ff783d3da8af80b7f94191575d6db2054ec8e10a3f945dc
|
|
1021
1021
|
type: data
|
|
@@ -1657,9 +1657,9 @@ files:
|
|
|
1657
1657
|
type: task
|
|
1658
1658
|
size: 11713
|
|
1659
1659
|
- path: development/tasks/db-squad-integration.md
|
|
1660
|
-
hash: sha256:
|
|
1660
|
+
hash: sha256:5a5d601d97131287e373ac8ad2a78df8987753532c504704c87255580231b0b8
|
|
1661
1661
|
type: task
|
|
1662
|
-
size:
|
|
1662
|
+
size: 16747
|
|
1663
1663
|
- path: development/tasks/db-supabase-setup.md
|
|
1664
1664
|
hash: sha256:1b67b6b90d964026d6aea4fcea8488db6d1445319d73f43a3d041547f8217db4
|
|
1665
1665
|
type: task
|
|
@@ -1681,9 +1681,9 @@ files:
|
|
|
1681
1681
|
type: task
|
|
1682
1682
|
size: 11021
|
|
1683
1683
|
- path: development/tasks/dev-develop-story.md
|
|
1684
|
-
hash: sha256:
|
|
1684
|
+
hash: sha256:6b76a6b428a1a45573431739d4740a78955a7af7a3156515d7151eb97bae2d90
|
|
1685
1685
|
type: task
|
|
1686
|
-
size:
|
|
1686
|
+
size: 26543
|
|
1687
1687
|
- path: development/tasks/dev-improve-code-quality.md
|
|
1688
1688
|
hash: sha256:8f8e6b0dcb1328cf7efcde263be95b93b2592176beafc7adfd3cdffbfa763be4
|
|
1689
1689
|
type: task
|
|
@@ -1809,9 +1809,9 @@ files:
|
|
|
1809
1809
|
type: task
|
|
1810
1810
|
size: 10990
|
|
1811
1811
|
- path: development/tasks/integrate-squad.md
|
|
1812
|
-
hash: sha256:
|
|
1812
|
+
hash: sha256:95e2774c4da99467fa397d773203847d367bf4c5e6060f89534dd931088359e3
|
|
1813
1813
|
type: task
|
|
1814
|
-
size:
|
|
1814
|
+
size: 6820
|
|
1815
1815
|
- path: development/tasks/kb-mode-interaction.md
|
|
1816
1816
|
hash: sha256:97706a85b87ab4b506bad2fb29eadd425e2b95418bb9ada1288d2c478d6704a6
|
|
1817
1817
|
type: task
|
|
@@ -1917,9 +1917,9 @@ files:
|
|
|
1917
1917
|
type: task
|
|
1918
1918
|
size: 6896
|
|
1919
1919
|
- path: development/tasks/pr-automation.md
|
|
1920
|
-
hash: sha256:
|
|
1920
|
+
hash: sha256:472fbb54b04f3e7f5db864a071e8289970461a5f6636b0db55336a95f7740b26
|
|
1921
1921
|
type: task
|
|
1922
|
-
size:
|
|
1922
|
+
size: 19071
|
|
1923
1923
|
- path: development/tasks/propose-modification.md
|
|
1924
1924
|
hash: sha256:56f48bdae2572ee632bd782ada47804018cc0ba660f7711df73e34ab667d1e40
|
|
1925
1925
|
type: task
|
|
@@ -2125,17 +2125,17 @@ files:
|
|
|
2125
2125
|
type: task
|
|
2126
2126
|
size: 6555
|
|
2127
2127
|
- path: development/tasks/squad-creator-migrate.md
|
|
2128
|
-
hash: sha256:
|
|
2128
|
+
hash: sha256:51961002b69bc5cab4a191214e9d49ca9bb02d4d82663fe674fbc3a77edf41f3
|
|
2129
2129
|
type: task
|
|
2130
|
-
size:
|
|
2130
|
+
size: 8694
|
|
2131
2131
|
- path: development/tasks/squad-creator-publish.md
|
|
2132
2132
|
hash: sha256:f54cd24b45796ac9d3cee8876a1edca316f5560878201e828cad43d9e951ddc6
|
|
2133
2133
|
type: task
|
|
2134
2134
|
size: 4918
|
|
2135
2135
|
- path: development/tasks/squad-creator-sync-ide-command.md
|
|
2136
|
-
hash: sha256:
|
|
2136
|
+
hash: sha256:7dc66bcb5d635ac20a47366cad1713da13fe1a62858f0631b3bcb0d64248d71b
|
|
2137
2137
|
type: task
|
|
2138
|
-
size:
|
|
2138
|
+
size: 12344
|
|
2139
2139
|
- path: development/tasks/squad-creator-sync-synkra.md
|
|
2140
2140
|
hash: sha256:9e3cb982b6de771daf22788eb43d06bf7a197c32f15be4860946407b824ef150
|
|
2141
2141
|
type: task
|
|
@@ -2169,9 +2169,9 @@ files:
|
|
|
2169
2169
|
type: task
|
|
2170
2170
|
size: 7649
|
|
2171
2171
|
- path: development/tasks/update-aios.md
|
|
2172
|
-
hash: sha256:
|
|
2172
|
+
hash: sha256:895779bca1ca13f387fd0cbac23fbd0ac5e8b04b9002372ee7ef092ac26a9652
|
|
2173
2173
|
type: task
|
|
2174
|
-
size:
|
|
2174
|
+
size: 4163
|
|
2175
2175
|
- path: development/tasks/update-manifest.md
|
|
2176
2176
|
hash: sha256:0f3fbe1a4bad652851e5b59332b4d4a39daadc0af2764913fce534a3e2d5968e
|
|
2177
2177
|
type: task
|
|
@@ -2197,9 +2197,9 @@ files:
|
|
|
2197
2197
|
type: task
|
|
2198
2198
|
size: 3482
|
|
2199
2199
|
- path: development/tasks/validate-next-story.md
|
|
2200
|
-
hash: sha256:
|
|
2200
|
+
hash: sha256:f834d96cc0f6a0e2aee46ce7b98192e0cea5847f442db0075e066ab6230c1774
|
|
2201
2201
|
type: task
|
|
2202
|
-
size:
|
|
2202
|
+
size: 15871
|
|
2203
2203
|
- path: development/tasks/validate-tech-preset.md
|
|
2204
2204
|
hash: sha256:1919c65909aab2b52a9d2f5c3e2c336711bc873d155707a654dc120ce7d18a25
|
|
2205
2205
|
type: task
|
|
@@ -2385,9 +2385,9 @@ files:
|
|
|
2385
2385
|
type: workflow
|
|
2386
2386
|
size: 18739
|
|
2387
2387
|
- path: development/workflows/README.md
|
|
2388
|
-
hash: sha256:
|
|
2388
|
+
hash: sha256:cfc609808b1c01b552868c649cc44c15d62a3516f8af67b182c75c07c572bd35
|
|
2389
2389
|
type: workflow
|
|
2390
|
-
size:
|
|
2390
|
+
size: 2423
|
|
2391
2391
|
- path: development/workflows/spec-pipeline.yaml
|
|
2392
2392
|
hash: sha256:38061398e5b16c47929b0167a52adf66682366bb0073bb0a75a31c289d1afdf7
|
|
2393
2393
|
type: workflow
|
|
@@ -2405,9 +2405,9 @@ files:
|
|
|
2405
2405
|
type: documentation
|
|
2406
2406
|
size: 4095
|
|
2407
2407
|
- path: docs/standards/AIOS-COLOR-PALETTE-V2.1.md
|
|
2408
|
-
hash: sha256:
|
|
2408
|
+
hash: sha256:08ddcacf88f3cf5251108de5e30429cb93ba5dcaf5bd0ac88bbcacf6a4b06667
|
|
2409
2409
|
type: documentation
|
|
2410
|
-
size:
|
|
2410
|
+
size: 9482
|
|
2411
2411
|
- path: docs/standards/EXECUTOR-DECISION-TREE.md
|
|
2412
2412
|
hash: sha256:106af2a8bc009c129618fbd501e68c6927862dbbc2e28d1a5b67be9b5fc2bb5b
|
|
2413
2413
|
type: documentation
|
|
@@ -2417,17 +2417,17 @@ files:
|
|
|
2417
2417
|
type: documentation
|
|
2418
2418
|
size: 16398
|
|
2419
2419
|
- path: docs/standards/QUALITY-GATES-SPECIFICATION.md
|
|
2420
|
-
hash: sha256:
|
|
2420
|
+
hash: sha256:3c9b4ed28b5cf1ec0116d5a0095493beb261f1fe7dbef6ac6dc5e8651660e118
|
|
2421
2421
|
type: documentation
|
|
2422
|
-
size:
|
|
2422
|
+
size: 19752
|
|
2423
2423
|
- path: docs/standards/STANDARDS-INDEX.md
|
|
2424
|
-
hash: sha256:
|
|
2424
|
+
hash: sha256:d099262e71e64bfe8e723203c64f26cbd9645b6e7862d33915151bc2ec6ab4c2
|
|
2425
2425
|
type: documentation
|
|
2426
|
-
size:
|
|
2426
|
+
size: 8385
|
|
2427
2427
|
- path: docs/standards/STORY-TEMPLATE-V2-SPECIFICATION.md
|
|
2428
|
-
hash: sha256:
|
|
2428
|
+
hash: sha256:31cf0854013c05a39020406bcdd8937f48ab7fe85c17274c8a077bdb3c45131f
|
|
2429
2429
|
type: documentation
|
|
2430
|
-
size:
|
|
2430
|
+
size: 11574
|
|
2431
2431
|
- path: docs/standards/TASK-FORMAT-SPECIFICATION-V1.md
|
|
2432
2432
|
hash: sha256:f46e020f07b11f6409877a1d75c6e29fa2e0310a53ab2677e2c0c42f282c6339
|
|
2433
2433
|
type: documentation
|
|
@@ -2708,18 +2708,22 @@ files:
|
|
|
2708
2708
|
hash: sha256:b4dceac261653d85d791b6cd8b010ebfaa75cab179477b193a2448482b4aa4d4
|
|
2709
2709
|
type: script
|
|
2710
2710
|
size: 8846
|
|
2711
|
+
- path: infrastructure/scripts/ide-sync/gemini-commands.js
|
|
2712
|
+
hash: sha256:47fa7f612494cb448d28c4e09d8bc2994318c06c94ac6b09fb4f1e39e19247e5
|
|
2713
|
+
type: script
|
|
2714
|
+
size: 5534
|
|
2711
2715
|
- path: infrastructure/scripts/ide-sync/index.js
|
|
2712
|
-
hash: sha256:
|
|
2716
|
+
hash: sha256:c4e8e49f197ac3fd8cad191e2e5b70744f4be1718df98e9c4307f627d75fd40a
|
|
2713
2717
|
type: script
|
|
2714
|
-
size:
|
|
2718
|
+
size: 14787
|
|
2715
2719
|
- path: infrastructure/scripts/ide-sync/README.md
|
|
2716
|
-
hash: sha256:
|
|
2720
|
+
hash: sha256:4b7ce30ded1d8a81c2d293711d6f20cd97fad5c8d014c4102c80e4a54978711f
|
|
2717
2721
|
type: script
|
|
2718
|
-
size:
|
|
2722
|
+
size: 5313
|
|
2719
2723
|
- path: infrastructure/scripts/ide-sync/redirect-generator.js
|
|
2720
|
-
hash: sha256:
|
|
2724
|
+
hash: sha256:618b767411f1d9e65b450291bf26b36bec839cfe899d44771dc832703fc50389
|
|
2721
2725
|
type: script
|
|
2722
|
-
size:
|
|
2726
|
+
size: 4213
|
|
2723
2727
|
- path: infrastructure/scripts/ide-sync/transformers/antigravity.js
|
|
2724
2728
|
hash: sha256:d8fe023ce70651e0d83151f9f90000d8ffb51ab260f246704c1616739a001622
|
|
2725
2729
|
type: script
|
|
@@ -2732,10 +2736,6 @@ files:
|
|
|
2732
2736
|
hash: sha256:fe38ba6960cc7e1dd2f1de963cdfc5a4be83eb5240c696e9eea607421a23cf22
|
|
2733
2737
|
type: script
|
|
2734
2738
|
size: 2427
|
|
2735
|
-
- path: infrastructure/scripts/ide-sync/transformers/windsurf.js
|
|
2736
|
-
hash: sha256:6eec13241f1216d64acb5b69af92fb36e22f22697dd166a1afe9e4e9048884db
|
|
2737
|
-
type: script
|
|
2738
|
-
size: 2708
|
|
2739
2739
|
- path: infrastructure/scripts/ide-sync/validator.js
|
|
2740
2740
|
hash: sha256:356c78125db7f88d14f4e521808e96593d729291c3d7a1c36cb02f78b4aef8fc
|
|
2741
2741
|
type: script
|
|
@@ -2933,13 +2933,13 @@ files:
|
|
|
2933
2933
|
type: script
|
|
2934
2934
|
size: 3743
|
|
2935
2935
|
- path: infrastructure/scripts/test-utilities.js
|
|
2936
|
-
hash: sha256:
|
|
2936
|
+
hash: sha256:7b05c0c1f82fb647d6784b408fa0411276851f7eca6dbb359186fd6b0b63cdc7
|
|
2937
2937
|
type: script
|
|
2938
|
-
size:
|
|
2938
|
+
size: 5861
|
|
2939
2939
|
- path: infrastructure/scripts/tool-resolver.js
|
|
2940
|
-
hash: sha256:
|
|
2940
|
+
hash: sha256:d025d620641f2d36f4749197d0e5970e91ee65b9bee8996f68f6f239efe18f78
|
|
2941
2941
|
type: script
|
|
2942
|
-
size:
|
|
2942
|
+
size: 11000
|
|
2943
2943
|
- path: infrastructure/scripts/transaction-manager.js
|
|
2944
2944
|
hash: sha256:4c07f113b887de626cbbd1f1657ae49cb2e239dc768bc040487cc28c01a3829d
|
|
2945
2945
|
type: script
|
|
@@ -2952,10 +2952,26 @@ files:
|
|
|
2952
2952
|
hash: sha256:3a800a109edfeced0391550119b2b90f58405c65d6e0d4f1119e611c33ccbac2
|
|
2953
2953
|
type: script
|
|
2954
2954
|
size: 14900
|
|
2955
|
+
- path: infrastructure/scripts/validate-claude-integration.js
|
|
2956
|
+
hash: sha256:d7b71db77de1d5d6dc9f6c31cd756279fec85e5fa5257d5077ff5ea09575c118
|
|
2957
|
+
type: script
|
|
2958
|
+
size: 2834
|
|
2959
|
+
- path: infrastructure/scripts/validate-codex-integration.js
|
|
2960
|
+
hash: sha256:030fcf9e61fddec1cf6428642e248270fd01d028c42f5dcac28bb36090280229
|
|
2961
|
+
type: script
|
|
2962
|
+
size: 4122
|
|
2963
|
+
- path: infrastructure/scripts/validate-gemini-integration.js
|
|
2964
|
+
hash: sha256:11040f3c4055ba93c98a2a83db25eff2317a43ea1459c54a51ef5daecd203b82
|
|
2965
|
+
type: script
|
|
2966
|
+
size: 4826
|
|
2955
2967
|
- path: infrastructure/scripts/validate-output-pattern.js
|
|
2956
2968
|
hash: sha256:91111d656e8d7b38a20a1bda753e663b74318f75cdab2025c7e0b84c775fc83d
|
|
2957
2969
|
type: script
|
|
2958
2970
|
size: 6692
|
|
2971
|
+
- path: infrastructure/scripts/validate-parity.js
|
|
2972
|
+
hash: sha256:1ec3b6c5863b4130a30f3844f9f148e86969011a8e557ca8b8d8f3bd5e96bd83
|
|
2973
|
+
type: script
|
|
2974
|
+
size: 3929
|
|
2959
2975
|
- path: infrastructure/scripts/validate-paths.js
|
|
2960
2976
|
hash: sha256:4360d0735ec2c717a97c1670855c5423cf5172005a93c4698b5305ccec48bc2e
|
|
2961
2977
|
type: script
|
|
@@ -2977,9 +2993,9 @@ files:
|
|
|
2977
2993
|
type: script
|
|
2978
2994
|
size: 10362
|
|
2979
2995
|
- path: infrastructure/templates/aios-sync.yaml.template
|
|
2980
|
-
hash: sha256:
|
|
2996
|
+
hash: sha256:a22718c4eec5b7bc808cb283f18a96c96cfcbbed4a0ffec6e332da45a4a0a549
|
|
2981
2997
|
type: template
|
|
2982
|
-
size:
|
|
2998
|
+
size: 8567
|
|
2983
2999
|
- path: infrastructure/templates/coderabbit.yaml.template
|
|
2984
3000
|
hash: sha256:a8f8e08e5c109b4c635a468e9b400bfb35361073de8a0883c5d4c9db84d7ed0a
|
|
2985
3001
|
type: template
|
|
@@ -3249,9 +3265,9 @@ files:
|
|
|
3249
3265
|
type: data
|
|
3250
3266
|
size: 5046
|
|
3251
3267
|
- path: product/data/integration-patterns.md
|
|
3252
|
-
hash: sha256:
|
|
3268
|
+
hash: sha256:b771f999fb452dcabf835d5f5e5ae3982c48cece5941cc5a276b6f280062db43
|
|
3253
3269
|
type: data
|
|
3254
|
-
size:
|
|
3270
|
+
size: 4808
|
|
3255
3271
|
- path: product/data/migration-safety-guide.md
|
|
3256
3272
|
hash: sha256:42200ca180d4586447304dfc7f8035ccd09860b6ac34c72b63d284e57c94d2db
|
|
3257
3273
|
type: data
|
|
@@ -3460,10 +3476,6 @@ files:
|
|
|
3460
3476
|
hash: sha256:13d5fb7858534f6d49150a5dff642faa276c17b9d242f995369c5e7e1d37ae40
|
|
3461
3477
|
type: template
|
|
3462
3478
|
size: 6785
|
|
3463
|
-
- path: product/templates/ide-rules/cline-rules.md
|
|
3464
|
-
hash: sha256:e2c7a57d630fab3220810b32aa24009a6bf749cd8b863d8b8a7a524861758e77
|
|
3465
|
-
type: template
|
|
3466
|
-
size: 2840
|
|
3467
3479
|
- path: product/templates/ide-rules/codex-rules.md
|
|
3468
3480
|
hash: sha256:e8345404f17977a268b917a4ff86e4f10f80174a6bb572865e5413c8f7dd217a
|
|
3469
3481
|
type: template
|
|
@@ -3477,17 +3489,9 @@ files:
|
|
|
3477
3489
|
type: template
|
|
3478
3490
|
size: 3071
|
|
3479
3491
|
- path: product/templates/ide-rules/gemini-rules.md
|
|
3480
|
-
hash: sha256:
|
|
3481
|
-
type: template
|
|
3482
|
-
size: 6605
|
|
3483
|
-
- path: product/templates/ide-rules/roo-rules.md
|
|
3484
|
-
hash: sha256:65746d390f570aade0ef98876861b510494a5d3c040c41650297b1c95c04581a
|
|
3492
|
+
hash: sha256:c0621a46f2a37ec8c8cfe6b6b240eaf207738693c80199ead7c338d4223d15c2
|
|
3485
3493
|
type: template
|
|
3486
|
-
size:
|
|
3487
|
-
- path: product/templates/ide-rules/windsurf-rules.md
|
|
3488
|
-
hash: sha256:7c880de0dec8b06eb3390a56614996c6033c1939907d77f73f4f6f85ae42b3e2
|
|
3489
|
-
type: template
|
|
3490
|
-
size: 2604
|
|
3494
|
+
size: 2471
|
|
3491
3495
|
- path: product/templates/index-strategy-tmpl.yaml
|
|
3492
3496
|
hash: sha256:6db2b40f6eef47f4faa31ce513ee7b0d5f04d9a5e081a72e0cdbad402eb444ae
|
|
3493
3497
|
type: template
|
|
@@ -3580,6 +3584,14 @@ files:
|
|
|
3580
3584
|
hash: sha256:7ff9caabce83ccc14acb05e9d06eaf369a8ebd54c2ddf4988efcc942f6c51037
|
|
3581
3585
|
type: template
|
|
3582
3586
|
size: 6763
|
|
3587
|
+
- path: product/templates/statusline/statusline-script.js
|
|
3588
|
+
hash: sha256:352b928acd0a477875192ce96fa3aebb278fe9d9b55bc24a144e7aaafa180b45
|
|
3589
|
+
type: template
|
|
3590
|
+
size: 6190
|
|
3591
|
+
- path: product/templates/statusline/track-agent.sh
|
|
3592
|
+
hash: sha256:b0761d31538ed92db1e3d68c21b1e462ef2a18d1b83094b87f58c0a601ebb24d
|
|
3593
|
+
type: template
|
|
3594
|
+
size: 1800
|
|
3583
3595
|
- path: product/templates/story-tmpl.yaml
|
|
3584
3596
|
hash: sha256:3fa85f0ebef9e8ee1e7063b579d5d27819e1e2f69497654f94e0b0f7fc847006
|
|
3585
3597
|
type: template
|
|
@@ -3897,9 +3909,9 @@ files:
|
|
|
3897
3909
|
type: script
|
|
3898
3910
|
size: 1708
|
|
3899
3911
|
- path: user-guide.md
|
|
3900
|
-
hash: sha256:
|
|
3912
|
+
hash: sha256:17ab2e90a7b1e56fc22e451d7c62fd5c56dc03adafc6c625ee367ad778172b28
|
|
3901
3913
|
type: documentation
|
|
3902
|
-
size:
|
|
3914
|
+
size: 38360
|
|
3903
3915
|
- path: workflow-intelligence/__tests__/confidence-scorer.test.js
|
|
3904
3916
|
hash: sha256:237216842d3eb710ae33f3aba6c7b2a6a353cccc1dea6d4b927d8d063d9cb635
|
|
3905
3917
|
type: workflow-intelligence
|