sinapse-ai 1.6.1 → 1.8.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.
Files changed (131) hide show
  1. package/.claude/CLAUDE.md +5 -11
  2. package/.claude/hooks/README.md +14 -1
  3. package/.claude/hooks/code-intel-pretool.cjs +115 -0
  4. package/.claude/hooks/enforce-delegation.cjs +31 -3
  5. package/.claude/hooks/enforce-framework-boundary.cjs +324 -0
  6. package/.claude/hooks/enforce-permission-mode.cjs +249 -0
  7. package/.claude/hooks/secret-scanning.cjs +34 -43
  8. package/.claude/hooks/synapse-engine.cjs +23 -23
  9. package/.claude/hooks/telemetry-post-tool.cjs +128 -0
  10. package/.claude/hooks/telemetry-stop.cjs +132 -0
  11. package/.claude/hooks/verify-packages.cjs +9 -2
  12. package/.claude/rules/documentation-first.md +1 -1
  13. package/.claude/rules/hook-governance.md +2 -0
  14. package/.sinapse-ai/cli/commands/health/index.js +24 -0
  15. package/.sinapse-ai/core/README.md +11 -0
  16. package/.sinapse-ai/core/config/config-loader.js +19 -0
  17. package/.sinapse-ai/core/config/merge-utils.js +8 -0
  18. package/.sinapse-ai/core/errors/constants.js +147 -0
  19. package/.sinapse-ai/core/errors/error-registry.js +176 -0
  20. package/.sinapse-ai/core/errors/index.js +50 -0
  21. package/.sinapse-ai/core/errors/serializer.js +147 -0
  22. package/.sinapse-ai/core/errors/sinapse-error.js +144 -0
  23. package/.sinapse-ai/core/errors/utils.js +187 -0
  24. package/.sinapse-ai/core/execution/build-orchestrator.js +47 -49
  25. package/.sinapse-ai/core/execution/build-state-manager.js +183 -31
  26. package/.sinapse-ai/core/execution/parallel-executor.js +7 -1
  27. package/.sinapse-ai/core/execution/semantic-merge-engine.js +26 -14
  28. package/.sinapse-ai/core/execution/subagent-dispatcher.js +201 -60
  29. package/.sinapse-ai/core/execution/wave-executor.js +4 -1
  30. package/.sinapse-ai/core/grounding/README.md +71 -11
  31. package/.sinapse-ai/core/health-check/checks/project/framework-config.js +38 -2
  32. package/.sinapse-ai/core/health-check/checks/project/package-json.js +47 -3
  33. package/.sinapse-ai/core/health-check/checks/services/gemini-cli.js +117 -0
  34. package/.sinapse-ai/core/health-check/checks/services/index.js +2 -0
  35. package/.sinapse-ai/core/health-check/healers/index.js +40 -3
  36. package/.sinapse-ai/core/ideation/ideation-engine.js +212 -107
  37. package/.sinapse-ai/core/ids/gate-evaluator.js +318 -0
  38. package/.sinapse-ai/core/ids/gates/g5-semantic-handshake.js +190 -0
  39. package/.sinapse-ai/core/ids/gates/g6-ci-integrity.js +162 -0
  40. package/.sinapse-ai/core/ids/index.js +30 -0
  41. package/.sinapse-ai/core/memory/__tests__/active-modules.verify.js +11 -0
  42. package/.sinapse-ai/core/memory/gotchas-memory.js +37 -2
  43. package/.sinapse-ai/core/orchestration/agent-invoker.js +29 -6
  44. package/.sinapse-ai/core/orchestration/brownfield-handler.js +36 -3
  45. package/.sinapse-ai/core/orchestration/condition-evaluator.js +57 -0
  46. package/.sinapse-ai/core/orchestration/executors/epic-3-executor.js +76 -5
  47. package/.sinapse-ai/core/orchestration/executors/epic-4-executor.js +63 -17
  48. package/.sinapse-ai/core/orchestration/executors/epic-6-executor.js +153 -41
  49. package/.sinapse-ai/core/orchestration/executors/epic-executor.js +40 -0
  50. package/.sinapse-ai/core/orchestration/greenfield-handler.js +87 -3
  51. package/.sinapse-ai/core/orchestration/master-orchestrator.js +150 -10
  52. package/.sinapse-ai/core/orchestration/parallel-executor.js +6 -1
  53. package/.sinapse-ai/core/orchestration/recovery-handler.js +81 -8
  54. package/.sinapse-ai/core/orchestration/workflow-executor.js +41 -0
  55. package/.sinapse-ai/core/registry/registry-loader.js +71 -5
  56. package/.sinapse-ai/core/registry/squad-agent-resolver.js +253 -0
  57. package/.sinapse-ai/core/synapse/context/context-tracker.js +104 -9
  58. package/.sinapse-ai/core/synapse/context/index.js +19 -0
  59. package/.sinapse-ai/core/synapse/context/semantic-handshake-engine.js +555 -0
  60. package/.sinapse-ai/core/synapse/diagnostics/collectors/pipeline-collector.js +4 -2
  61. package/.sinapse-ai/core/synapse/engine.js +43 -3
  62. package/.sinapse-ai/core/telemetry/ids-sink.js +188 -0
  63. package/.sinapse-ai/core/utils/output-formatter.js +8 -290
  64. package/.sinapse-ai/core/utils/spawn-safe.js +186 -0
  65. package/.sinapse-ai/core-config.yaml +68 -1
  66. package/.sinapse-ai/data/entity-registry.yaml +15082 -13618
  67. package/.sinapse-ai/data/registry-update-log.jsonl +143 -0
  68. package/.sinapse-ai/development/agents/developer.md +2 -0
  69. package/.sinapse-ai/development/agents/devops.md +9 -0
  70. package/.sinapse-ai/development/external-executors/README.md +18 -0
  71. package/.sinapse-ai/development/external-executors/codex.md +56 -0
  72. package/.sinapse-ai/development/scripts/populate-entity-registry.js +65 -9
  73. package/.sinapse-ai/development/scripts/squad/squad-downloader.js +169 -14
  74. package/.sinapse-ai/development/tasks/delegate-to-external-executor.md +152 -0
  75. package/.sinapse-ai/development/tasks/github-devops-pre-push-quality-gate.md +46 -29
  76. package/.sinapse-ai/development/tasks/update-sinapse.md +3 -3
  77. package/.sinapse-ai/hooks/sinapse-brand-grounding.cjs +4 -7
  78. package/.sinapse-ai/hooks/sinapse-ds-grounding.cjs +5 -8
  79. package/.sinapse-ai/hooks/sinapse-vault-grounding.cjs +6 -9
  80. package/.sinapse-ai/infrastructure/integrations/ai-providers/ai-provider-factory.js +4 -1
  81. package/.sinapse-ai/infrastructure/integrations/ai-providers/claude-provider.js +57 -55
  82. package/.sinapse-ai/infrastructure/integrations/pm-adapters/github-adapter.js +9 -7
  83. package/.sinapse-ai/infrastructure/scripts/ide-sync/gemini-commands.js +298 -0
  84. package/.sinapse-ai/infrastructure/scripts/ide-sync/index.js +127 -6
  85. package/.sinapse-ai/infrastructure/scripts/ide-sync/persona-renderer.js +97 -0
  86. package/.sinapse-ai/infrastructure/scripts/ide-sync/transformers/antigravity.js +121 -0
  87. package/.sinapse-ai/infrastructure/scripts/ide-sync/transformers/cursor.js +119 -0
  88. package/.sinapse-ai/infrastructure/scripts/ide-sync/transformers/github-copilot.js +191 -0
  89. package/.sinapse-ai/infrastructure/scripts/ide-sync/transformers/kimi.js +448 -0
  90. package/.sinapse-ai/install-manifest.yaml +218 -114
  91. package/.sinapse-ai/product/templates/engine/renderer.js +20 -1
  92. package/.sinapse-ai/scripts/pm.sh +18 -6
  93. package/bin/cli.js +17 -0
  94. package/bin/commands/agents.js +96 -0
  95. package/bin/commands/doctor.js +15 -0
  96. package/bin/commands/ideate.js +129 -0
  97. package/bin/commands/uninstall.js +40 -0
  98. package/bin/postinstall.js +50 -4
  99. package/bin/sinapse.js +146 -2
  100. package/bin/utils/secret-scanner-core.js +253 -0
  101. package/bin/utils/staged-secret-scan.js +106 -40
  102. package/docs/framework/collaboration-autonomy-plan.md +18 -18
  103. package/docs/guides/parallel-workflow.md +6 -6
  104. package/package.json +22 -5
  105. package/packages/installer/src/installer/git-hooks-installer.js +384 -0
  106. package/packages/installer/src/installer/sinapse-ai-installer.js +16 -0
  107. package/packages/installer/src/wizard/ide-config-generator.js +23 -0
  108. package/packages/installer/src/wizard/validators.js +38 -1
  109. package/packages/installer/tests/unit/artifact-copy-pipeline/artifact-copy-pipeline.test.js +5 -1
  110. package/packages/installer/tests/unit/doctor/doctor-checks.test.js +44 -22
  111. package/packages/installer/tests/unit/git-hooks-installer.test.js +262 -0
  112. package/scripts/eval-runner.js +422 -0
  113. package/scripts/generate-install-manifest.js +13 -9
  114. package/scripts/generate-synapse-runtime.js +51 -0
  115. package/scripts/regenerate-orqx-stubs.ps1 +6 -5
  116. package/scripts/validate-all.js +1 -0
  117. package/scripts/validate-evals.js +466 -0
  118. package/scripts/validate-schemas.js +539 -0
  119. package/scripts/validate-squad-orqx.js +9 -2
  120. package/squads/claude-code-mastery/knowledge-base/memory-systems-reference.md +1 -1
  121. package/squads/squad-brand/templates/client-delivery-template.md +1 -1
  122. package/squads/squad-content/knowledge-base/social-compression-framework.md +1 -1
  123. package/squads/squad-council/knowledge-base/brand-strategy-models.md +1 -1
  124. package/.sinapse-ai/development/scripts/elicitation-engine.js +0 -385
  125. package/.sinapse-ai/development/scripts/elicitation-session-manager.js +0 -300
  126. package/.sinapse-ai/development/tasks/test-validation-task.md +0 -172
  127. package/docs/chrome-brain-upgrade-plan.md +0 -624
  128. package/docs/constitution-compliance.md +0 -87
  129. package/docs/mega-upgrade-orchestration-plan.md +0 -71
  130. package/docs/research-synthesis-for-upgrade.md +0 -511
  131. package/docs/security-audit-report.md +0 -306
@@ -7,9 +7,9 @@
7
7
  # - SHA256 hashes for change detection
8
8
  # - File types for categorization
9
9
  #
10
- version: 1.6.1
10
+ version: 1.8.0
11
11
  generator: scripts/generate-install-manifest.js
12
- file_count: 1167
12
+ file_count: 1193
13
13
  files:
14
14
  - path: cli/commands/config/index.js
15
15
  hash: sha256:bfa83cb1dc111b0b30dd298dc0abc2150b73f939b6cd4458effa8e6d407bc9e2
@@ -20,9 +20,9 @@ files:
20
20
  type: cli
21
21
  size: 6721
22
22
  - path: cli/commands/health/index.js
23
- hash: sha256:7140286f6f0fcd283dcc0a6261dfe914ee50aae5c97ddd9e548ffa6a3279fe1e
23
+ hash: sha256:7a75f9847256625e6ec2a6d740448703c5487ab2cebab94fa4eab476eddf6a83
24
24
  type: cli
25
- size: 8579
25
+ size: 9512
26
26
  - path: cli/commands/manifest/index.js
27
27
  hash: sha256:0b11eb25b93abfc679046bc0afddfb282eabe7143c2680e0a5aa18657db0c943
28
28
  type: cli
@@ -192,9 +192,9 @@ files:
192
192
  type: cli
193
193
  size: 5908
194
194
  - path: core-config.yaml
195
- hash: sha256:af0e4e1b42d11bc9ba0054ac094e0bbf428914dbad03773deff08fb53df6b01a
195
+ hash: sha256:b74736a9ad195006d3310eed224111ca77cc30a0944976bb290d18da8af8011a
196
196
  type: config
197
- size: 10398
197
+ size: 12810
198
198
  - path: core/code-intel/code-intel-client.js
199
199
  hash: sha256:65f6c0f2bb639ff3080db3d85660e0b8097e5af7c60dc04f582ef20f42cc9cfc
200
200
  type: core
@@ -256,9 +256,9 @@ files:
256
256
  type: core
257
257
  size: 4929
258
258
  - path: core/config/config-loader.js
259
- hash: sha256:5c7dd626866c0b853ea98ee06276ed3bcd08bd274cd2a805b412f005cb3bf959
259
+ hash: sha256:7cb98af385dda142db1b06bc3ca04c44988be425edf251ed0ea914e06e538dd5
260
260
  type: core
261
- size: 8540
261
+ size: 9460
262
262
  - path: core/config/config-resolver.js
263
263
  hash: sha256:e5167c2d301d14e8b24880a502780e4a77aa95fe3988d6673ebb6554cc746f26
264
264
  type: core
@@ -268,9 +268,9 @@ files:
268
268
  type: core
269
269
  size: 3685
270
270
  - path: core/config/merge-utils.js
271
- hash: sha256:28f4ac0c50e06b105d97e56459aeb6ad11e960e5d0c497eb76c5e928dc63ad82
271
+ hash: sha256:56cfadcaee8bbc333e288a330d3e79158b6baa5a5c666ba7541a286ca7f2f5e0
272
272
  type: core
273
- size: 2826
273
+ size: 3196
274
274
  - path: core/config/migrate-config.js
275
275
  hash: sha256:82a079caa21de922d339d65f8ff170b1c5515387250ba350a61a4751823922e2
276
276
  type: core
@@ -299,6 +299,26 @@ files:
299
299
  hash: sha256:4da0e29fa2aad5d2dcc83c25f3dbecb00ed2de932166d39f1311b19ae862710d
300
300
  type: template
301
301
  size: 728
302
+ - path: core/docs/component-creation-guide.md
303
+ hash: sha256:9f25621ed3ebb88c931f82f9827abb3eecb65fe02c8637e46dff6c987793793b
304
+ type: documentation
305
+ size: 9330
306
+ - path: core/docs/session-update-pattern.md
307
+ hash: sha256:007f7672d6f6bb34d97d382f998e4a749aafa0290724b5662a1d4602448e621f
308
+ type: documentation
309
+ size: 8831
310
+ - path: core/docs/SHARD-TRANSLATION-GUIDE.md
311
+ hash: sha256:9b17ab6f27ea9a8adec4598c0d82ceaefc201c58ad4d62ff40e4277318211a66
312
+ type: documentation
313
+ size: 8680
314
+ - path: core/docs/template-syntax.md
315
+ hash: sha256:7916a88ec14ada601ebf9c6e43246c404e495e9ab860ea71cdbd8601de19ff99
316
+ type: documentation
317
+ size: 6240
318
+ - path: core/docs/troubleshooting-guide.md
319
+ hash: sha256:8a47e61f5313372b52f9ef7ed64215299daa43ffa40a0f56c64a7d6758243654
320
+ type: documentation
321
+ size: 11580
302
322
  - path: core/doctor/checks/agent-memory.js
303
323
  hash: sha256:adad35cd3995b813cb9d87fd617fbbe7784397edb0f58c3114511ba45bc76f19
304
324
  type: core
@@ -407,6 +427,30 @@ files:
407
427
  hash: sha256:0cd542df40d761b2cce9e6f151b13ce6c02668d61a3f01d10e218df26d298b65
408
428
  type: elicitation
409
429
  size: 10936
430
+ - path: core/errors/constants.js
431
+ hash: sha256:d447e9b5e005a41a91f9a001c8bdc8d4a4f98a122a27833d62f240212a378728
432
+ type: core
433
+ size: 4647
434
+ - path: core/errors/error-registry.js
435
+ hash: sha256:2e10ddb3ea485b3b94c6b314a9e8def09a39cd9bf9eb9ccc662398b27e8239c5
436
+ type: core
437
+ size: 5140
438
+ - path: core/errors/index.js
439
+ hash: sha256:2190d6f5f230f32502623624903d2d5c0a317587c82e1749b90d8bec12c00d8a
440
+ type: core
441
+ size: 1958
442
+ - path: core/errors/serializer.js
443
+ hash: sha256:102b516b3676445506eaf566270989cc8489dd4b0565629e8b0063275bf5ec53
444
+ type: core
445
+ size: 4234
446
+ - path: core/errors/sinapse-error.js
447
+ hash: sha256:f08a994fb1b1d14cf79e0912bc578b233380d40f695db5bfb73635840f01ea52
448
+ type: core
449
+ size: 5064
450
+ - path: core/errors/utils.js
451
+ hash: sha256:b3183b17f9809da594a091f10545b9e2718f17bf6faa4bc5ba8d19b5954acd81
452
+ type: core
453
+ size: 4775
410
454
  - path: core/events/dashboard-emitter.js
411
455
  hash: sha256:e6e2fb9637dd808a410c7238ace6226b6fd8eb7ac2f6d663adba3832310416d7
412
456
  type: core
@@ -424,21 +468,21 @@ files:
424
468
  type: core
425
469
  size: 34059
426
470
  - path: core/execution/build-orchestrator.js
427
- hash: sha256:2f6364c0f7c3570f37bf31f9f2e9130232fffe9804499671109c670682b07d7e
471
+ hash: sha256:d0bcee0a2bd7b8512d5fcddfc3b29f1390aedf4457f6f3d56cbd8787fa0e71c9
428
472
  type: core
429
- size: 31787
473
+ size: 32609
430
474
  - path: core/execution/build-state-manager.js
431
- hash: sha256:70f0eec0bbdaea2f8f8430dcc4cef7a78d11e6334f275451cd21996314307c37
475
+ hash: sha256:3b2fe56bf0e1a480f663a02afbb83c6d11cf89fb56815381c7ccafab948a63ae
432
476
  type: core
433
- size: 48980
477
+ size: 53047
434
478
  - path: core/execution/context-injector.js
435
479
  hash: sha256:b0032791337fd54bc48df48d3063e791cf501537e4b5f9efc37cf98e5064b0ad
436
480
  type: core
437
481
  size: 14864
438
482
  - path: core/execution/parallel-executor.js
439
- hash: sha256:b2e69804b554a2d44f1c8c182c15512f46dc8fcfb62d32f37298c7747ba7fa83
483
+ hash: sha256:f5a68f60536ad6116ddc49e4d55ce5f1fc3b55c26ae27622b221e342b2ed37a3
440
484
  type: core
441
- size: 8025
485
+ size: 8399
442
486
  - path: core/execution/parallel-monitor.js
443
487
  hash: sha256:4b789fd8d6736ff794181be2069b972752649759cc33b69201bef2d8c41ec6b5
444
488
  type: core
@@ -452,17 +496,17 @@ files:
452
496
  type: core
453
497
  size: 14557
454
498
  - path: core/execution/semantic-merge-engine.js
455
- hash: sha256:c0b76d5e1dfb6986b2dd21324e413ad54f3607ce39e50ec157e6b13c64a6875f
499
+ hash: sha256:39ab1acde2a88585fdee1e5307804eaf5886e3c20a771586846b5c25c9ee4356
456
500
  type: core
457
- size: 51572
501
+ size: 52328
458
502
  - path: core/execution/subagent-dispatcher.js
459
- hash: sha256:376c3c1c7407360f085e6628b8cd5d25596b2bc0d644c9bf001b4c0145bd2d50
503
+ hash: sha256:19f050834b0c5faf69ac5ff8d448ab3a7af7109c82fd2cbb5299320b7e7b6e2b
460
504
  type: core
461
- size: 25746
505
+ size: 32197
462
506
  - path: core/execution/wave-executor.js
463
- hash: sha256:630b8d59b147e52c6211877392a20ad51d9733a6632e80d8864f94bd697d2988
507
+ hash: sha256:49cc1b4712d13cb0638f514cc3b00fa0ab576737c942103fbf5d0931010727b7
464
508
  type: core
465
- size: 11061
509
+ size: 11268
466
510
  - path: core/external-executors/delegate-cli.js
467
511
  hash: sha256:f9ba17ba23010e94f13c41182487fa2d71458331403bbb32e76e7859bcfc7275
468
512
  type: core
@@ -532,9 +576,9 @@ files:
532
576
  type: core
533
577
  size: 938
534
578
  - path: core/grounding/README.md
535
- hash: sha256:5db896ada8ccb9307e3a104887e3c47996de1d9a2410c132d039f38dc1e8ff9d
579
+ hash: sha256:ce4b0e0cef09f1eb337dd3aa321b5b48fe3c82dac0ea2dfa580edd9197cf7892
536
580
  type: core
537
- size: 1159
581
+ size: 3549
538
582
  - path: core/grounding/vault.cjs
539
583
  hash: sha256:9254360614fd3625479465a04e34f14a8e11cfe8adb5cea75386c0597ac9ae8d
540
584
  type: core
@@ -624,9 +668,9 @@ files:
624
668
  type: core
625
669
  size: 4371
626
670
  - path: core/health-check/checks/project/framework-config.js
627
- hash: sha256:91aef4609dafc37b6b1051281c81090ccdc507e3e9f509e4b77883f0354ebe9e
671
+ hash: sha256:ca4b980ac2db3997ffa9de307e15f0fdf26c283296094ea4db1447ca8a667aae
628
672
  type: core
629
- size: 4029
673
+ size: 5121
630
674
  - path: core/health-check/checks/project/index.js
631
675
  hash: sha256:0fc2732f18f9a853b6d750362836a4472c9921bf3b4e203c9855165fd31a7e88
632
676
  type: core
@@ -636,9 +680,9 @@ files:
636
680
  type: core
637
681
  size: 4687
638
682
  - path: core/health-check/checks/project/package-json.js
639
- hash: sha256:eb9dd1467fe249775a998622ee00c8fc47f7c8a1f8853f27241aff3d071d0de2
683
+ hash: sha256:961441a312e4d5f50e9379b4d03125710bc17c293fd7b5b26700f79dba50c9aa
640
684
  type: core
641
- size: 2949
685
+ size: 4278
642
686
  - path: core/health-check/checks/project/sinapse-directory.js
643
687
  hash: sha256:183f4a8e290e028bf3a95e158caa90ff229b6292a1cd2298c837f849176ea251
644
688
  type: core
@@ -695,14 +739,18 @@ files:
695
739
  hash: sha256:57b8825acd265372c2a584aa9ae4fb35e21cb70d74d4efd37d0ca068a3f188c1
696
740
  type: core
697
741
  size: 3600
742
+ - path: core/health-check/checks/services/gemini-cli.js
743
+ hash: sha256:3a83b51888200044fc4944a243d7a1ed79de0b94b6ff52aa6eed6aca014c7758
744
+ type: core
745
+ size: 3017
698
746
  - path: core/health-check/checks/services/github-cli.js
699
747
  hash: sha256:3d7f666a48ba352384f1801db9372e1dca48d8ddbad4152b7dcbea4c1ac6110d
700
748
  type: core
701
749
  size: 2885
702
750
  - path: core/health-check/checks/services/index.js
703
- hash: sha256:eb099be3bb9c9079a3419873749778f55cd446d17b96542502180ab027d34ca6
751
+ hash: sha256:1cb72d64038883eed53b1d1897fcc25671baa818f8bec46b452c8fbdac7bde8b
704
752
  type: core
705
- size: 592
753
+ size: 658
706
754
  - path: core/health-check/checks/services/mcp-integration.js
707
755
  hash: sha256:d7c74bc2d43953a1be172891c14e2c03c3028c10f0378b43e82987e81355ebfa
708
756
  type: core
@@ -716,9 +764,9 @@ files:
716
764
  type: core
717
765
  size: 8628
718
766
  - path: core/health-check/healers/index.js
719
- hash: sha256:d2693608743e559c2a2b4df2821d60e10d0d2d9038a82b2c054daaa87546bd65
767
+ hash: sha256:458d3a46227d6b482143ded4747850e0124636b35a0f2de93a48facd05dfcbdd
720
768
  type: core
721
- size: 8896
769
+ size: 10089
722
770
  - path: core/health-check/index.js
723
771
  hash: sha256:395ef159fe7f472aa47203f5b34cfb6e6ba27b600ac82fc6c434a84cda86b60a
724
772
  type: core
@@ -740,9 +788,9 @@ files:
740
788
  type: core
741
789
  size: 7763
742
790
  - path: core/ideation/ideation-engine.js
743
- hash: sha256:f9773242c2f7ba6e837680b96f277181ed5a316e374c162d8db3280ee2debe16
791
+ hash: sha256:eb9119085bfeb5eee344a8949b54f8375f85c50ee38818bd4b9aab299ad871e9
744
792
  type: core
745
- size: 22874
793
+ size: 27450
746
794
  - path: core/ids/circuit-breaker.js
747
795
  hash: sha256:d9ff8c6e540902457b17aba668ff67c04d40564ed479993ad3c4807fb8c09c3f
748
796
  type: core
@@ -751,6 +799,10 @@ files:
751
799
  hash: sha256:2849f351abf79b141be692933aebe1361f960f582a27f1bf58575f1fc726897c
752
800
  type: core
753
801
  size: 18065
802
+ - path: core/ids/gate-evaluator.js
803
+ hash: sha256:bd7df6909e933b339cd5f9cbe8f926dcd4fdc013fcbefbdda308a1dfbfb2616c
804
+ type: core
805
+ size: 10819
754
806
  - path: core/ids/gates/g1-epic-creation.js
755
807
  hash: sha256:243f93c5d17df6f2e526a87e60fcbd6df19ddef34bf5af42bbfa139a986817f9
756
808
  type: core
@@ -767,14 +819,22 @@ files:
767
819
  hash: sha256:8516471b5b29185a2a56685e4d6f4fd5da3b973917cf8bf14a00ed7aaf5f87e9
768
820
  type: core
769
821
  size: 4400
822
+ - path: core/ids/gates/g5-semantic-handshake.js
823
+ hash: sha256:15dcbeba76ac865e69ff9215905154538482968dc918db637283180a7c8796fa
824
+ type: core
825
+ size: 6366
826
+ - path: core/ids/gates/g6-ci-integrity.js
827
+ hash: sha256:567cdbfea471bf8441ce70685f313df630bd5b937e8e8e29500c935a370eb3c5
828
+ type: core
829
+ size: 6116
770
830
  - path: core/ids/incremental-decision-engine.js
771
831
  hash: sha256:8c952e724acc886de6ab9283717acb63a1d46e1ac6e9179afc782ef5dd7b80bd
772
832
  type: core
773
833
  size: 21405
774
834
  - path: core/ids/index.js
775
- hash: sha256:2eea2955458473c78c32127feb6cc3823dcfbbe831ba27c57caf1e65db60699e
835
+ hash: sha256:fc40a8c185f158b1f30b9db59e62902dbd6b0be4cbf5beead5446250e15673f3
776
836
  type: core
777
- size: 3626
837
+ size: 4382
778
838
  - path: core/ids/layer-classifier.js
779
839
  hash: sha256:d05c0bc4766f5595cd4bd60d3d8d5cc4a6d98e041d8dd84bde795e8531785391
780
840
  type: core
@@ -840,13 +900,13 @@ files:
840
900
  type: core
841
901
  size: 10398
842
902
  - path: core/memory/__tests__/active-modules.verify.js
843
- hash: sha256:f4bdaee54d35bb009b587c17af716c228602ea8ab086eb2ae0887ffc23935f48
903
+ hash: sha256:f9d19b7afe34a3855795bab464dc5a6d23c1926c5eed05192910f898d6bbefec
844
904
  type: core
845
- size: 8863
905
+ size: 9619
846
906
  - path: core/memory/gotchas-memory.js
847
- hash: sha256:3ce4d245c4a13c3f2cf63d5a1910a6955390fb214e7ba7d5bbfec5e1f3917c36
907
+ hash: sha256:ef746d1c65d3bbe94a06ebe755ce0777e4e1ddd90867a2b96f6c8544c397fcb3
848
908
  type: core
849
- size: 33103
909
+ size: 34411
850
910
  - path: core/migration/migration-config.yaml
851
911
  hash: sha256:4dbf6b0769884a7960bb4f23a983aa45ccb8be301271564f5290f7af1cffedb1
852
912
  type: core
@@ -856,9 +916,9 @@ files:
856
916
  type: core
857
917
  size: 1836
858
918
  - path: core/orchestration/agent-invoker.js
859
- hash: sha256:f2138230433442b26b5779fc942616faed473853e51e86950506ae4946f28ea2
919
+ hash: sha256:d884a0a78b2d3be36ddda10964984b1a6667fbd7df73bae156995a739ee369e2
860
920
  type: core
861
- size: 16592
921
+ size: 17581
862
922
  - path: core/orchestration/bob-orchestrator.js
863
923
  hash: sha256:54ad95bdc7d088aab5e03a0fb0d2d3ea6b261f09cbecd66c13128421fdb90629
864
924
  type: core
@@ -872,9 +932,9 @@ files:
872
932
  type: core
873
933
  size: 8129
874
934
  - path: core/orchestration/brownfield-handler.js
875
- hash: sha256:b717c5c4c0f6c548f87f65ae394c78e71368c85186b5763a28abc9dfb0e1f71a
935
+ hash: sha256:8ef9a6d27f9d1d4145fbbfb8657691582aaf0c348278edd638d55fd139edddd4
876
936
  type: core
877
- size: 27310
937
+ size: 28608
878
938
  - path: core/orchestration/checklist-runner.js
879
939
  hash: sha256:9bee322fb2572ef81361a3f695b2855f61d610739c612d8b6317cb1b5d6d84c9
880
940
  type: core
@@ -884,9 +944,9 @@ files:
884
944
  type: core
885
945
  size: 19306
886
946
  - path: core/orchestration/condition-evaluator.js
887
- hash: sha256:f1e27fa8f01972a1e025893755e8ade40a215ceab0e9b18920036e77fad1b7ce
947
+ hash: sha256:c90c2b1506d72ce8c468b8b2b90cf4116fd1fc441eb591e8ce09dbcb75e28c00
888
948
  type: core
889
- size: 10846
949
+ size: 12783
890
950
  - path: core/orchestration/context-manager.js
891
951
  hash: sha256:fae16a57d1f57fd164a9b9074eda59d7c9618ecb98754dcadaf016b7d57e903d
892
952
  type: core
@@ -912,25 +972,25 @@ files:
912
972
  type: core
913
973
  size: 11379
914
974
  - path: core/orchestration/executors/epic-3-executor.js
915
- hash: sha256:02d9abba65c21962f0edd5885dd6d12c828da02c06ce3f90ccefdf6cb94a79f6
975
+ hash: sha256:da06c2b492104e453a8b18b1333bd2fd24123efb4933ab623045bff657b6d1d2
916
976
  type: core
917
- size: 6154
977
+ size: 9463
918
978
  - path: core/orchestration/executors/epic-4-executor.js
919
- hash: sha256:0a22a70572515c59d1fa702177adbda6a07e0e319794aec00a47c04cad4cd2ff
979
+ hash: sha256:b830a13e8d6c44c462f2bc87623f6134143b43c7eb53dc489a1b1fa48ea04713
920
980
  type: core
921
- size: 6856
981
+ size: 9172
922
982
  - path: core/orchestration/executors/epic-5-executor.js
923
983
  hash: sha256:865224cd6cb1f80c1228e149349aea5c335440201c9047f849d2ec85b73d3f03
924
984
  type: core
925
985
  size: 8543
926
986
  - path: core/orchestration/executors/epic-6-executor.js
927
- hash: sha256:62556e00563bbe3d89a09130f4782f6bce110d4f6a87a21215ed80eb2520d45c
987
+ hash: sha256:0cd51d8989ac242b7c3da1ac149cc869827c777fe632bc22610921f31b25541c
928
988
  type: core
929
- size: 6790
989
+ size: 12446
930
990
  - path: core/orchestration/executors/epic-executor.js
931
- hash: sha256:36b5735f5717505d7709bf62024d3d23de1078f0ec22a6a0e0367c1bc383a1ab
991
+ hash: sha256:0c25d4799a6338252017d9deb2f73bbdbde58cd5f7bfe4ac0fccdc66fe0229d2
932
992
  type: core
933
- size: 5867
993
+ size: 7160
934
994
  - path: core/orchestration/executors/index.js
935
995
  hash: sha256:eb474ba4a9017681d218d40920d7aed08591e5db2eda335eccc538e6a116b114
936
996
  type: core
@@ -944,9 +1004,9 @@ files:
944
1004
  type: core
945
1005
  size: 15816
946
1006
  - path: core/orchestration/greenfield-handler.js
947
- hash: sha256:e48ac3f3413f8a7e8dbcc034d23db64e8c351b64ae0218bdaa6c25a8603f5d83
1007
+ hash: sha256:33bb2c05c3aee3e02c247afd80e27051a8c0eeb9b32dd3c246d11d5db60773e6
948
1008
  type: core
949
- size: 37513
1009
+ size: 40901
950
1010
  - path: core/orchestration/index.js
951
1011
  hash: sha256:f9c384b2daf2c86edc7e9d600586707b82c0e8d2677cdad6cfd86d1e99a23e9a
952
1012
  type: core
@@ -956,21 +1016,21 @@ files:
956
1016
  type: core
957
1017
  size: 8667
958
1018
  - path: core/orchestration/master-orchestrator.js
959
- hash: sha256:2aaaa7d4442b1d08c2d0b06c28b6bebcd49cc851a0edfdfb680c3975e61e3029
1019
+ hash: sha256:20187d7a36b06b3ad8667a51f0fe9b2e4c506c7c26f26f37d79ab397618442a1
960
1020
  type: core
961
- size: 54437
1021
+ size: 60555
962
1022
  - path: core/orchestration/message-formatter.js
963
1023
  hash: sha256:4683565c3da6d33fa5aeb4629dfa525f90715cb3b3cbbaa4c8a8d952766839d7
964
1024
  type: core
965
1025
  size: 8344
966
1026
  - path: core/orchestration/parallel-executor.js
967
- hash: sha256:d99abcd7853db1ad6828b2e660e72dcf7a88eea76de8b2b166364729c762e039
1027
+ hash: sha256:f72ce9b96274082399af3ed63ec78def1a1e00a60ec7543bf15a510328e83d4e
968
1028
  type: core
969
- size: 5821
1029
+ size: 6127
970
1030
  - path: core/orchestration/recovery-handler.js
971
- hash: sha256:d7917584bc839e705c75867a805fe0b072e0bb2caf943db041d8d0a145456710
1031
+ hash: sha256:cfbf41b69336548b2fc4179a5513243491ca6eb501de3426f98254f118b074e7
972
1032
  type: core
973
- size: 24359
1033
+ size: 27167
974
1034
  - path: core/orchestration/session-state.js
975
1035
  hash: sha256:e4591fc968e8c2be07cc4572128415f3459eec75d831ba139d69faf9c7d9cacc
976
1036
  type: core
@@ -1000,9 +1060,9 @@ files:
1000
1060
  type: core
1001
1061
  size: 31516
1002
1062
  - path: core/orchestration/workflow-executor.js
1003
- hash: sha256:b087a4ac222aef7b18d8ac99ad904c2e820628af2c1f49664ff0e6f42c1dca8c
1063
+ hash: sha256:8da67cc080ffaf4c2f2fc724d700ecb27ca05430ef0cc50356d78979da9f85a6
1004
1064
  type: core
1005
- size: 36366
1065
+ size: 38128
1006
1066
  - path: core/orchestration/workflow-orchestrator.js
1007
1067
  hash: sha256:6e97eec88c8261f15bad79c47b0eafcfe39fbda5c837e156fe803802c3a1c18f
1008
1068
  type: core
@@ -1072,9 +1132,9 @@ files:
1072
1132
  type: core
1073
1133
  size: 17718
1074
1134
  - path: core/README.md
1075
- hash: sha256:40e40b98d46fd88ac973a762914e25c6599880c9054a95bb8bf25eb8b936860b
1135
+ hash: sha256:66346a8362ef3ade8d18f491d86da9578d81ad9d0206380a62554bda707de80a
1076
1136
  type: core
1077
- size: 7417
1137
+ size: 8176
1078
1138
  - path: core/registry/build-registry.js
1079
1139
  hash: sha256:4c9a2e686637a1050b9ffce349ca72957fcaa971d0c1f4a0eb4321d3c7159065
1080
1140
  type: core
@@ -1084,9 +1144,9 @@ files:
1084
1144
  type: core
1085
1145
  size: 4815
1086
1146
  - path: core/registry/registry-loader.js
1087
- hash: sha256:9d611bb08451ecaee0c6edf34b9bc3bbf774515d42b8271f218040f53d2aa892
1147
+ hash: sha256:2db0e197f7af525ec9164cb0364770d981aa6f5c851ef02ba6e35e122aaa381e
1088
1148
  type: core
1089
- size: 7990
1149
+ size: 10200
1090
1150
  - path: core/registry/registry-schema.json
1091
1151
  hash: sha256:456d4dcf3825368ca6e4a4297a9dbb2ccd48b2f4b4cc4eadbb1b7c074c573f7c
1092
1152
  type: core
@@ -1095,6 +1155,10 @@ files:
1095
1155
  hash: sha256:1b0b8a0acd2de9372e63a72c56afe1723ace3ecd64d42af38028f060059c3926
1096
1156
  type: core
1097
1157
  size: 289408
1158
+ - path: core/registry/squad-agent-resolver.js
1159
+ hash: sha256:04f7a4835f4a7d4430e2d495eb8e47af1d3f86158cb9de50797c85c7e4889d49
1160
+ type: core
1161
+ size: 8014
1098
1162
  - path: core/registry/validate-registry.js
1099
1163
  hash: sha256:8612f683f1b7ecd043a0342d05fbe434721b19568b6ff76a483a6de7aa830d5c
1100
1164
  type: core
@@ -1112,9 +1176,17 @@ files:
1112
1176
  type: core
1113
1177
  size: 1014
1114
1178
  - path: core/synapse/context/context-tracker.js
1115
- hash: sha256:e4eaf1af1fc9ca18d6a0fa48f4739087fb5f4060588e0ed9182e561a9cae5869
1179
+ hash: sha256:c9dae4f2e046590d48d2e03be894f437ff0257eb1a487cec3c4ebe773d33b1dc
1180
+ type: core
1181
+ size: 9037
1182
+ - path: core/synapse/context/index.js
1183
+ hash: sha256:f0a1fe4d0215bc7089edac490604fc4a4007e1c9a446164deef231fbf6925cd0
1184
+ type: core
1185
+ size: 471
1186
+ - path: core/synapse/context/semantic-handshake-engine.js
1187
+ hash: sha256:0364c74a5945d2bbf775fbbdc3c5b5fdfb59b725abba9569fcc98bb1aa9c13c9
1116
1188
  type: core
1117
- size: 5840
1189
+ size: 15725
1118
1190
  - path: core/synapse/diagnostics/collectors/consistency-collector.js
1119
1191
  hash: sha256:bc6723508a29a8a01309a4ffafacf324a2d1bf05485e86bca0ea26a098fa5212
1120
1192
  type: core
@@ -1132,9 +1204,9 @@ files:
1132
1204
  type: core
1133
1205
  size: 4969
1134
1206
  - path: core/synapse/diagnostics/collectors/pipeline-collector.js
1135
- hash: sha256:8ab9376ced03345d686059e7ea1b0a8a8fb945366b49d87882a0379b40de82d4
1207
+ hash: sha256:1d8f21889d3f08896a5c3ee08e9ea02774003bcc1a108d989c67e4c9fe325b3f
1136
1208
  type: core
1137
- size: 2199
1209
+ size: 2415
1138
1210
  - path: core/synapse/diagnostics/collectors/quality-collector.js
1139
1211
  hash: sha256:45e0f3a2737bc52e6ca335db311f8b8a65cbd26d877776c56b958b65550dc5db
1140
1212
  type: core
@@ -1172,9 +1244,9 @@ files:
1172
1244
  type: core
1173
1245
  size: 8123
1174
1246
  - path: core/synapse/engine.js
1175
- hash: sha256:bbc0fc81edce8705d4da1c6b52d2ec82cab14674a2a7707af0d80cae018542f4
1247
+ hash: sha256:66b124c47e1fd275cfd7e4bc02a12ef429e436959a7e56999fdeee5c80f0a23e
1176
1248
  type: core
1177
- size: 13603
1249
+ size: 14632
1178
1250
  - path: core/synapse/layers/l0-constitution.js
1179
1251
  hash: sha256:0d042647a67f8f46073207627a582c6c24b5713f02beb0e86af6f231cc33c5eb
1180
1252
  type: core
@@ -1247,6 +1319,10 @@ files:
1247
1319
  hash: sha256:4f0b16538c3a2c2dbbe264e6edbe0ca2d943af49936d0de68b21be4a469f5492
1248
1320
  type: core
1249
1321
  size: 574
1322
+ - path: core/telemetry/ids-sink.js
1323
+ hash: sha256:0b2a8896c648aac7a7dcb0fbdb8b350c1199fc2ca501380fc84f35cc8c1e8dbf
1324
+ type: core
1325
+ size: 6338
1250
1326
  - path: core/telemetry/index.js
1251
1327
  hash: sha256:d1089c1743bf7679c3734f71f4d348c448053865c34fa30ba61648bfef30fb53
1252
1328
  type: core
@@ -1264,13 +1340,17 @@ files:
1264
1340
  type: core
1265
1341
  size: 9676
1266
1342
  - path: core/utils/output-formatter.js
1267
- hash: sha256:4c019bb44fd47d76d6b61ad7f895b8fa6a9f1f4fca0c40465d95a69fcce596c0
1343
+ hash: sha256:60fb5671c8c0c324b8b902a85a13905d74026a286d0090e94477e19cf10a746a
1268
1344
  type: core
1269
- size: 8993
1345
+ size: 769
1270
1346
  - path: core/utils/security-utils.js
1271
1347
  hash: sha256:37e9e4174885cb58fa4fb533db455966d1649d20d4a2f4eb7915727b6e58ab84
1272
1348
  type: core
1273
1349
  size: 9058
1350
+ - path: core/utils/spawn-safe.js
1351
+ hash: sha256:529436ca4744e43a373e4d932720f91afa66c94f169eff7ce82cb59bd7319849
1352
+ type: core
1353
+ size: 6530
1274
1354
  - path: core/utils/yaml-validator.js
1275
1355
  hash: sha256:f72e8317728b72addd02fdffcf8bdde22f50eccdb45e34bd24f70bce2ad88bb7
1276
1356
  type: core
@@ -1284,9 +1364,9 @@ files:
1284
1364
  type: data
1285
1365
  size: 9587
1286
1366
  - path: data/entity-registry.yaml
1287
- hash: sha256:d95d1ace3b69ff5ca91a2a43ec440374b38e156241e8b15db6f63b1d0cfc6ef8
1367
+ hash: sha256:8b4c14023ee0edd37531f82c49a58f289f8462046a4f34dba8980a07bbb0c8a4
1288
1368
  type: data
1289
- size: 520811
1369
+ size: 559746
1290
1370
  - path: data/learned-patterns.yaml
1291
1371
  hash: sha256:1a4cd045c087b9dfd7046ff1464a9d2edb85fba77cf0b6fba14f4bb9004c741e
1292
1372
  type: data
@@ -1412,17 +1492,17 @@ files:
1412
1492
  type: agent
1413
1493
  size: 1110
1414
1494
  - path: development/agents/developer.md
1415
- hash: sha256:4ab407631a60ce5810d8a497ff204cc04d17e5f3f8b1e8e9a3dd396fd050aee5
1495
+ hash: sha256:05e2e6362f95eb66c80e4f01dcb25232e283666c2195ec070e1bb59cc486ecb2
1416
1496
  type: agent
1417
- size: 29756
1497
+ size: 29832
1418
1498
  - path: development/agents/developer/MEMORY.md
1419
1499
  hash: sha256:98e00ca0bd5b0b2fdfbcf8ad52256dd7f73df6236e2098618d63fae97652949a
1420
1500
  type: agent
1421
1501
  size: 2493
1422
1502
  - path: development/agents/devops.md
1423
- hash: sha256:7d6e049d67bb1125c34790dfa49bad9d6a734d7b3eac2e2d80159b99784c9203
1503
+ hash: sha256:710906315093f603a8744f5e9733bf8bdbd2641519a7d8181016457a474bb511
1424
1504
  type: agent
1425
- size: 27871
1505
+ size: 28207
1426
1506
  - path: development/agents/devops/MEMORY.md
1427
1507
  hash: sha256:c9c574566f3ab627135219eefb2e0039169016f4f0a8605b02593d0cfd38f071
1428
1508
  type: agent
@@ -1519,6 +1599,14 @@ files:
1519
1599
  hash: sha256:c11f03e760547bfd0abbd0ea7d0e636c3f32527cb1a717811c481fce3fad49ea
1520
1600
  type: data
1521
1601
  size: 11117
1602
+ - path: development/external-executors/codex.md
1603
+ hash: sha256:c79a52c8d58db4c0c92f4146fafd557f1dafe9eda27b1ba899bea43118e3abbc
1604
+ type: development
1605
+ size: 1924
1606
+ - path: development/external-executors/README.md
1607
+ hash: sha256:f7d136b1255e1a25ad80b679ad7cca3f28ea19aa4274a1980ebc2dfbce7abdd0
1608
+ type: development
1609
+ size: 974
1522
1610
  - path: development/knowledge-base/agent-communication-protocol.md
1523
1611
  hash: sha256:2aeb80a48f338891729ec926d1c179d68310703a122e5922b01bbe251ff9ed74
1524
1612
  type: development
@@ -1639,14 +1727,6 @@ files:
1639
1727
  hash: sha256:d55d4a61ad34053338b29ecfbcf1d2547980ba884318c0752f7a9e3b22389460
1640
1728
  type: script
1641
1729
  size: 10668
1642
- - path: development/scripts/elicitation-engine.js
1643
- hash: sha256:4248602dc493a85354ddfc5c1ebb092080522426de24d819e274a970c113acdb
1644
- type: script
1645
- size: 10590
1646
- - path: development/scripts/elicitation-session-manager.js
1647
- hash: sha256:9cb2cb00d2679be5cf4bf40dded3a74873b671f22837a314f47248b62a1e42b1
1648
- type: script
1649
- size: 8115
1650
1730
  - path: development/scripts/generate-greeting.js
1651
1731
  hash: sha256:052b669917fe0934942cc85f613af8fe7302a9b7d70187c9558337bef3f9ec92
1652
1732
  type: script
@@ -1696,9 +1776,9 @@ files:
1696
1776
  type: script
1697
1777
  size: 23414
1698
1778
  - path: development/scripts/populate-entity-registry.js
1699
- hash: sha256:51fe2e6fb0561506df8c070e2a595651d0b12b2b796fc9b4c1e9eabdeca5558c
1779
+ hash: sha256:2232bebc783c13e222c7b80713eae016343406ab2a878b0c6950b0691202d8c1
1700
1780
  type: script
1701
- size: 22872
1781
+ size: 25928
1702
1782
  - path: development/scripts/refactoring-suggester.js
1703
1783
  hash: sha256:66bf0be38efb417619e652c690d41337202dae7defa454bec73b010b05bb6db4
1704
1784
  type: script
@@ -1736,9 +1816,9 @@ files:
1736
1816
  type: script
1737
1817
  size: 29549
1738
1818
  - path: development/scripts/squad/squad-downloader.js
1739
- hash: sha256:fa0a0e6320c04d6e489d7f90f4eb6ff6d22ab9a252ce9e134027a087a64d2e0e
1819
+ hash: sha256:5f937ed4ecbb3b45d3f92647ece93b73a39591bc117e64069ae8379a53bac6b0
1740
1820
  type: script
1741
- size: 15365
1821
+ size: 21112
1742
1822
  - path: development/scripts/squad/squad-extender.js
1743
1823
  hash: sha256:0e8e1053d1844dd24b682e5884509d0a777ee6b348db2b8232b8c37ab57c6857
1744
1824
  type: script
@@ -2143,6 +2223,10 @@ files:
2143
2223
  hash: sha256:37f16d550070b9a8f5ffba2b26f129e986f746cf60f7d3a9337685e52a5e9fe5
2144
2224
  type: task
2145
2225
  size: 11494
2226
+ - path: development/tasks/delegate-to-external-executor.md
2227
+ hash: sha256:acabae837bce23bc31241fcbc5b1c53137fb7474a9359812d39693252d63300e
2228
+ type: task
2229
+ size: 4499
2146
2230
  - path: development/tasks/deprecate-component.md
2147
2231
  hash: sha256:cdb28835babface7ddc3e464f889d0502834fe01b759020f063fe25f9cfacd9e
2148
2232
  type: task
@@ -2244,9 +2328,9 @@ files:
2244
2328
  type: task
2245
2329
  size: 19505
2246
2330
  - path: development/tasks/github-devops-pre-push-quality-gate.md
2247
- hash: sha256:566fcc02c4dcbfe7c1a37c6c48a99fe1f96987559d90fa4b23f1d68ab7abafa4
2331
+ hash: sha256:90969a5b843c976b8cd902c55517589c64c88bd4001590dbc4b107703fa12ce6
2248
2332
  type: task
2249
- size: 23861
2333
+ size: 24774
2250
2334
  - path: development/tasks/github-devops-repository-cleanup.md
2251
2335
  hash: sha256:0cc4129dd7139badf882650a01fcee93a4c181f8d8eb70213fe721fa0ee63e9c
2252
2336
  type: task
@@ -2683,10 +2767,6 @@ files:
2683
2767
  hash: sha256:93642974ba45bf22e00eb311a0b5afca656bb6efc0264bd5a27f4d94ddb54979
2684
2768
  type: task
2685
2769
  size: 14052
2686
- - path: development/tasks/test-validation-task.md
2687
- hash: sha256:41f0efff2782a64d2e09af78df8926a5b0c3f29d705a85e1eb0774c67dca09de
2688
- type: task
2689
- size: 3345
2690
2770
  - path: development/tasks/triage-github-issues.md
2691
2771
  hash: sha256:460d80252993ff6da04cec6112918c52df643db8a259bde4c8501a9e88ffa3e5
2692
2772
  type: task
@@ -2700,9 +2780,9 @@ files:
2700
2780
  type: task
2701
2781
  size: 9751
2702
2782
  - path: development/tasks/update-sinapse.md
2703
- hash: sha256:2396f096e6173042d6e472988103d55191150b5053a544d8b581aa6859f99afd
2783
+ hash: sha256:8152c56906792345c8cac62332e251557c51bcb2e53e529cdc98bce969dde950
2704
2784
  type: task
2705
- size: 4209
2785
+ size: 4203
2706
2786
  - path: development/tasks/update-source-tree.md
2707
2787
  hash: sha256:3d1f27e628574e07c0147cadbd9f7a2beb347ab3274c1ddafff1ab2496218c64
2708
2788
  type: task
@@ -3116,17 +3196,17 @@ files:
3116
3196
  type: infrastructure
3117
3197
  size: 6898
3118
3198
  - path: infrastructure/integrations/ai-providers/ai-provider-factory.js
3119
- hash: sha256:e3995fc6e0aab734487fa13c9de410dd5bdc763007739225a5f9c8f1ae3fc8e2
3199
+ hash: sha256:f31d9854d2b239c90668dc7fb53e149fb6cf1ead6a4fd67d5f2e35d3495a4d49
3120
3200
  type: infrastructure
3121
- size: 7028
3201
+ size: 7207
3122
3202
  - path: infrastructure/integrations/ai-providers/ai-provider.js
3123
3203
  hash: sha256:d96ffea1f0f453bc9d0fab4f173d4e97090f67943741712b34f5731b87fc68d7
3124
3204
  type: infrastructure
3125
3205
  size: 4508
3126
3206
  - path: infrastructure/integrations/ai-providers/claude-provider.js
3127
- hash: sha256:33aef0591b07a1d318debb27dfbbf27ecb0a4de8cdf66eb77f30bcb42cf63ec3
3207
+ hash: sha256:7cf8064d3c2b736239295a866a23c76b6b0db1a30bef4efbcc4f6cdf98d9da13
3128
3208
  type: infrastructure
3129
- size: 4797
3209
+ size: 5365
3130
3210
  - path: infrastructure/integrations/ai-providers/index.js
3131
3211
  hash: sha256:faa9c1663fee99f2c542b1e99e9cdea31b5fe9dd85e3c961aa1aa2e6d8e25f79
3132
3212
  type: infrastructure
@@ -3140,9 +3220,9 @@ files:
3140
3220
  type: infrastructure
3141
3221
  size: 9778
3142
3222
  - path: infrastructure/integrations/pm-adapters/github-adapter.js
3143
- hash: sha256:8adf79ea0c29e915aff59a6cb84134a5fe33ea173d677f86f616e1fa1e9e21cc
3223
+ hash: sha256:3bfcba49075d984fd3950b0a864f427ec8415a66d9496489d2d542301aec5b65
3144
3224
  type: infrastructure
3145
- size: 10383
3225
+ size: 10527
3146
3226
  - path: infrastructure/integrations/pm-adapters/jira-adapter.js
3147
3227
  hash: sha256:619fe80b389e533a74970d0c19c3a1d92c8e915876bace2caaf0b556606e5ef5
3148
3228
  type: infrastructure
@@ -3351,10 +3431,18 @@ files:
3351
3431
  hash: sha256:60d5a535a39694cb250903b1fd11cfc5d90d648796ca85329f8a16bfb3cdd697
3352
3432
  type: script
3353
3433
  size: 8847
3434
+ - path: infrastructure/scripts/ide-sync/gemini-commands.js
3435
+ hash: sha256:475e1df64dd93022184231d9869670f96c1095a96c6e5053bf808975838e574e
3436
+ type: script
3437
+ size: 8840
3354
3438
  - path: infrastructure/scripts/ide-sync/index.js
3355
- hash: sha256:6898ff5fc8b07e3527a145b6979c201b366587d9274cef938293b10dfecd14c4
3439
+ hash: sha256:c1becf067f67378779a7a9945c88c7dbc7bdeae5d62e82cda5bf2c4baea77b79
3440
+ type: script
3441
+ size: 17620
3442
+ - path: infrastructure/scripts/ide-sync/persona-renderer.js
3443
+ hash: sha256:44f76be1e48c4a6271d8c721687d8788d2317a1163d74731abfe97f36775334d
3356
3444
  type: script
3357
- size: 13160
3445
+ size: 3638
3358
3446
  - path: infrastructure/scripts/ide-sync/README.md
3359
3447
  hash: sha256:9d7730fbb6c3fe3fc826bddb36987ce008b7b80cf0ea7a8b07e8a2c20484aba1
3360
3448
  type: script
@@ -3363,10 +3451,26 @@ files:
3363
3451
  hash: sha256:0e824085da02bb1c463422050ae1e58f3bd3d813b9d84970a30f83300793ffe6
3364
3452
  type: script
3365
3453
  size: 4231
3454
+ - path: infrastructure/scripts/ide-sync/transformers/antigravity.js
3455
+ hash: sha256:ad8db6a847adedb5765eb78f0e420442008bc61c23795c2ab5bf3a3bb1f291d8
3456
+ type: script
3457
+ size: 3789
3366
3458
  - path: infrastructure/scripts/ide-sync/transformers/claude-code.js
3367
3459
  hash: sha256:c641d14da8f314795da3c7156af6ca4c184cd4883a239b5b02ab4850a200e545
3368
3460
  type: script
3369
3461
  size: 2241
3462
+ - path: infrastructure/scripts/ide-sync/transformers/cursor.js
3463
+ hash: sha256:38ddee53269c64d5f22ed67a958a103cf384e2e8b80bf2b7b635b4be69a9773c
3464
+ type: script
3465
+ size: 3293
3466
+ - path: infrastructure/scripts/ide-sync/transformers/github-copilot.js
3467
+ hash: sha256:a38e7d1c385f546f6affb7b56c6d363432538531057cd42b72d43179d5807aa9
3468
+ type: script
3469
+ size: 5886
3470
+ - path: infrastructure/scripts/ide-sync/transformers/kimi.js
3471
+ hash: sha256:579679665ee24792b3908d6108b36b53cc71d876bdfada691b6f0fc86163a018
3472
+ type: script
3473
+ size: 14471
3370
3474
  - path: infrastructure/scripts/ide-sync/validator.js
3371
3475
  hash: sha256:8473c885f9a30c24f332e7270680778b655bd2535f7a50ad9e807608db43f300
3372
3476
  type: script
@@ -4096,9 +4200,9 @@ files:
4096
4200
  type: template
4097
4201
  size: 6501
4098
4202
  - path: product/templates/engine/renderer.js
4099
- hash: sha256:1521998cddb702887568cbe1f607a6e1ff446e71e65b3ce4ce72df9e5aa36716
4203
+ hash: sha256:1146a2d11553c5a6178cab32667bc43b298b5f3c4942f9a09459c5d843e4d90a
4100
4204
  type: template
4101
- size: 9899
4205
+ size: 11116
4102
4206
  - path: product/templates/engine/schemas/adr.schema.json
4103
4207
  hash: sha256:ee99b03bb3331b703fbe49fad0255f00f87c943db60ae6f4f1ed6dbe9552882d
4104
4208
  type: template
@@ -4564,9 +4668,9 @@ files:
4564
4668
  type: script
4565
4669
  size: 9539
4566
4670
  - path: scripts/pm.sh
4567
- hash: sha256:f77ee7c6a874da06153e3d24df5ec6fe3496cd1b04bffaa559d9bb442a19c6f0
4671
+ hash: sha256:060c5ab9ee43372e2177353b2b6f54f036b7dd86122fc6e2dc6e91fb0e3ab6d2
4568
4672
  type: script
4569
- size: 12053
4673
+ size: 12644
4570
4674
  - path: scripts/README.md
4571
4675
  hash: sha256:d6961b96ff7163261d6f56f441f2fb0a35568d5e0034aa4bfecc9fe0993edfe1
4572
4676
  type: script