sinapse-ai 9.4.0 → 9.5.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 (266) hide show
  1. package/.claude/CLAUDE.md +10 -4
  2. package/.claude/hooks/enforce-architecture-first.py +197 -197
  3. package/.claude/hooks/enforce-git-push-authority.sh +25 -4
  4. package/.claude/hooks/mind-clone-governance.py +193 -193
  5. package/.claude/hooks/read-protection.py +152 -152
  6. package/.claude/hooks/sql-governance.py +183 -183
  7. package/.claude/hooks/verify-packages.cjs +83 -0
  8. package/.claude/hooks/write-path-validation.py +195 -195
  9. package/.claude/rules/hook-governance.md +1 -0
  10. package/.claude/rules/mandatory-delegation.md +24 -0
  11. package/.claude/rules/project-intelligence.md +63 -0
  12. package/.claude/rules/response-format.md +4 -0
  13. package/.claude/rules/safe-collaboration.md +4 -2
  14. package/.claude/rules/security-data-protection.md +18 -0
  15. package/.claude/rules/squad-awareness.md +93 -67
  16. package/.claude/rules/token-economy.md +148 -0
  17. package/.codex/agents/analyst.md +90 -0
  18. package/.codex/agents/architect.md +78 -0
  19. package/.codex/agents/data-engineer.md +38 -0
  20. package/.codex/agents/developer.md +97 -0
  21. package/.codex/agents/devops.md +121 -0
  22. package/.codex/agents/product-lead.md +27 -0
  23. package/.codex/agents/project-lead.md +28 -0
  24. package/.codex/agents/quality-gate.md +89 -0
  25. package/.codex/agents/sprint-lead.md +28 -0
  26. package/.codex/agents/squad-creator.md +58 -0
  27. package/.codex/agents/ux-design-expert.md +28 -0
  28. package/.sinapse-ai/core/code-intel/registry-syncer.js +56 -3
  29. package/.sinapse-ai/core/doctor/checks/agent-memory.js +5 -1
  30. package/.sinapse-ai/core/doctor/checks/claude-md.js +4 -1
  31. package/.sinapse-ai/core/doctor/checks/code-intel.js +5 -1
  32. package/.sinapse-ai/core/doctor/checks/commands-count.js +4 -1
  33. package/.sinapse-ai/core/doctor/checks/constitution-consistency.js +4 -1
  34. package/.sinapse-ai/core/doctor/checks/core-config.js +4 -1
  35. package/.sinapse-ai/core/doctor/checks/entity-registry.js +6 -1
  36. package/.sinapse-ai/core/doctor/checks/git-hooks.js +5 -1
  37. package/.sinapse-ai/core/doctor/checks/graph-dashboard.js +4 -1
  38. package/.sinapse-ai/core/doctor/checks/hooks-claude-count.js +5 -1
  39. package/.sinapse-ai/core/doctor/checks/ide-sync.js +4 -1
  40. package/.sinapse-ai/core/doctor/checks/node-version.js +4 -1
  41. package/.sinapse-ai/core/doctor/checks/npm-packages.js +4 -1
  42. package/.sinapse-ai/core/doctor/checks/rules-files.js +4 -1
  43. package/.sinapse-ai/core/doctor/checks/settings-json.js +4 -1
  44. package/.sinapse-ai/core/doctor/checks/skills-count.js +4 -1
  45. package/.sinapse-ai/core/doctor/index.js +157 -50
  46. package/.sinapse-ai/core/ids/registry-updater.js +6 -1
  47. package/.sinapse-ai/core/logger/index.js +319 -0
  48. package/.sinapse-ai/core/orchestration/terminal-spawner.js +2 -2
  49. package/.sinapse-ai/core/telemetry/index.js +247 -0
  50. package/.sinapse-ai/data/entity-registry.yaml +1384 -944
  51. package/.sinapse-ai/development/agents/architect.md +5 -0
  52. package/.sinapse-ai/development/agents/data-engineer.md +38 -0
  53. package/.sinapse-ai/development/agents/developer.md +28 -0
  54. package/.sinapse-ai/development/agents/devops.md +4 -0
  55. package/.sinapse-ai/development/agents/product-lead.md +27 -0
  56. package/.sinapse-ai/development/agents/project-lead.md +28 -0
  57. package/.sinapse-ai/development/agents/quality-gate.md +4 -0
  58. package/.sinapse-ai/development/agents/sprint-lead/MEMORY.md +8 -0
  59. package/.sinapse-ai/development/agents/sprint-lead.md +28 -0
  60. package/.sinapse-ai/development/agents/squad-creator.md +58 -0
  61. package/.sinapse-ai/development/agents/ux-design-expert.md +28 -0
  62. package/.sinapse-ai/development/knowledge-base/agent-communication-protocol.md +127 -0
  63. package/.sinapse-ai/development/knowledge-base/database-scaling-patterns.md +374 -0
  64. package/.sinapse-ai/development/knowledge-base/environment-deployment-patterns.md +353 -0
  65. package/.sinapse-ai/development/knowledge-base/gotchas-patterns.md +224 -0
  66. package/.sinapse-ai/development/knowledge-base/infrastructure-decision-framework.md +221 -0
  67. package/.sinapse-ai/development/knowledge-base/security-pre-deploy-checklist.md +410 -0
  68. package/.sinapse-ai/development/knowledge-base/software-architecture-patterns.md +299 -0
  69. package/.sinapse-ai/development/knowledge-base/token-economy-guide.md +198 -0
  70. package/.sinapse-ai/development/scripts/populate-entity-registry.js +5 -1
  71. package/.sinapse-ai/development/skills/captcha-handler.md +82 -0
  72. package/.sinapse-ai/development/skills/chrome-brain.md +81 -0
  73. package/.sinapse-ai/development/skills/deploy-readiness.md +93 -0
  74. package/.sinapse-ai/development/skills/model-router.md +92 -0
  75. package/.sinapse-ai/development/skills/sinapse-methodology.md +175 -0
  76. package/.sinapse-ai/development/skills/story-fast-track.md +71 -0
  77. package/.sinapse-ai/development/tasks/dev-develop-story.md +10 -0
  78. package/.sinapse-ai/development/tasks/environment-promotion-pipeline.md +582 -0
  79. package/.sinapse-ai/development/tasks/generate-agent-handoff.md +223 -0
  80. package/.sinapse-ai/development/tasks/infrastructure-assessment.md +432 -0
  81. package/.sinapse-ai/development/tasks/load-testing-setup.md +611 -0
  82. package/.sinapse-ai/development/tasks/observability-blueprint.md +562 -0
  83. package/.sinapse-ai/development/templates/legal/breach-notification-tmpl.md +113 -0
  84. package/.sinapse-ai/development/templates/legal/privacy-policy-tmpl.md +93 -0
  85. package/.sinapse-ai/development/templates/legal/terms-of-service-tmpl.md +85 -0
  86. package/.sinapse-ai/development/templates/service-template/README.md.hbs +159 -159
  87. package/.sinapse-ai/development/templates/service-template/__tests__/index.test.ts.hbs +238 -238
  88. package/.sinapse-ai/development/templates/service-template/client.ts.hbs +404 -404
  89. package/.sinapse-ai/development/templates/service-template/errors.ts.hbs +183 -183
  90. package/.sinapse-ai/development/templates/service-template/index.ts.hbs +121 -121
  91. package/.sinapse-ai/development/templates/service-template/package.json.hbs +88 -88
  92. package/.sinapse-ai/development/templates/service-template/types.ts.hbs +146 -146
  93. package/.sinapse-ai/development/templates/squad-template/LICENSE +22 -22
  94. package/.sinapse-ai/development/workflows/story-development-cycle.yaml +40 -1
  95. package/.sinapse-ai/hooks/ids-post-commit.js +22 -0
  96. package/.sinapse-ai/infrastructure/contracts/compatibility/README.md +42 -0
  97. package/.sinapse-ai/infrastructure/contracts/compatibility/sinapse-current.yaml +35 -0
  98. package/.sinapse-ai/infrastructure/scripts/llm-routing/templates/claude-free-tracked.cmd +127 -127
  99. package/.sinapse-ai/infrastructure/scripts/llm-routing/templates/deepseek-proxy.cmd +71 -71
  100. package/.sinapse-ai/infrastructure/scripts/llm-routing/templates/deepseek-usage.cmd +51 -51
  101. package/.sinapse-ai/infrastructure/scripts/pr-review-ai.js +16 -13
  102. package/.sinapse-ai/infrastructure/scripts/setup-project-infra.js +128 -0
  103. package/.sinapse-ai/infrastructure/scripts/test-discovery.js +8 -3
  104. package/.sinapse-ai/infrastructure/scripts/validate-manifest-parity.js +380 -0
  105. package/.sinapse-ai/infrastructure/scripts/validate-parity.js +76 -25
  106. package/.sinapse-ai/infrastructure/templates/coderabbit.yaml.template +280 -280
  107. package/.sinapse-ai/infrastructure/templates/config/env.example +16 -0
  108. package/.sinapse-ai/infrastructure/templates/config/gitignore-additions.tmpl +59 -0
  109. package/.sinapse-ai/infrastructure/templates/github/CODEOWNERS.template +12 -0
  110. package/.sinapse-ai/infrastructure/templates/github/PULL_REQUEST_TEMPLATE.md +29 -0
  111. package/.sinapse-ai/infrastructure/templates/github/ci-template.yml +77 -0
  112. package/.sinapse-ai/infrastructure/templates/github/issue-templates/bug_report.md +34 -0
  113. package/.sinapse-ai/infrastructure/templates/github/issue-templates/feature_request.md +19 -0
  114. package/.sinapse-ai/infrastructure/templates/github-workflows/ci.yml.template +170 -170
  115. package/.sinapse-ai/infrastructure/templates/github-workflows/pr-automation.yml.template +331 -331
  116. package/.sinapse-ai/infrastructure/templates/github-workflows/release.yml.template +197 -197
  117. package/.sinapse-ai/infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl +19 -19
  118. package/.sinapse-ai/infrastructure/templates/gitignore/gitignore-node.tmpl +86 -86
  119. package/.sinapse-ai/infrastructure/templates/gitignore/gitignore-python.tmpl +146 -146
  120. package/.sinapse-ai/infrastructure/templates/gitignore/gitignore-sinapse-base.tmpl +64 -64
  121. package/.sinapse-ai/infrastructure/templates/sinapse-sync.yaml.template +183 -183
  122. package/.sinapse-ai/install-manifest.yaml +275 -140
  123. package/.sinapse-ai/local-config.yaml.template +65 -65
  124. package/.sinapse-ai/monitor/hooks/lib/__init__.py +2 -2
  125. package/.sinapse-ai/monitor/hooks/lib/enrich.py +59 -59
  126. package/.sinapse-ai/monitor/hooks/lib/send_event.py +48 -48
  127. package/.sinapse-ai/monitor/hooks/notification.py +30 -30
  128. package/.sinapse-ai/monitor/hooks/post_tool_use.py +46 -46
  129. package/.sinapse-ai/monitor/hooks/pre_compact.py +30 -30
  130. package/.sinapse-ai/monitor/hooks/pre_tool_use.py +41 -41
  131. package/.sinapse-ai/monitor/hooks/stop.py +30 -30
  132. package/.sinapse-ai/monitor/hooks/subagent_stop.py +30 -30
  133. package/.sinapse-ai/monitor/hooks/user_prompt_submit.py +39 -39
  134. package/.sinapse-ai/product/templates/adr.hbs +126 -126
  135. package/.sinapse-ai/product/templates/dbdr.hbs +242 -242
  136. package/.sinapse-ai/product/templates/epic.hbs +213 -213
  137. package/.sinapse-ai/product/templates/pmdr.hbs +187 -187
  138. package/.sinapse-ai/product/templates/prd-v2.0.hbs +217 -217
  139. package/.sinapse-ai/product/templates/prd.hbs +202 -202
  140. package/.sinapse-ai/product/templates/story-tmpl.yaml +59 -0
  141. package/.sinapse-ai/product/templates/story.hbs +264 -264
  142. package/.sinapse-ai/product/templates/task.hbs +171 -171
  143. package/.sinapse-ai/product/templates/tmpl-comment-on-examples.sql +159 -159
  144. package/.sinapse-ai/product/templates/tmpl-migration-script.sql +92 -92
  145. package/.sinapse-ai/product/templates/tmpl-rls-granular-policies.sql +105 -105
  146. package/.sinapse-ai/product/templates/tmpl-rls-kiss-policy.sql +11 -11
  147. package/.sinapse-ai/product/templates/tmpl-rls-roles.sql +136 -136
  148. package/.sinapse-ai/product/templates/tmpl-rls-simple.sql +78 -78
  149. package/.sinapse-ai/product/templates/tmpl-rls-tenant.sql +153 -153
  150. package/.sinapse-ai/product/templates/tmpl-rollback-script.sql +78 -78
  151. package/.sinapse-ai/product/templates/tmpl-seed-data.sql +141 -141
  152. package/.sinapse-ai/product/templates/tmpl-smoke-test.sql +17 -17
  153. package/.sinapse-ai/product/templates/tmpl-staging-copy-merge.sql +140 -140
  154. package/.sinapse-ai/product/templates/tmpl-stored-proc.sql +141 -141
  155. package/.sinapse-ai/product/templates/tmpl-trigger.sql +153 -153
  156. package/.sinapse-ai/product/templates/tmpl-view-materialized.sql +134 -134
  157. package/.sinapse-ai/product/templates/tmpl-view.sql +178 -178
  158. package/.sinapse-ai/scripts/diagnostics/health-dashboard/package-lock.json +427 -355
  159. package/LICENSE +34 -34
  160. package/README.en.md +167 -20
  161. package/README.md +190 -22
  162. package/bin/cli.js +510 -196
  163. package/bin/postinstall.js +564 -0
  164. package/bin/sinapse-cli +283 -283
  165. package/bin/sinapse-graph.js +9 -0
  166. package/bin/sinapse-init.js +36 -4
  167. package/bin/sinapse-minimal.js +20 -9
  168. package/bin/sinapse.js +202 -122
  169. package/bin/utils/deprecation-warning.js +46 -0
  170. package/bin/utils/pre-push-safety.js +14 -0
  171. package/docs/TELEMETRY.md +131 -0
  172. package/docs/chrome-brain-upgrade-plan.md +624 -0
  173. package/docs/framework/orqx-plan.md +1 -1
  174. package/docs/installation/chrome-brain.md +17 -7
  175. package/docs/mega-upgrade-orchestration-plan.md +71 -0
  176. package/docs/pt/contributing.md +20 -0
  177. package/docs/research-synthesis-for-upgrade.md +511 -0
  178. package/docs/security-audit-report.md +306 -0
  179. package/package.json +20 -8
  180. package/packages/installer/src/config/configure-environment.js +19 -44
  181. package/packages/installer/src/detection/detect-project-type.js +181 -63
  182. package/packages/installer/src/installer/manifest-signature.js +32 -17
  183. package/packages/installer/src/wizard/i18n.js +12 -0
  184. package/packages/installer/src/wizard/ide-config-generator.js +8 -39
  185. package/packages/installer/src/wizard/index.js +119 -14
  186. package/packages/installer/src/wizard/questions.js +2 -3
  187. package/packages/installer/tests/integration/environment-configuration.test.js +7 -5
  188. package/packages/installer/tests/unit/detection/detect-project-type.test.js +138 -1
  189. package/packages/installer/tests/unit/doctor/doctor-orchestrator.test.js +3 -3
  190. package/packages/sinapse-install/bin/edmcp.js +0 -0
  191. package/packages/sinapse-install/bin/sinapse-install.js +0 -0
  192. package/packages/sinapse-pro-cli/bin/sinapse-pro.js +0 -0
  193. package/scripts/check-markdown-links.py +353 -353
  194. package/scripts/coverage-report-summary.js +169 -0
  195. package/scripts/generate-install-manifest.js +6 -2
  196. package/scripts/release-readiness.js +169 -0
  197. package/scripts/test-install-matrix-local.sh +153 -0
  198. package/scripts/validate-install-docs.js +394 -0
  199. package/scripts/validate-no-external-refs.js +376 -0
  200. package/scripts/validate-squad-orqx.js +302 -0
  201. package/scripts/validate-story-meta.js +263 -0
  202. package/squads/claude-code-mastery/CHANGELOG.md +1 -1
  203. package/squads/claude-code-mastery/README.md +2 -2
  204. package/squads/claude-code-mastery/squad.yaml +1 -1
  205. package/squads/squad-artdir/README.md +90 -0
  206. package/squads/squad-artdir/agents/accessibility-guardian.md +184 -0
  207. package/squads/squad-artdir/agents/artdir-orqx.md +145 -0
  208. package/squads/squad-artdir/agents/color-psychologist.md +166 -0
  209. package/squads/squad-artdir/agents/cro-persuasion.md +161 -0
  210. package/squads/squad-artdir/agents/design-system-architect.md +100 -0
  211. package/squads/squad-artdir/agents/ia-architect.md +169 -0
  212. package/squads/squad-artdir/agents/interaction-designer.md +162 -0
  213. package/squads/squad-artdir/agents/layout-engineer.md +163 -0
  214. package/squads/squad-artdir/agents/motion-architect.md +185 -0
  215. package/squads/squad-artdir/agents/platform-aesthetic-director.md +84 -0
  216. package/squads/squad-artdir/agents/premium-packaging-strategist.md +107 -0
  217. package/squads/squad-artdir/agents/product-surface-director.md +86 -0
  218. package/squads/squad-artdir/agents/type-systemist.md +138 -0
  219. package/squads/squad-artdir/agents/visual-strategist.md +127 -0
  220. package/squads/squad-artdir/checklists/seven-pillars-validation-checklist.md +172 -0
  221. package/squads/squad-artdir/knowledge-base/case-nyo-ia-reference.md +289 -0
  222. package/squads/squad-artdir/knowledge-base/deliverables-templates.md +457 -0
  223. package/squads/squad-artdir/knowledge-base/motion-technique-catalog.md +247 -0
  224. package/squads/squad-artdir/knowledge-base/premium-packaging-principles.md +133 -0
  225. package/squads/squad-artdir/knowledge-base/psychological-toolkit.md +229 -0
  226. package/squads/squad-artdir/knowledge-base/saas-art-direction-canon.md +242 -0
  227. package/squads/squad-artdir/knowledge-base/seven-pillars-framework.md +289 -0
  228. package/squads/squad-artdir/knowledge-base/ten-pillars-framework.md +221 -0
  229. package/squads/squad-artdir/package.json +20 -0
  230. package/squads/squad-artdir/squad.yaml +271 -0
  231. package/squads/squad-artdir/tasks/audit-conversion.md +97 -0
  232. package/squads/squad-artdir/tasks/audit-drift-multi-surface.md +55 -0
  233. package/squads/squad-artdir/tasks/consult-saas-canon.md +54 -0
  234. package/squads/squad-artdir/tasks/create-art-direction-brief.md +110 -0
  235. package/squads/squad-artdir/tasks/create-premium-packaging-brief.md +61 -0
  236. package/squads/squad-artdir/tasks/create-wireflow.md +84 -0
  237. package/squads/squad-artdir/tasks/design-color-system.md +81 -0
  238. package/squads/squad-artdir/tasks/design-product-surface.md +60 -0
  239. package/squads/squad-artdir/tasks/design-token-system.md +58 -0
  240. package/squads/squad-artdir/tasks/diagnose-visual-language.md +92 -0
  241. package/squads/squad-artdir/tasks/first-5-minutes-choreography.md +65 -0
  242. package/squads/squad-artdir/tasks/specify-motion-system.md +84 -0
  243. package/squads/squad-artdir/tasks/validate-against-pillars.md +143 -0
  244. package/squads/squad-artdir/templates/art-direction-brief-template.md +215 -0
  245. package/squads/squad-artdir/workflows/conversion-audit-cycle.yaml +78 -0
  246. package/squads/squad-artdir/workflows/full-art-direction-cycle.yaml +98 -0
  247. package/squads/squad-artdir/workflows/saas-platform-art-direction-cycle.yaml +174 -0
  248. package/squads/squad-brand/knowledge-base/ai-visual-generation-canon.md +234 -0
  249. package/squads/squad-brand/squad.yaml +20 -6
  250. package/squads/squad-claude/knowledge-base/context-window-optimization.md +1 -1
  251. package/squads/squad-claude/knowledge-base/swarm-orchestration-patterns.md +2 -2
  252. package/squads/squad-content/knowledge-base/ai-native-content-loop.md +220 -0
  253. package/squads/squad-content/knowledge-base/signal-intelligence-v2.md +234 -0
  254. package/squads/squad-content/knowledge-base/task-ownership-map.md +235 -0
  255. package/squads/squad-content/squad.yaml +187 -27
  256. package/squads/squad-copy/knowledge-base/ai-copy-human-loop-canon.md +235 -0
  257. package/squads/squad-copy/squad.yaml +19 -4
  258. package/squads/squad-design/knowledge-base/cross-surface-token-canon.md +209 -0
  259. package/squads/squad-design/squad.yaml +19 -4
  260. package/.sinapse-ai/core/registry/service-registry.json +0 -6346
  261. package/.sinapse-ai/data/registry-update-log.jsonl +0 -1323
  262. package/.sinapse-ai/manifests/agents.csv +0 -29
  263. package/.sinapse-ai/manifests/tasks.csv +0 -204
  264. package/.sinapse-ai/manifests/workers.csv +0 -196
  265. package/squads/squad-growth/tasks/calculate-sample-size.md +0 -121
  266. package/squads/squad-paidmedia/tasks/calculate-sample-size.md +0 -57
@@ -7,10 +7,9 @@
7
7
  # - SHA256 hashes for change detection
8
8
  # - File types for categorization
9
9
  #
10
- version: 9.4.0
11
- generated_at: "2026-04-11T05:00:51.478Z"
10
+ version: 9.5.0
12
11
  generator: scripts/generate-install-manifest.js
13
- file_count: 1119
12
+ file_count: 1153
14
13
  files:
15
14
  - path: cli/commands/config/index.js
16
15
  hash: sha256:bfa83cb1dc111b0b30dd298dc0abc2150b73f939b6cd4458effa8e6d407bc9e2
@@ -249,9 +248,9 @@ files:
249
248
  type: core
250
249
  size: 15622
251
250
  - path: core/code-intel/registry-syncer.js
252
- hash: sha256:01cda6038531e37d42e0435345d57986eaf2396dadfc5b94c4147f3b2d8c6508
251
+ hash: sha256:6791f60b65ed3aeb6d53e2ac942cf0f604577f15b78ae0ee34454abd2bcb67eb
253
252
  type: core
254
- size: 10893
253
+ size: 13217
255
254
  - path: core/config/config-cache.js
256
255
  hash: sha256:19a1c2900dd5cc59ddece4303d272415683978e238feb6538e6b41c1eef456a1
257
256
  type: core
@@ -301,73 +300,73 @@ files:
301
300
  type: template
302
301
  size: 728
303
302
  - path: core/doctor/checks/agent-memory.js
304
- hash: sha256:9e3eaf1e779a483f9fd56da7b4a10101f41fe3814ece1d99e8aebe29b264a46f
303
+ hash: sha256:adad35cd3995b813cb9d87fd617fbbe7784397edb0f58c3114511ba45bc76f19
305
304
  type: core
306
- size: 1376
305
+ size: 1555
307
306
  - path: core/doctor/checks/claude-md.js
308
- hash: sha256:cf1069dd6f8d0d85e50da135029c4ad8c3eeef98df05ecb70fcb77488301686a
307
+ hash: sha256:c35202407eedc1835021e82642e64497345d66d83eb387e8ab693cdd3c3d2af5
309
308
  type: core
310
- size: 1196
309
+ size: 1312
311
310
  - path: core/doctor/checks/code-intel.js
312
- hash: sha256:0f78d62945df1f6b55e1fb9e0d2f1550069b87efb121e43926ab1f2c368309b6
311
+ hash: sha256:92575328f8cf65e1a24d82eafa7225bf080a60a3aab8de60ddee1737196c0b70
313
312
  type: core
314
- size: 4105
313
+ size: 4298
315
314
  - path: core/doctor/checks/commands-count.js
316
- hash: sha256:3355330d74c0e2c8ec628515936f202715c4a26fbca558aef2236aac48130d51
315
+ hash: sha256:9a0cf5d3dd327a9daaac90f8347d4d36933e6d7c43eb58910b3a185c7ae7cd48
317
316
  type: core
318
- size: 1725
317
+ size: 1812
319
318
  - path: core/doctor/checks/constitution-consistency.js
320
- hash: sha256:8da440ef623c8ba300a73f9833fb5b7c5f6e45e50694b488b7580c9738bfb1d8
319
+ hash: sha256:56d9b1585b6bb1888c38a4799b9121d624cad88646720c10217d219731c97d28
321
320
  type: core
322
- size: 3139
321
+ size: 3236
323
322
  - path: core/doctor/checks/core-config.js
324
- hash: sha256:591d6b04eecb4ca2058fa6b919f1b2f16f072e23f507271a06fc7a46928d9d11
323
+ hash: sha256:77b3a167f52a6145aeaf83ac4ce558ec7b8efd66beccfa05ec106367315d7e9a
325
324
  type: core
326
- size: 1213
325
+ size: 1325
327
326
  - path: core/doctor/checks/entity-registry.js
328
- hash: sha256:a119b2b0121caaeeedf3c8071f0d3ff76a15e4f227c47c47b716e7052c45ba46
327
+ hash: sha256:abf0ccde886034d64445188d04707b9433b7e32c4255c0375b4ad1b427851e76
329
328
  type: core
330
- size: 1339
329
+ size: 1581
331
330
  - path: core/doctor/checks/git-hooks.js
332
- hash: sha256:2d6979a01f6366c17deb34b4aabcea68a20e8fd55b344960460fd1b4d41f5d19
331
+ hash: sha256:57bcea17d4317083b6b22bae5bd1ce785d93eb904413aded287595038cb347e6
333
332
  type: core
334
- size: 1031
333
+ size: 1212
335
334
  - path: core/doctor/checks/graph-dashboard.js
336
- hash: sha256:e4be727c83e281ca9035e3bbfba46fc5e8b6be95e9996d7b6d11a0cc9f3a045a
335
+ hash: sha256:6996b47faf1945ed27a24db2a0061c46f9fd0069b0c73a8af0f4b68d68142047
337
336
  type: core
338
- size: 1112
337
+ size: 1202
339
338
  - path: core/doctor/checks/hooks-claude-count.js
340
- hash: sha256:e8d40654b551ba161d5eca4cb070d86078fc1df0611d3678d7000d8fb17ba41e
339
+ hash: sha256:a57af232ba33178c0d581dc10588bfdc256c41db28c5d433b967ba952d10778f
341
340
  type: core
342
- size: 3355
341
+ size: 3529
343
342
  - path: core/doctor/checks/ide-sync.js
344
- hash: sha256:cc61d0237f1aac5041887923acacc1b275481b2f5d14586ed6a1495ad04bd9b4
343
+ hash: sha256:833092abcbfef419b8dc40a61b9c832b54fcef212b3f5e516c152dc49a147299
345
344
  type: core
346
- size: 2160
345
+ size: 2275
347
346
  - path: core/doctor/checks/index.js
348
347
  hash: sha256:46c492327d3aa9e704ee098c43fad1fd884edfb96620d15f51e6f54699f1ea39
349
348
  type: core
350
349
  size: 1418
351
350
  - path: core/doctor/checks/node-version.js
352
- hash: sha256:feca6394a162fcf0a8a0eed3ad5f80853c16ba03b97a7a3011a0d49ddc94cce6
351
+ hash: sha256:1128759128fd60822b6dc08527442bc88bc713266ef1561fcfcba5dd31992a84
353
352
  type: core
354
- size: 676
353
+ size: 785
355
354
  - path: core/doctor/checks/npm-packages.js
356
- hash: sha256:fda1c46b7611399191983b4d8800f41ea0340979867e644374bfc548efb65d24
355
+ hash: sha256:770d0ae3a6232ca6f09a5ed68bddbed14d8303d061279a3947a0679546d645a3
357
356
  type: core
358
- size: 2305
357
+ size: 2416
359
358
  - path: core/doctor/checks/rules-files.js
360
- hash: sha256:31f77fdd73874acdd1e4bc74b1ec67fb8c1bdfac07626efd379457f72d7343fe
359
+ hash: sha256:16205df27fd9c8d73de42593429afbe6b2c4d70cca4bdde3a51b704f1d292e63
361
360
  type: core
362
- size: 1434
361
+ size: 1552
363
362
  - path: core/doctor/checks/settings-json.js
364
- hash: sha256:0abcf3c18dc12a80ea147b286e44b06896d92a4289dbe723d13afe96757fd4e7
363
+ hash: sha256:7ed4e501be86f1e306c6eeac97641bfc3efedb1d541bd5883ed10f8d3204fb19
365
364
  type: core
366
- size: 3297
365
+ size: 3411
367
366
  - path: core/doctor/checks/skills-count.js
368
- hash: sha256:f26d7f56ef615a5e00bab7d117611b70617cae2e40badf87dc499fb562cbbaca
367
+ hash: sha256:4861a2330ce5f3c696d53fc768d1575e03c4efcd5a217185d392556d2b1576cc
369
368
  type: core
370
- size: 1590
369
+ size: 1675
371
370
  - path: core/doctor/fix-handler.js
372
371
  hash: sha256:1463b78a16235f184da1d5d39af089d56641aaab585c0c0ccb326b566f6297de
373
372
  type: core
@@ -381,9 +380,9 @@ files:
381
380
  type: core
382
381
  size: 1461
383
382
  - path: core/doctor/index.js
384
- hash: sha256:e63be0d9a3a974c74232b89a99f13340dc85e65d420806a9d783c127b90eee90
383
+ hash: sha256:6c7c5ede24379c217376df9113b2f77dce0592d08b830bec6120e1517b2ffe8a
385
384
  type: core
386
- size: 2604
385
+ size: 5773
387
386
  - path: core/elicitation/agent-elicitation.js
388
387
  hash: sha256:92abc291cecff9b8bb9153d5fbac84ad5217cff4d0d01e0495785a939334cd81
389
388
  type: elicitation
@@ -761,9 +760,9 @@ files:
761
760
  type: core
762
761
  size: 8097
763
762
  - path: core/ids/registry-updater.js
764
- hash: sha256:364c9522451e98d1263b342dff624d9611495ec297f7934dfeef03874061ba14
763
+ hash: sha256:d941a6a3a0d281fe182ef30a7aaff942fdfb39fb26c9627072b9f9293974d42d
765
764
  type: core
766
- size: 24546
765
+ size: 24918
767
766
  - path: core/ids/verification-gate.js
768
767
  hash: sha256:9e4d11ed4b63282a0a9b82f64d731b612db3ade4e67be628b35a6b655097c0dc
769
768
  type: core
@@ -776,6 +775,10 @@ files:
776
775
  hash: sha256:1096fccecd12c7b7e6219951048c57bbf6a413e965bd80ae677ad1fc4d5ff604
777
776
  type: core
778
777
  size: 2590
778
+ - path: core/logger/index.js
779
+ hash: sha256:e8b912c3cdafdae021a139c92f8f2a3a63bd44863f2adeee2ccf97b7e553b87d
780
+ type: core
781
+ size: 8942
779
782
  - path: core/manifest/manifest-generator.js
780
783
  hash: sha256:1b368f539322ca0588618fb3ef86bcb19164941df851879e388f7b9c7240bdd1
781
784
  type: core
@@ -957,9 +960,9 @@ files:
957
960
  type: core
958
961
  size: 16495
959
962
  - path: core/orchestration/terminal-spawner.js
960
- hash: sha256:3482d430578a9d787b6299e3517883ae3cd6353f0b88aa3ecad7699db8a76f64
963
+ hash: sha256:e7695b311301e5df6ce27ff80b0d8fb5c8ae3b3657b9f8094eff3ef22e364691
961
964
  type: core
962
- size: 31509
965
+ size: 31516
963
966
  - path: core/orchestration/workflow-executor.js
964
967
  hash: sha256:b087a4ac222aef7b18d8ac99ad904c2e820628af2c1f49664ff0e6f42c1dca8c
965
968
  type: core
@@ -1052,10 +1055,6 @@ files:
1052
1055
  hash: sha256:456d4dcf3825368ca6e4a4297a9dbb2ccd48b2f4b4cc4eadbb1b7c074c573f7c
1053
1056
  type: core
1054
1057
  size: 5290
1055
- - path: core/registry/service-registry.json
1056
- hash: sha256:b9d55960c864c574df2592eda1d468e9f089cf42f4f9e1c8a6e71ae8dbbf3f20
1057
- type: core
1058
- size: 155380
1059
1058
  - path: core/registry/validate-registry.js
1060
1059
  hash: sha256:8612f683f1b7ecd043a0342d05fbe434721b19568b6ff76a483a6de7aa830d5c
1061
1060
  type: core
@@ -1208,6 +1207,10 @@ files:
1208
1207
  hash: sha256:4f0b16538c3a2c2dbbe264e6edbe0ca2d943af49936d0de68b21be4a469f5492
1209
1208
  type: core
1210
1209
  size: 574
1210
+ - path: core/telemetry/index.js
1211
+ hash: sha256:d1089c1743bf7679c3734f71f4d348c448053865c34fa30ba61648bfef30fb53
1212
+ type: core
1213
+ size: 8515
1211
1214
  - path: core/ui/index.js
1212
1215
  hash: sha256:a0a8d6aca4aaaf5d129e43260eb2d2c7f5b7d44d90fa8c0339253593aaab2371
1213
1216
  type: core
@@ -1241,9 +1244,9 @@ files:
1241
1244
  type: data
1242
1245
  size: 9587
1243
1246
  - path: data/entity-registry.yaml
1244
- hash: sha256:74709c282cd1635bf02fdb5a7be24f2f98b563cdadf18ceeda5ad654138495d8
1247
+ hash: sha256:4610b68a1b746338330655f45e453a63419977dfca248474fb9c1487b32bbea1
1245
1248
  type: data
1246
- size: 510782
1249
+ size: 522914
1247
1250
  - path: data/learned-patterns.yaml
1248
1251
  hash: sha256:1a4cd045c087b9dfd7046ff1464a9d2edb85fba77cf0b6fba14f4bb9004c741e
1249
1252
  type: data
@@ -1353,57 +1356,57 @@ files:
1353
1356
  type: agent
1354
1357
  size: 1257
1355
1358
  - path: development/agents/architect.md
1356
- hash: sha256:bd4eac6209730757b1a3a6d977fbae92a17c267b7c1e0c937d6efa3822f8ecfc
1359
+ hash: sha256:e9911431badd1203a4c058fa6cec8ee6387b7d29c78b84b494a3514e5723af51
1357
1360
  type: agent
1358
- size: 24736
1361
+ size: 24928
1359
1362
  - path: development/agents/architect/MEMORY.md
1360
1363
  hash: sha256:6ce3f0187f34b9d9cd97fbc744f9eb33efb08cff48b64528ffce2dd08d453c09
1361
1364
  type: agent
1362
1365
  size: 1395
1363
1366
  - path: development/agents/data-engineer.md
1364
- hash: sha256:6c999eb97db92c0596bc69d96861b26c1113ee717a816933fa64f371b5c5d34b
1367
+ hash: sha256:cb88190502320722d496bf8510bbb5c4f34387be0247973004829cdb5135e8be
1365
1368
  type: agent
1366
- size: 21911
1369
+ size: 24141
1367
1370
  - path: development/agents/data-engineer/MEMORY.md
1368
1371
  hash: sha256:91b84ee63dafd3fbeec8d00744752753d1a74acdd3a6b398f26db6662d2babf3
1369
1372
  type: agent
1370
1373
  size: 1110
1371
1374
  - path: development/agents/developer.md
1372
- hash: sha256:2fc6b9b43f73d069ba593bec4be43f563252121e55272e98ff0af6627989a0dd
1375
+ hash: sha256:cacad39aa3c897b583874d9a29c1607119a47ac5a535b690e97e65dd2dd69d7d
1373
1376
  type: agent
1374
- size: 28016
1377
+ size: 29475
1375
1378
  - path: development/agents/developer/MEMORY.md
1376
1379
  hash: sha256:98e00ca0bd5b0b2fdfbcf8ad52256dd7f73df6236e2098618d63fae97652949a
1377
1380
  type: agent
1378
1381
  size: 2493
1379
1382
  - path: development/agents/devops.md
1380
- hash: sha256:8ddef6fee36f279e0c9d3b6663ad4c2a5f95dfc42908e76f4fa9d4e78bdd7a8a
1383
+ hash: sha256:7b0bd238983cb4dc1653a4b682181ce9cb54f52d16ed07091664f553afeade20
1381
1384
  type: agent
1382
- size: 27451
1385
+ size: 27607
1383
1386
  - path: development/agents/devops/MEMORY.md
1384
1387
  hash: sha256:c9c574566f3ab627135219eefb2e0039169016f4f0a8605b02593d0cfd38f071
1385
1388
  type: agent
1386
1389
  size: 1403
1387
1390
  - path: development/agents/product-lead.md
1388
- hash: sha256:66c29a48b5e67ace3241814e430eec658728d53b74b44435d92c79639f402207
1391
+ hash: sha256:6044cc85092eae128f846fe7d0f7d337bb65d936a5ea7da0762de22ac2585338
1389
1392
  type: agent
1390
- size: 14583
1393
+ size: 15933
1391
1394
  - path: development/agents/product-lead/MEMORY.md
1392
1395
  hash: sha256:148c843a490e35e89d5fac74cea9beafb2fc4055aa9bbf52505ab383b265360f
1393
1396
  type: agent
1394
1397
  size: 1398
1395
1398
  - path: development/agents/project-lead.md
1396
- hash: sha256:e1a29e48543ac5ba026a30b72e29aaedd5e270634cbeb9e61bed30e8c3bd7446
1399
+ hash: sha256:a9aabacaa6c92d51de87575e7b273d13a2abc004100ca25c0ca2f51c7697af10
1397
1400
  type: agent
1398
- size: 16844
1401
+ size: 18307
1399
1402
  - path: development/agents/project-lead/MEMORY.md
1400
1403
  hash: sha256:b7b754e37419cb605871920283decde2c01125c5f641f90afe569491838cf5e3
1401
1404
  type: agent
1402
1405
  size: 1238
1403
1406
  - path: development/agents/quality-gate.md
1404
- hash: sha256:3d5305bd5c442bbdd49a31a1076475c32ccfd25eea8d18b10db1a429f8c13f18
1407
+ hash: sha256:b500ceb65a861327d293916699ce9ddd73a74c81a30ba672b6d34a05a13b7a08
1405
1408
  type: agent
1406
- size: 23321
1409
+ size: 23462
1407
1410
  - path: development/agents/quality-gate/MEMORY.md
1408
1411
  hash: sha256:a17353257dc4dce493f6a87690c8ac8e8bbc1f0d71018f926277324c6a2869bb
1409
1412
  type: agent
@@ -1413,21 +1416,21 @@ files:
1413
1416
  type: agent
1414
1417
  size: 31337
1415
1418
  - path: development/agents/sprint-lead.md
1416
- hash: sha256:7490818d14c3ff8ee12a25cf3a1db65557703b10513ab5310e7bf9d7d25961c7
1419
+ hash: sha256:d1432e9a4f99d8ddbf7e471ae3199d61158740d074e40beccec3a8b7079a09df
1417
1420
  type: agent
1418
- size: 12809
1421
+ size: 14161
1419
1422
  - path: development/agents/sprint-lead/MEMORY.md
1420
- hash: sha256:fcc36fd4080c382d3ab0d455910805f045a29972c7ff0a1e20a4461474de56b0
1423
+ hash: sha256:12a5b03243b3dd6d8df71ae70cb74bd380f00ad892aa2aeffcd9ec6a447cebb0
1421
1424
  type: agent
1422
- size: 1125
1425
+ size: 2023
1423
1426
  - path: development/agents/squad-creator.md
1424
- hash: sha256:fa3d79f38530127ab226f98b339311efb3bb8531147d7e95e45f417def0280a2
1427
+ hash: sha256:4c1248b95b630fdbf36692193077f693847307ceb627c3b1d387a7faff18f7c7
1425
1428
  type: agent
1426
- size: 14011
1429
+ size: 16584
1427
1430
  - path: development/agents/ux-design-expert.md
1428
- hash: sha256:211a721991e3fb09edb6165f50b1d2dd92dab52ac58b557ca57d66de88c23793
1431
+ hash: sha256:043c902bf7a22e0041eb4bb204cbee77f5a2a965cdbab5aa79e6d8e7c22f3005
1429
1432
  type: agent
1430
- size: 20057
1433
+ size: 21574
1431
1434
  - path: development/agents/ux/MEMORY.md
1432
1435
  hash: sha256:315ac4d963d09f50c2686fdcb56fa4c34761b5097600f6a834a44cfacca12414
1433
1436
  type: agent
@@ -1476,6 +1479,38 @@ files:
1476
1479
  hash: sha256:c11f03e760547bfd0abbd0ea7d0e636c3f32527cb1a717811c481fce3fad49ea
1477
1480
  type: data
1478
1481
  size: 11117
1482
+ - path: development/knowledge-base/agent-communication-protocol.md
1483
+ hash: sha256:2aeb80a48f338891729ec926d1c179d68310703a122e5922b01bbe251ff9ed74
1484
+ type: development
1485
+ size: 4808
1486
+ - path: development/knowledge-base/database-scaling-patterns.md
1487
+ hash: sha256:d2f5d54ab7dbbcdfad4a34cf8027003f65457ddc0e16a52794d9ca202e8da2bf
1488
+ type: development
1489
+ size: 11976
1490
+ - path: development/knowledge-base/environment-deployment-patterns.md
1491
+ hash: sha256:c13d4296a295b6a6c1cafc803d329cb5bd61e78170a7dabaec296e1c971f8489
1492
+ type: development
1493
+ size: 9457
1494
+ - path: development/knowledge-base/gotchas-patterns.md
1495
+ hash: sha256:52ae760c59d38fc25becad9befbe82953f3cd81580de0a83e273ab23603b335f
1496
+ type: development
1497
+ size: 12045
1498
+ - path: development/knowledge-base/infrastructure-decision-framework.md
1499
+ hash: sha256:f6250764865bcfc3bfed6bd2b34763d9a5b5c72f522dec251e706534a808c217
1500
+ type: development
1501
+ size: 7789
1502
+ - path: development/knowledge-base/security-pre-deploy-checklist.md
1503
+ hash: sha256:e7e358db9cfd2fe91ec80efbecc6f9825cbab6f64df58b8302d6813ecdcb7dc3
1504
+ type: development
1505
+ size: 12147
1506
+ - path: development/knowledge-base/software-architecture-patterns.md
1507
+ hash: sha256:da3c879e6e8608c67f6809e9b9fdfe08767ebea4e3218d55bad2b81ecc832d11
1508
+ type: development
1509
+ size: 10414
1510
+ - path: development/knowledge-base/token-economy-guide.md
1511
+ hash: sha256:cd92d1becb3ea5e728a041fef5d7b850e66996ce1d2222a1ff1604758867d948
1512
+ type: development
1513
+ size: 5932
1479
1514
  - path: development/README.md
1480
1515
  hash: sha256:cb3aa87366eba1adebeb1f033c62e3cfc2a65430dc456914808b2c108884ebf2
1481
1516
  type: development
@@ -1621,9 +1656,9 @@ files:
1621
1656
  type: script
1622
1657
  size: 23414
1623
1658
  - path: development/scripts/populate-entity-registry.js
1624
- hash: sha256:c2f8b76c7d555a12ada3e055c75298176567a01b55a3bad967f88e3839f0580c
1659
+ hash: sha256:51fe2e6fb0561506df8c070e2a595651d0b12b2b796fc9b4c1e9eabdeca5558c
1625
1660
  type: script
1626
- size: 22593
1661
+ size: 22872
1627
1662
  - path: development/scripts/refactoring-suggester.js
1628
1663
  hash: sha256:66bf0be38efb417619e652c690d41337202dae7defa454bec73b010b05bb6db4
1629
1664
  type: script
@@ -1760,14 +1795,30 @@ files:
1760
1795
  hash: sha256:b64ef84a6def84cc600aca2c04fedd1999be394cac017409231752ee9eb51f46
1761
1796
  type: script
1762
1797
  size: 10338
1798
+ - path: development/skills/captcha-handler.md
1799
+ hash: sha256:de3fcdf981a727a2b2efd532d4596bed50a0f2ba14c340bcd8b735ad7fab5876
1800
+ type: development
1801
+ size: 2611
1802
+ - path: development/skills/chrome-brain.md
1803
+ hash: sha256:4697a1cd612d6f21c8bb16baf447d1a61df0e1781ea64425daecfa7f8e6bf747
1804
+ type: development
1805
+ size: 3354
1763
1806
  - path: development/skills/debug.md
1764
1807
  hash: sha256:7fe2ab7a6d728e2a43d6cf48fb84aa7ab28262ee805529713777e40e6038dd81
1765
1808
  type: development
1766
1809
  size: 1916
1810
+ - path: development/skills/deploy-readiness.md
1811
+ hash: sha256:7ce1043fd3f886e00b9cbc88dda53eeabb9c8d817674ac50c352729fd5d6a170
1812
+ type: development
1813
+ size: 3834
1767
1814
  - path: development/skills/fast-review.md
1768
1815
  hash: sha256:b9f6910e13fb4c92fa380828f3eee9ac1bc160d06e4b20a5b58a61d17c51495d
1769
1816
  type: development
1770
1817
  size: 1780
1818
+ - path: development/skills/model-router.md
1819
+ hash: sha256:0638522505e1e7f65ccdcea4a65c70e5197bd874563fc5296b13f1f58615df71
1820
+ type: development
1821
+ size: 3137
1771
1822
  - path: development/skills/research-synthesis.md
1772
1823
  hash: sha256:11f815d3fffaff667c8432286000c0fb96dcdbf299e1eeb1761099f0003d539b
1773
1824
  type: development
@@ -1776,6 +1827,14 @@ files:
1776
1827
  hash: sha256:0859bdce7be73bafce78bce311e138d48b848a22af975107ef760770b11efaa9
1777
1828
  type: development
1778
1829
  size: 1993
1830
+ - path: development/skills/sinapse-methodology.md
1831
+ hash: sha256:08c4077a742ea50e08854e13643ad37b659eae496e6f2a50bf1bc64caa745124
1832
+ type: development
1833
+ size: 6469
1834
+ - path: development/skills/story-fast-track.md
1835
+ hash: sha256:39b0abd8d8b987441828722d2bdc5bde5dd3153fa31cebe65c2ea305601f9738
1836
+ type: development
1837
+ size: 2281
1779
1838
  - path: development/skills/verify.md
1780
1839
  hash: sha256:5f71ce92ea89e2c2e55b1398b1399d7b7c22ab51d1f807d4b38e9c9bdabc9b65
1781
1840
  type: development
@@ -2053,9 +2112,9 @@ files:
2053
2112
  type: task
2054
2113
  size: 11063
2055
2114
  - path: development/tasks/dev-develop-story.md
2056
- hash: sha256:9e6c42e99c06367930615ecc87b7e126907965bacf321d324d69e74356980ef1
2115
+ hash: sha256:4da6cb33507a28f0bbce6e1b456fd6cf9e56623576f52284cf6bc973c7d24ffb
2057
2116
  type: task
2058
- size: 27889
2117
+ size: 28677
2059
2118
  - path: development/tasks/dev-improve-code-quality.md
2060
2119
  hash: sha256:1895669a353fdc27473b55c04998815d3ac80fd2258be1d3453035373cb282db
2061
2120
  type: task
@@ -2084,6 +2143,10 @@ files:
2084
2143
  hash: sha256:154cdd8a611834e3de0828220c9be1feb57496a0bc46db6bcd0958c1c0e87199
2085
2144
  type: task
2086
2145
  size: 45722
2146
+ - path: development/tasks/environment-promotion-pipeline.md
2147
+ hash: sha256:2bd746e113a94884f45f13c6b67ea9d72b424508ed757810c2fb25521d873b3f
2148
+ type: task
2149
+ size: 14667
2087
2150
  - path: development/tasks/execute-checklist.md
2088
2151
  hash: sha256:58403b0bf6fcb18712c319a12898e8d7f379c2d0b6d8ec234c189bec748bbaeb
2089
2152
  type: task
@@ -2112,6 +2175,10 @@ files:
2112
2175
  hash: sha256:f03f2b3af74ae7a26691ec180cba879d27531741441e2908a12ae1c953b1452d
2113
2176
  type: task
2114
2177
  size: 13926
2178
+ - path: development/tasks/generate-agent-handoff.md
2179
+ hash: sha256:4b409dec3a3fc59d6274a1acab1529532fd29f71b85a1b417cf6d313bbc53b89
2180
+ type: task
2181
+ size: 11338
2115
2182
  - path: development/tasks/generate-ai-frontend-prompt.md
2116
2183
  hash: sha256:297235fb746ad2a8fca64b4a73e391ee9dc8a8de21527200ffbf83a4f8f2099d
2117
2184
  type: task
@@ -2180,6 +2247,10 @@ files:
2180
2247
  hash: sha256:3e707b7f96986455e7eb56d48ec2b5717e4318a1f020cd6e4fba96070c35c74a
2181
2248
  type: task
2182
2249
  size: 9948
2250
+ - path: development/tasks/infrastructure-assessment.md
2251
+ hash: sha256:477f61cc6f4e77f5773a0d6ac773b8409321495d4a29778fb16583845fdb8b56
2252
+ type: task
2253
+ size: 12106
2183
2254
  - path: development/tasks/init-project-status.md
2184
2255
  hash: sha256:3ff70751c0981eac1e6c0dab6e8e94f666fc5be8e8d94c48512efb130cc16d15
2185
2256
  type: task
@@ -2204,6 +2275,10 @@ files:
2204
2275
  hash: sha256:a532fb1802b2cee8ceda90b780f44e6be419a981489baabf69602752e2b4629f
2205
2276
  type: task
2206
2277
  size: 6550
2278
+ - path: development/tasks/load-testing-setup.md
2279
+ hash: sha256:3a1bcead69314ee3deba2b9801a803c87832940ed175cacfe25e5f60f4344e46
2280
+ type: task
2281
+ size: 15389
2207
2282
  - path: development/tasks/mcp-workflow.md
2208
2283
  hash: sha256:3e1707f4909c3d50ffbe04d40fd4d72a7d9ebe161923c2cbe76ef102fc2f0d34
2209
2284
  type: task
@@ -2228,6 +2303,10 @@ files:
2228
2303
  hash: sha256:d734907caed4a2ff30aecb17e8b1ca8db1dc50657f7274051f4384a8969d7972
2229
2304
  type: task
2230
2305
  size: 7679
2306
+ - path: development/tasks/observability-blueprint.md
2307
+ hash: sha256:4f3a6ad9d448b7dece01c4f8b02d66cec6719e45bb77a61eea348dbbf01b2c52
2308
+ type: task
2309
+ size: 16046
2231
2310
  - path: development/tasks/orchestrate-resume.md
2232
2311
  hash: sha256:e252d77fc378daba092979b18c2337ff16b925319cb89f2a00ab00a369185ac8
2233
2312
  type: task
@@ -2704,6 +2783,18 @@ files:
2704
2783
  hash: sha256:205a68b8473b2b01af18d0146a3221c114ce6c14dd35ba50e47ae8d055186896
2705
2784
  type: template
2706
2785
  size: 6427
2786
+ - path: development/templates/legal/breach-notification-tmpl.md
2787
+ hash: sha256:66e9a46a1958be1bdc5a23f6d039db527b2d8f1a3ad1c4730145b1035950bffe
2788
+ type: template
2789
+ size: 3270
2790
+ - path: development/templates/legal/privacy-policy-tmpl.md
2791
+ hash: sha256:99df858abc5c8cb6db30b03f08f13e2bdab9fbe13a23ee956789e236f2b3f702
2792
+ type: template
2793
+ size: 3316
2794
+ - path: development/templates/legal/terms-of-service-tmpl.md
2795
+ hash: sha256:141190e4702f318c821bb7f84c3828f64eb268cc34d28ee3e78051a0be4cf90f
2796
+ type: template
2797
+ size: 2358
2707
2798
  - path: development/templates/ptc-entity-validation.md
2708
2799
  hash: sha256:87d4c35c6e3fc5f4da9bc8e82ff1bab9a7d8d4fd32685a60585ff8184cd5b8b0
2709
2800
  type: template
@@ -2723,19 +2814,19 @@ files:
2723
2814
  - path: development/templates/service-template/__tests__/index.test.ts.hbs
2724
2815
  hash: sha256:41c113e42f2fba15fc22efdaf977b342c55f56a63bb951fc8d894a22d1002ba9
2725
2816
  type: template
2726
- size: 9815
2817
+ size: 9577
2727
2818
  - path: development/templates/service-template/client.ts.hbs
2728
2819
  hash: sha256:60f6d77badea704ba2371db1cb9203d89d46977ae2f1fd3db6126caac2eda1dc
2729
2820
  type: template
2730
- size: 12218
2821
+ size: 11814
2731
2822
  - path: development/templates/service-template/errors.ts.hbs
2732
2823
  hash: sha256:767ba8f42867a3b203ef695dc8949b2cab5a3843d4968d2908dd0ec59532d73c
2733
2824
  type: template
2734
- size: 5400
2825
+ size: 5217
2735
2826
  - path: development/templates/service-template/index.ts.hbs
2736
2827
  hash: sha256:d89c6c0dd1d852aa05a0ea86c6bcfb82344a98f44a4b28fed01d56e9a9b69d2e
2737
2828
  type: template
2738
- size: 3211
2829
+ size: 3090
2739
2830
  - path: development/templates/service-template/jest.config.js
2740
2831
  hash: sha256:5ac8aca19d48642852318eb73f7765ea942b2432b9443787274a58650df6c082
2741
2832
  type: template
@@ -2743,11 +2834,11 @@ files:
2743
2834
  - path: development/templates/service-template/package.json.hbs
2744
2835
  hash: sha256:7531ae3a8b6acaa90b7283835ed8a6a3597818a05dcb751456b5fae1adf4fa86
2745
2836
  type: template
2746
- size: 2337
2837
+ size: 2249
2747
2838
  - path: development/templates/service-template/README.md.hbs
2748
2839
  hash: sha256:1d78ab5f85c5ab4004f51d2f2547cdf544f8a300f7e2eef1d8f9f3f3cae15def
2749
2840
  type: template
2750
- size: 3601
2841
+ size: 3442
2751
2842
  - path: development/templates/service-template/tsconfig.json
2752
2843
  hash: sha256:57c0f40ea623a12caa16ff026496290e44129b3b8101943ab99a38f90d135f7f
2753
2844
  type: template
@@ -2755,7 +2846,7 @@ files:
2755
2846
  - path: development/templates/service-template/types.ts.hbs
2756
2847
  hash: sha256:0d0e011c8c96d853aee915b8ab9f343dd57653371907bb1ba1217481e208de08
2757
2848
  type: template
2758
- size: 2666
2849
+ size: 2520
2759
2850
  - path: development/templates/sinapse-doc-template.md
2760
2851
  hash: sha256:a31589a53c55e408f038b4a713942af1c327726a051485fc5e5a03eb2e4a179f
2761
2852
  type: template
@@ -2767,7 +2858,7 @@ files:
2767
2858
  - path: development/templates/squad-template/LICENSE
2768
2859
  hash: sha256:03c185d841d9f5ab92870a3e00596828fa4ca88f7977e485df96c8acc7222ec5
2769
2860
  type: template
2770
- size: 1094
2861
+ size: 1072
2771
2862
  - path: development/templates/squad-template/package.json
2772
2863
  hash: sha256:e0e0b508fa0c4c0a059002fb79b87d93238cf3de33e9af14ba129eb292caece5
2773
2864
  type: template
@@ -2893,9 +2984,9 @@ files:
2893
2984
  type: workflow
2894
2985
  size: 23746
2895
2986
  - path: development/workflows/story-development-cycle.yaml
2896
- hash: sha256:acf9c3050b6adc07e9dd79c56da90b44057d2294d75876172d14ee9bbb0f6352
2987
+ hash: sha256:137fc6d2a7aedb50bbebfa045e877c382399604708ce03477f358f282b76727f
2897
2988
  type: workflow
2898
- size: 8020
2989
+ size: 10039
2899
2990
  - path: docs/standards/AGENT-PERSONALIZATION-STANDARD-V1.md
2900
2991
  hash: sha256:e19d54b8194e9c0762c8045a6500c159a8716b8c202497a320f17e2208ed98ce
2901
2992
  type: documentation
@@ -2952,10 +3043,18 @@ files:
2952
3043
  hash: sha256:070e608c593ddf752d09e0d383ad5e19e96c33eaf8adf95006f67b0a768b3390
2953
3044
  type: code
2954
3045
  size: 747
3046
+ - path: infrastructure/contracts/compatibility/README.md
3047
+ hash: sha256:d431c72b49b6fb9d10c5f0c2a5b79aaf2fb274568103cc0e42c654edd29edc41
3048
+ type: infrastructure
3049
+ size: 1709
2955
3050
  - path: infrastructure/contracts/compatibility/sinapse-4.0.4.yaml
2956
3051
  hash: sha256:3c718b4ed4e6a203ed3619cf1043a86f787585b20bcfbe55508201fc5d22049b
2957
3052
  type: infrastructure
2958
3053
  size: 543
3054
+ - path: infrastructure/contracts/compatibility/sinapse-current.yaml
3055
+ hash: sha256:a4d63c8357b61efae0466894ed5f005c128e00361629163fb589de843da23292
3056
+ type: infrastructure
3057
+ size: 1072
2959
3058
  - path: infrastructure/index.js
2960
3059
  hash: sha256:1b8b8f000139b51c8332b7175c99ba86649807f0d40e6c7baf343ac3c6b0fdcc
2961
3060
  type: infrastructure
@@ -3231,7 +3330,7 @@ files:
3231
3330
  - path: infrastructure/scripts/llm-routing/templates/claude-free-tracked.cmd
3232
3331
  hash: sha256:41b244063b3ec346b55f7b2fe28da7bc081974f8c8ca8868b77da4eefd9fe770
3233
3332
  type: template
3234
- size: 4020
3333
+ size: 4147
3235
3334
  - path: infrastructure/scripts/llm-routing/templates/claude-free-tracked.sh
3236
3335
  hash: sha256:3be8f3a0e9017789f616bce78f6129057d678fbbb4f6c090a0c1c5b653232267
3237
3336
  type: template
@@ -3255,7 +3354,7 @@ files:
3255
3354
  - path: infrastructure/scripts/llm-routing/templates/deepseek-proxy.cmd
3256
3355
  hash: sha256:cb1b8ffff616846f1b772db39a6c4365d61359d490aca81234cc6acb6e788f22
3257
3356
  type: template
3258
- size: 2005
3357
+ size: 2076
3259
3358
  - path: infrastructure/scripts/llm-routing/templates/deepseek-proxy.sh
3260
3359
  hash: sha256:8c590984914d8ef72992aea102212ff83d94d3320ba152615acb541ea9bbc67a
3261
3360
  type: template
@@ -3263,7 +3362,7 @@ files:
3263
3362
  - path: infrastructure/scripts/llm-routing/templates/deepseek-usage.cmd
3264
3363
  hash: sha256:3e0dc6a1fc79afbe28220872c2be2093b8bfc8914ea9a9ad330b4cd9126302d4
3265
3364
  type: template
3266
- size: 1812
3365
+ size: 1863
3267
3366
  - path: infrastructure/scripts/llm-routing/templates/deepseek-usage.sh
3268
3367
  hash: sha256:6fbd7eafc2829a4d42e8d2b8f854f67ee857489d28fe6912b144a3fef7a0af90
3269
3368
  type: template
@@ -3325,9 +3424,9 @@ files:
3325
3424
  type: script
3326
3425
  size: 4057
3327
3426
  - path: infrastructure/scripts/pr-review-ai.js
3328
- hash: sha256:efa009a11a3913b0c2588625d9076f02ced5b697899f73f26d8a59eaa8dd2135
3427
+ hash: sha256:5e09231a418e5668070f9fe3ea3bd8b2c5df5137fc3938b4b06d998c2fcf3e44
3329
3428
  type: script
3330
- size: 31284
3429
+ size: 31487
3331
3430
  - path: infrastructure/scripts/project-status-loader.js
3332
3431
  hash: sha256:96ba99c2b63c08c7f4b83c1a5e44b023c825e14f5eaad48010de32709795c004
3333
3432
  type: script
@@ -3364,6 +3463,10 @@ files:
3364
3463
  hash: sha256:25001fe4083c45b14a1576a10de152b3108e5db732d7335b2e0cff3d78f5b84b
3365
3464
  type: script
3366
3465
  size: 9539
3466
+ - path: infrastructure/scripts/setup-project-infra.js
3467
+ hash: sha256:adcd31e8274b7c5debf0dbaf6c2e80945dfed179fc5c38b8bab76af0f4bbb56b
3468
+ type: script
3469
+ size: 4339
3367
3470
  - path: infrastructure/scripts/sinapse-validator.js
3368
3471
  hash: sha256:7cefe23afa2423faff96f9651d3c44e766130664cd84249d93c7571e9dfd7e24
3369
3472
  type: script
@@ -3401,9 +3504,9 @@ files:
3401
3504
  type: script
3402
3505
  size: 8331
3403
3506
  - path: infrastructure/scripts/test-discovery.js
3404
- hash: sha256:168af4a85b6196d6cc0da3a4601c3f23cf7f0a71adf3f0cf11a4c76fc54027d0
3507
+ hash: sha256:bbdc7830784cefcc5cf3f9f913d6efa86f521c8b4d4b12fcb9b3a336103c349e
3405
3508
  type: script
3406
- size: 34478
3509
+ size: 34684
3407
3510
  - path: infrastructure/scripts/test-generator.js
3408
3511
  hash: sha256:8436fc07d9f3b5c14ab5eda3946cdafc32f109c03bb46d9469ff73368393bfcb
3409
3512
  type: script
@@ -3456,14 +3559,18 @@ files:
3456
3559
  hash: sha256:31bcfc0cdf307e7c14064eaf0ddbf99a14344c21306937c9a7d9cc7ebba260f8
3457
3560
  type: script
3458
3561
  size: 4679
3562
+ - path: infrastructure/scripts/validate-manifest-parity.js
3563
+ hash: sha256:58de4fac542c7d67fdbfc0d18b501854290f48bc3a44eae5a7485dca9c816006
3564
+ type: script
3565
+ size: 12160
3459
3566
  - path: infrastructure/scripts/validate-output-pattern.js
3460
3567
  hash: sha256:ce4ea341a94ca4dbbd176816c7f3c567574715a0fedbf4c17405a9d312bd138b
3461
3568
  type: script
3462
3569
  size: 6693
3463
3570
  - path: infrastructure/scripts/validate-parity.js
3464
- hash: sha256:284c7715cc65b76579284024bbe5176b9230340d841dbfe79559c8f5844109cb
3571
+ hash: sha256:4649397644f29f5df4ec87554a27910b22955ba480093a5946f30e28fdd5f9a2
3465
3572
  type: script
3466
- size: 12266
3573
+ size: 14228
3467
3574
  - path: infrastructure/scripts/validate-paths.js
3468
3575
  hash: sha256:942f6de9e621b7331f61dc915db5d24b987b67d1ae3377882330f7013dd214e9
3469
3576
  type: script
@@ -3487,7 +3594,15 @@ files:
3487
3594
  - path: infrastructure/templates/coderabbit.yaml.template
3488
3595
  hash: sha256:c56a83af5c7cf782ef976530b465b40b6df6f945ec5a4c2a83d04da3a31ea0bb
3489
3596
  type: template
3490
- size: 8326
3597
+ size: 8046
3598
+ - path: infrastructure/templates/config/env.example
3599
+ hash: sha256:a7c757f69b37d712e3cd323870b0d06b60a72d28e2eff18b47517899c73fb011
3600
+ type: template
3601
+ size: 663
3602
+ - path: infrastructure/templates/config/gitignore-additions.tmpl
3603
+ hash: sha256:04532e3ae1e2a6efa864e8ab61c00670a5db82e0dfa1ba84c52996aa8be3b300
3604
+ type: template
3605
+ size: 708
3491
3606
  - path: infrastructure/templates/core-config/core-config-brownfield.tmpl.yaml
3492
3607
  hash: sha256:34955d66b70112be19362815ab8758070da7169db0447afc72dfa42ad553a680
3493
3608
  type: template
@@ -3499,11 +3614,11 @@ files:
3499
3614
  - path: infrastructure/templates/github-workflows/ci.yml.template
3500
3615
  hash: sha256:3377d5d4a2af43ee6c4ae069539a9a6ad299283831c0179525162a27e143c599
3501
3616
  type: template
3502
- size: 5097
3617
+ size: 4927
3503
3618
  - path: infrastructure/templates/github-workflows/pr-automation.yml.template
3504
3619
  hash: sha256:c0bd678d91f5fd9ceab5b060f2a2c3d8b30cc323365a60900c41575652f8b170
3505
3620
  type: template
3506
- size: 10950
3621
+ size: 10619
3507
3622
  - path: infrastructure/templates/github-workflows/README.md
3508
3623
  hash: sha256:19e8239a844676c0f3843b1c80d69e51ecab36305b0d68912582b629d775adc1
3509
3624
  type: template
@@ -3511,23 +3626,43 @@ files:
3511
3626
  - path: infrastructure/templates/github-workflows/release.yml.template
3512
3627
  hash: sha256:e0c0ca04e0601f0f4157ca5aeaa7538c266a151118d19ca7592703612c6fcf07
3513
3628
  type: template
3514
- size: 6802
3629
+ size: 6605
3630
+ - path: infrastructure/templates/github/ci-template.yml
3631
+ hash: sha256:76f6000b456f0574562c4b8a46b1e5922c2ce5f8115da1a548872935996005ab
3632
+ type: template
3633
+ size: 1920
3634
+ - path: infrastructure/templates/github/CODEOWNERS.template
3635
+ hash: sha256:e484867dbce95078ed29378041db526873b7194cd1fd297aa3ff1b880937dc44
3636
+ type: template
3637
+ size: 309
3638
+ - path: infrastructure/templates/github/issue-templates/bug_report.md
3639
+ hash: sha256:380e9e885504464968cae940ff6c0b457c7935e1f33045ace3236fe8fe7c4a06
3640
+ type: template
3641
+ size: 684
3642
+ - path: infrastructure/templates/github/issue-templates/feature_request.md
3643
+ hash: sha256:0580bdaf6aa81ffa270e3835f8ffd2b0bada503ad5230799fa7bb634060f7ff2
3644
+ type: template
3645
+ size: 442
3646
+ - path: infrastructure/templates/github/PULL_REQUEST_TEMPLATE.md
3647
+ hash: sha256:a6e7a5ce1afee5185cdc123fb1986ffcaa1fc63f5c6284166aa0ff67cb9075bf
3648
+ type: template
3649
+ size: 570
3515
3650
  - path: infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl
3516
3651
  hash: sha256:43cd686b77e9a4f89b79b84313fcc9d5556ad94882e326c22b4fe7e89ec943c0
3517
3652
  type: template
3518
- size: 528
3653
+ size: 509
3519
3654
  - path: infrastructure/templates/gitignore/gitignore-node.tmpl
3520
3655
  hash: sha256:504bf428128606cace6ea711b6cb96faad1da7673d5d2224508e563d247bb75b
3521
3656
  type: template
3522
- size: 1041
3657
+ size: 955
3523
3658
  - path: infrastructure/templates/gitignore/gitignore-python.tmpl
3524
3659
  hash: sha256:333daadb1b9924f4f289e409cf66ccf079b0d3fe0459be713af93d0264e1818d
3525
3660
  type: template
3526
- size: 1730
3661
+ size: 1584
3527
3662
  - path: infrastructure/templates/gitignore/gitignore-sinapse-base.tmpl
3528
3663
  hash: sha256:5c2ed40db81c01b3a0f858c8c572dd5ef1e5078f9e9ce1e5e1b05ab7a68bd5a6
3529
3664
  type: template
3530
- size: 866
3665
+ size: 802
3531
3666
  - path: infrastructure/templates/project-docs/coding-standards-tmpl.md
3532
3667
  hash: sha256:17d6b7d0d6f711e472d509f5a17a5be9c76af8f801c317054ddd176efc515ada
3533
3668
  type: template
@@ -3567,7 +3702,7 @@ files:
3567
3702
  - path: infrastructure/templates/sinapse-sync.yaml.template
3568
3703
  hash: sha256:63c094174a3ea635c57aec88865b6b7a588e7cc56f31d0c7738a3a6488c88a76
3569
3704
  type: template
3570
- size: 8581
3705
+ size: 8398
3571
3706
  - path: infrastructure/tests/project-status-loader.test.js
3572
3707
  hash: sha256:2a35c19a1cf6fd4f9dd0624cd07314c78880ea6e0f8ba4011613686da0553741
3573
3708
  type: infrastructure
@@ -3651,43 +3786,43 @@ files:
3651
3786
  - path: monitor/hooks/lib/__init__.py
3652
3787
  hash: sha256:976c18b35a0c259acdbdbc7c9621e7a29cf8cf105374242c246874103abf325b
3653
3788
  type: monitor
3654
- size: 35
3789
+ size: 33
3655
3790
  - path: monitor/hooks/lib/enrich.py
3656
3791
  hash: sha256:0572338e1db4c7397f520111fe018501891b5421676618673db4ba7ab499f116
3657
3792
  type: monitor
3658
- size: 1753
3793
+ size: 1694
3659
3794
  - path: monitor/hooks/lib/send_event.py
3660
3795
  hash: sha256:b1d301e3992dfc7066b1a47837914c64c9cdfaf949aacfae6767d703f5b0e48c
3661
3796
  type: monitor
3662
- size: 1251
3797
+ size: 1203
3663
3798
  - path: monitor/hooks/notification.py
3664
3799
  hash: sha256:9af8df8b6d1906e4a0ee38d398671f2717c0248679b91877ed903d543291d670
3665
3800
  type: monitor
3666
- size: 533
3801
+ size: 503
3667
3802
  - path: monitor/hooks/post_tool_use.py
3668
3803
  hash: sha256:5508704ce2e8779bed5f2d3f296c341ce12940f44d25cb757dce51d7365aec8c
3669
3804
  type: monitor
3670
- size: 1190
3805
+ size: 1144
3671
3806
  - path: monitor/hooks/pre_compact.py
3672
3807
  hash: sha256:ea8c523d0d4bf68aa0b8e6f6ffebc2947f62b30be1114fb04a1423ef503a91d6
3673
3808
  type: monitor
3674
- size: 534
3809
+ size: 504
3675
3810
  - path: monitor/hooks/pre_tool_use.py
3676
3811
  hash: sha256:3a5efe97128628e570aaa1b62fa8064ff014302072670f9049db638885c845ef
3677
3812
  type: monitor
3678
- size: 1026
3813
+ size: 985
3679
3814
  - path: monitor/hooks/stop.py
3680
3815
  hash: sha256:62a86a40100741d512454e5b98f8a8b60e97debb1e2977d4c72370a61212fe7f
3681
3816
  type: monitor
3682
- size: 524
3817
+ size: 494
3683
3818
  - path: monitor/hooks/subagent_stop.py
3684
3819
  hash: sha256:fd98d46d230efb37b93a17e100b2e48ecc07ca3a9c90f2ab5cf1df23a798aaa7
3685
3820
  type: monitor
3686
- size: 546
3821
+ size: 516
3687
3822
  - path: monitor/hooks/user_prompt_submit.py
3688
3823
  hash: sha256:5dad0c7c8de1f48f7e38587853e3b1833a0ae0bdf0eab5936687d709bf9d6d8d
3689
3824
  type: monitor
3690
- size: 861
3825
+ size: 822
3691
3826
  - path: package.json
3692
3827
  hash: sha256:9f0fd1ba37e633bb3d8d2ba5040bec8820a2e0cb66169b2c773525f230893c13
3693
3828
  type: other
@@ -3835,7 +3970,7 @@ files:
3835
3970
  - path: product/templates/adr.hbs
3836
3971
  hash: sha256:7825131e30ee9f473e10258682981fd6cb7fb47e1c276ad79d3b777eaaecc62c
3837
3972
  type: template
3838
- size: 2342
3973
+ size: 2216
3839
3974
  - path: product/templates/agent-template.yaml
3840
3975
  hash: sha256:391e0728db257b309602bea13e322560ea4227c34382fa66eb6283583b4da8f9
3841
3976
  type: template
@@ -3883,7 +4018,7 @@ files:
3883
4018
  - path: product/templates/dbdr.hbs
3884
4019
  hash: sha256:a2824092c2ba2122c1d0245b91bf70f6558f940bcb3cbd17a29fcf7d8c4ab7ef
3885
4020
  type: template
3886
- size: 4385
4021
+ size: 4143
3887
4022
  - path: product/templates/design-story-tmpl.yaml
3888
4023
  hash: sha256:fe712fb22f54364b1aafec2603c79546f6f70fb1de7dd7cde9563e47997a8557
3889
4024
  type: template
@@ -3947,7 +4082,7 @@ files:
3947
4082
  - path: product/templates/epic.hbs
3948
4083
  hash: sha256:9e0cefd86eda74afac7f151c3aff97011fc0d0322f7f7180eeeadea157c2c508
3949
4084
  type: template
3950
- size: 4088
4085
+ size: 3875
3951
4086
  - path: product/templates/eslintrc-security.json
3952
4087
  hash: sha256:12e0599450d6f6167e4cd9eeee0fd504e257c3af85d855e8a8b3f8a5253e89f4
3953
4088
  type: template
@@ -4035,7 +4170,7 @@ files:
4035
4170
  - path: product/templates/pmdr.hbs
4036
4171
  hash: sha256:49eb647ddd9d36421aadb9bab7d8f9edeba0aeb65f4d302b0f8b85bbb47599de
4037
4172
  type: template
4038
- size: 3430
4173
+ size: 3243
4039
4174
  - path: product/templates/prd-tmpl.yaml
4040
4175
  hash: sha256:cc68f141e09386096f6add62717f63f0b56bb53f315eafcafc4bb649f151d25f
4041
4176
  type: template
@@ -4043,11 +4178,11 @@ files:
4043
4178
  - path: product/templates/prd-v2.0.hbs
4044
4179
  hash: sha256:efcdadfcd994d02cb04f61de67e4b42156e49b64e9374ad57037e60104297134
4045
4180
  type: template
4046
- size: 4733
4181
+ size: 4516
4047
4182
  - path: product/templates/prd.hbs
4048
4183
  hash: sha256:16c7ae0dbcaf0d5848369584e2e32d54ef23777ea1210e6c013e2d70b7869d04
4049
4184
  type: template
4050
- size: 3631
4185
+ size: 3429
4051
4186
  - path: product/templates/project-brief-tmpl.yaml
4052
4187
  hash: sha256:b781737b94826c8cf9982309403dd3209dc1ebb74f4e3fa070ab1f4ebbda4b09
4053
4188
  type: template
@@ -4089,13 +4224,13 @@ files:
4089
4224
  type: template
4090
4225
  size: 1806
4091
4226
  - path: product/templates/story-tmpl.yaml
4092
- hash: sha256:b947db1e98315ab78ec454e9c02f702051729b809fe2310cf607104398ea9fcd
4227
+ hash: sha256:43a050de5ef51f53f890fd20f77ac567b297a40597f467b3bc6d00c8193c7fa6
4093
4228
  type: template
4094
- size: 13840
4229
+ size: 16686
4095
4230
  - path: product/templates/story.hbs
4096
4231
  hash: sha256:126c55c30e2e49816acc7c1712e71e7c26874b010edfe34e8d7890bac67095b2
4097
4232
  type: template
4098
- size: 5854
4233
+ size: 5590
4099
4234
  - path: product/templates/task-execution-report.md
4100
4235
  hash: sha256:476717ed85b347fb6a5b7894a3bcdcb5eb84376c625c38a2e524e7dada126608
4101
4236
  type: template
@@ -4107,67 +4242,67 @@ files:
4107
4242
  - path: product/templates/task.hbs
4108
4243
  hash: sha256:c0fa1b299a2a9e0816d54859e463d44d0f3bedf31ed8d21631cefdec36e4f3b5
4109
4244
  type: template
4110
- size: 2880
4245
+ size: 2709
4111
4246
  - path: product/templates/tmpl-comment-on-examples.sql
4112
4247
  hash: sha256:1e74b045f0a8763c85701445b97254eaaa1868cdd0f6ebdaf90d9e150ca2ac60
4113
4248
  type: template
4114
- size: 6375
4249
+ size: 6216
4115
4250
  - path: product/templates/tmpl-migration-script.sql
4116
4251
  hash: sha256:ff882969271610dd2dae3e81beccdd0882d048a062d3dc93e7f85ae197bd48d6
4117
4252
  type: template
4118
- size: 3040
4253
+ size: 2948
4119
4254
  - path: product/templates/tmpl-rls-granular-policies.sql
4120
4255
  hash: sha256:10b3763bdd9622eaea9deb5e66f332690f5fda43c926952b32e99eae3c67e1d9
4121
4256
  type: template
4122
- size: 3428
4257
+ size: 3323
4123
4258
  - path: product/templates/tmpl-rls-kiss-policy.sql
4124
4259
  hash: sha256:2bde67e5c9d2d242c2ac1d8e4faca78b8795de0089c94a0bd00438ef90675d0d
4125
4260
  type: template
4126
- size: 311
4261
+ size: 300
4127
4262
  - path: product/templates/tmpl-rls-roles.sql
4128
4263
  hash: sha256:89184ebc432d6ddef01529353623d98f7582cddaaaa82b453a3ff48035200589
4129
4264
  type: template
4130
- size: 4729
4265
+ size: 4593
4131
4266
  - path: product/templates/tmpl-rls-simple.sql
4132
4267
  hash: sha256:337380b90d7a2458acd870a057770be34f0723c6770a4681efdb7a1b2a6103d7
4133
4268
  type: template
4134
- size: 2994
4269
+ size: 2916
4135
4270
  - path: product/templates/tmpl-rls-tenant.sql
4136
4271
  hash: sha256:0d4d520666ed93d9dab56795ff2f319f1f5f9fb64f2bbb525f536d37e7605bb5
4137
4272
  type: template
4138
- size: 5132
4273
+ size: 4979
4139
4274
  - path: product/templates/tmpl-rollback-script.sql
4140
4275
  hash: sha256:c3655f9387b4d3c396dc163ba9a1fe2cb2f030f046ce03d1ab78b21b8e375956
4141
4276
  type: template
4142
- size: 2736
4277
+ size: 2658
4143
4278
  - path: product/templates/tmpl-seed-data.sql
4144
4279
  hash: sha256:8daa0b00c105f1212ab42462e249422fd64107e226929ccf2736506e9484b2e0
4145
4280
  type: template
4146
- size: 5718
4281
+ size: 5577
4147
4282
  - path: product/templates/tmpl-smoke-test.sql
4148
4283
  hash: sha256:3e0891c30eaeb16053e8eadac8ff7eb59a18876a779066445f226eca2a7678d4
4149
4284
  type: template
4150
- size: 741
4285
+ size: 724
4151
4286
  - path: product/templates/tmpl-staging-copy-merge.sql
4152
4287
  hash: sha256:ea404942ede661c9cf8321ba01490625ed2e5718880642cb3223a7acea1f5033
4153
4288
  type: template
4154
- size: 4222
4289
+ size: 4082
4155
4290
  - path: product/templates/tmpl-stored-proc.sql
4156
4291
  hash: sha256:78655833f266feb5f0d5d77cae8ec19a642d1f3089806a0e221abf9efab67206
4157
4292
  type: template
4158
- size: 3981
4293
+ size: 3840
4159
4294
  - path: product/templates/tmpl-trigger.sql
4160
4295
  hash: sha256:3c30469cd931dfebf1a8c85c0781b8f9a54f21e81ee0f7cbe7caa8fec44b3bda
4161
4296
  type: template
4162
- size: 5426
4297
+ size: 5273
4163
4298
  - path: product/templates/tmpl-view-materialized.sql
4164
4299
  hash: sha256:9c66e451a32b325a011585d0bc0c62bcff2f4bfd82b41ed3b108e468aee97880
4165
4300
  type: template
4166
- size: 4498
4301
+ size: 4364
4167
4302
  - path: product/templates/tmpl-view.sql
4168
4303
  hash: sha256:fa6c17eb3b5e619cf7d96be39296ece5ebfde6e1a3691ffd9bd73eacd9e333d3
4169
4304
  type: template
4170
- size: 5095
4305
+ size: 4917
4171
4306
  - path: product/templates/token-exports-css-tmpl.css
4172
4307
  hash: sha256:cdd75e1221721e2bfbeb4af82532438e15685a182de13480abe796ad2792d525
4173
4308
  type: template
@@ -4213,9 +4348,9 @@ files:
4213
4348
  type: script
4214
4349
  size: 377
4215
4350
  - path: scripts/diagnostics/health-dashboard/package-lock.json
4216
- hash: sha256:98517a0868f25336c3869e26d42968f47b55902ccb4f2afa0498442bcca4dd86
4351
+ hash: sha256:af446a82b6f1e2815e7b4ccb4cc708dc2823ed0b7b37a64040c34ad0937bdabf
4217
4352
  type: script
4218
- size: 181772
4353
+ size: 184365
4219
4354
  - path: scripts/diagnostics/health-dashboard/package.json
4220
4355
  hash: sha256:bceff5a33e4bde3dc5cd5796ec2ac2150ca37a6a4b1964cd9c7f7314b7dd5e16
4221
4356
  type: script