aios-core 4.0.2 → 4.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (145) hide show
  1. package/.aios-core/.session/current-session.json +14 -0
  2. package/.aios-core/core/registry/registry-schema.json +166 -166
  3. package/.aios-core/core/registry/service-registry.json +6585 -6585
  4. package/.aios-core/data/registry-update-log.jsonl +113 -0
  5. package/.aios-core/development/scripts/approval-workflow.js +642 -642
  6. package/.aios-core/development/scripts/backup-manager.js +606 -606
  7. package/.aios-core/development/scripts/branch-manager.js +389 -389
  8. package/.aios-core/development/scripts/code-quality-improver.js +1311 -1311
  9. package/.aios-core/development/scripts/commit-message-generator.js +849 -849
  10. package/.aios-core/development/scripts/conflict-resolver.js +674 -674
  11. package/.aios-core/development/scripts/dependency-analyzer.js +637 -637
  12. package/.aios-core/development/scripts/diff-generator.js +351 -351
  13. package/.aios-core/development/scripts/elicitation-engine.js +384 -384
  14. package/.aios-core/development/scripts/elicitation-session-manager.js +299 -299
  15. package/.aios-core/development/scripts/git-wrapper.js +461 -461
  16. package/.aios-core/development/scripts/manifest-preview.js +244 -244
  17. package/.aios-core/development/scripts/metrics-tracker.js +775 -775
  18. package/.aios-core/development/scripts/modification-validator.js +554 -554
  19. package/.aios-core/development/scripts/pattern-learner.js +1224 -1224
  20. package/.aios-core/development/scripts/performance-analyzer.js +757 -757
  21. package/.aios-core/development/scripts/refactoring-suggester.js +1138 -1138
  22. package/.aios-core/development/scripts/rollback-handler.js +530 -530
  23. package/.aios-core/development/scripts/security-checker.js +358 -358
  24. package/.aios-core/development/scripts/template-engine.js +239 -239
  25. package/.aios-core/development/scripts/template-validator.js +278 -278
  26. package/.aios-core/development/scripts/test-generator.js +843 -843
  27. package/.aios-core/development/scripts/transaction-manager.js +589 -589
  28. package/.aios-core/development/scripts/usage-tracker.js +673 -673
  29. package/.aios-core/development/scripts/validate-filenames.js +226 -226
  30. package/.aios-core/development/scripts/version-tracker.js +526 -526
  31. package/.aios-core/development/scripts/yaml-validator.js +396 -396
  32. package/.aios-core/development/templates/service-template/README.md.hbs +158 -158
  33. package/.aios-core/development/templates/service-template/__tests__/index.test.ts.hbs +237 -237
  34. package/.aios-core/development/templates/service-template/client.ts.hbs +403 -403
  35. package/.aios-core/development/templates/service-template/errors.ts.hbs +182 -182
  36. package/.aios-core/development/templates/service-template/index.ts.hbs +120 -120
  37. package/.aios-core/development/templates/service-template/package.json.hbs +87 -87
  38. package/.aios-core/development/templates/service-template/types.ts.hbs +145 -145
  39. package/.aios-core/development/templates/squad-template/LICENSE +21 -21
  40. package/.aios-core/docs/SHARD-TRANSLATION-GUIDE.md +335 -0
  41. package/.aios-core/docs/component-creation-guide.md +458 -0
  42. package/.aios-core/docs/session-update-pattern.md +307 -0
  43. package/.aios-core/docs/standards/AIOS-FRAMEWORK-MASTER.md +1963 -0
  44. package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO-V2.1-SUMMARY.md +1190 -0
  45. package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO-V2.1.md +439 -0
  46. package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO.md +5398 -0
  47. package/.aios-core/docs/standards/V3-ARCHITECTURAL-DECISIONS.md +523 -0
  48. package/.aios-core/docs/template-syntax.md +267 -0
  49. package/.aios-core/docs/troubleshooting-guide.md +625 -0
  50. package/.aios-core/infrastructure/templates/aios-sync.yaml.template +193 -193
  51. package/.aios-core/infrastructure/templates/coderabbit.yaml.template +279 -279
  52. package/.aios-core/infrastructure/templates/github-workflows/ci.yml.template +169 -169
  53. package/.aios-core/infrastructure/templates/github-workflows/pr-automation.yml.template +330 -330
  54. package/.aios-core/infrastructure/templates/github-workflows/release.yml.template +196 -196
  55. package/.aios-core/infrastructure/templates/gitignore/gitignore-aios-base.tmpl +63 -63
  56. package/.aios-core/infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl +18 -18
  57. package/.aios-core/infrastructure/templates/gitignore/gitignore-node.tmpl +85 -85
  58. package/.aios-core/infrastructure/templates/gitignore/gitignore-python.tmpl +145 -145
  59. package/.aios-core/infrastructure/tests/utilities-audit-results.json +501 -0
  60. package/.aios-core/install-manifest.yaml +97 -97
  61. package/.aios-core/local-config.yaml.template +68 -68
  62. package/.aios-core/manifests/agents.csv +1 -0
  63. package/.aios-core/manifests/schema/manifest-schema.json +190 -190
  64. package/.aios-core/manifests/tasks.csv +121 -0
  65. package/.aios-core/manifests/workers.csv +204 -0
  66. package/.aios-core/monitor/hooks/lib/__init__.py +1 -1
  67. package/.aios-core/monitor/hooks/lib/enrich.py +58 -58
  68. package/.aios-core/monitor/hooks/lib/send_event.py +47 -47
  69. package/.aios-core/monitor/hooks/notification.py +29 -29
  70. package/.aios-core/monitor/hooks/post_tool_use.py +45 -45
  71. package/.aios-core/monitor/hooks/pre_compact.py +29 -29
  72. package/.aios-core/monitor/hooks/pre_tool_use.py +40 -40
  73. package/.aios-core/monitor/hooks/stop.py +29 -29
  74. package/.aios-core/monitor/hooks/subagent_stop.py +29 -29
  75. package/.aios-core/monitor/hooks/user_prompt_submit.py +38 -38
  76. package/.aios-core/product/templates/adr.hbs +125 -125
  77. package/.aios-core/product/templates/component-react-tmpl.tsx +98 -98
  78. package/.aios-core/product/templates/dbdr.hbs +241 -241
  79. package/.aios-core/product/templates/engine/schemas/adr.schema.json +102 -102
  80. package/.aios-core/product/templates/engine/schemas/dbdr.schema.json +205 -205
  81. package/.aios-core/product/templates/engine/schemas/epic.schema.json +175 -175
  82. package/.aios-core/product/templates/engine/schemas/pmdr.schema.json +175 -175
  83. package/.aios-core/product/templates/engine/schemas/prd-v2.schema.json +300 -300
  84. package/.aios-core/product/templates/engine/schemas/prd.schema.json +152 -152
  85. package/.aios-core/product/templates/engine/schemas/story.schema.json +222 -222
  86. package/.aios-core/product/templates/engine/schemas/task.schema.json +154 -154
  87. package/.aios-core/product/templates/epic.hbs +212 -212
  88. package/.aios-core/product/templates/eslintrc-security.json +32 -32
  89. package/.aios-core/product/templates/github-actions-cd.yml +212 -212
  90. package/.aios-core/product/templates/github-actions-ci.yml +172 -172
  91. package/.aios-core/product/templates/pmdr.hbs +186 -186
  92. package/.aios-core/product/templates/prd-v2.0.hbs +216 -216
  93. package/.aios-core/product/templates/prd.hbs +201 -201
  94. package/.aios-core/product/templates/shock-report-tmpl.html +502 -502
  95. package/.aios-core/product/templates/story.hbs +263 -263
  96. package/.aios-core/product/templates/task.hbs +170 -170
  97. package/.aios-core/product/templates/tmpl-comment-on-examples.sql +158 -158
  98. package/.aios-core/product/templates/tmpl-migration-script.sql +91 -91
  99. package/.aios-core/product/templates/tmpl-rls-granular-policies.sql +104 -104
  100. package/.aios-core/product/templates/tmpl-rls-kiss-policy.sql +10 -10
  101. package/.aios-core/product/templates/tmpl-rls-roles.sql +135 -135
  102. package/.aios-core/product/templates/tmpl-rls-simple.sql +77 -77
  103. package/.aios-core/product/templates/tmpl-rls-tenant.sql +152 -152
  104. package/.aios-core/product/templates/tmpl-rollback-script.sql +77 -77
  105. package/.aios-core/product/templates/tmpl-seed-data.sql +140 -140
  106. package/.aios-core/product/templates/tmpl-smoke-test.sql +16 -16
  107. package/.aios-core/product/templates/tmpl-staging-copy-merge.sql +139 -139
  108. package/.aios-core/product/templates/tmpl-stored-proc.sql +140 -140
  109. package/.aios-core/product/templates/tmpl-trigger.sql +152 -152
  110. package/.aios-core/product/templates/tmpl-view-materialized.sql +133 -133
  111. package/.aios-core/product/templates/tmpl-view.sql +177 -177
  112. package/.aios-core/product/templates/token-exports-css-tmpl.css +240 -240
  113. package/.aios-core/quality/schemas/quality-metrics.schema.json +233 -233
  114. package/.aios-core/scripts/migrate-framework-docs.sh +300 -300
  115. package/.aios-core/scripts/pm.sh +0 -0
  116. package/.claude/hooks/enforce-architecture-first.py +196 -0
  117. package/.claude/hooks/install-hooks.sh +41 -0
  118. package/.claude/hooks/mind-clone-governance.py +192 -0
  119. package/.claude/hooks/pre-commit-mmos-guard.sh +99 -0
  120. package/.claude/hooks/pre-commit-version-check.sh +156 -0
  121. package/.claude/hooks/read-protection.py +151 -0
  122. package/.claude/hooks/slug-validation.py +176 -0
  123. package/.claude/hooks/sql-governance.py +182 -0
  124. package/.claude/hooks/write-path-validation.py +194 -0
  125. package/.claude/rules/agent-authority.md +105 -0
  126. package/.claude/rules/coderabbit-integration.md +93 -0
  127. package/.claude/rules/ids-principles.md +112 -0
  128. package/.claude/rules/story-lifecycle.md +139 -0
  129. package/.claude/rules/workflow-execution.md +150 -0
  130. package/LICENSE +48 -48
  131. package/README.md +30 -7
  132. package/bin/aios-minimal.js +0 -0
  133. package/bin/aios.js +15 -15
  134. package/package.json +2 -4
  135. package/packages/aios-install/bin/aios-install.js +0 -0
  136. package/packages/aios-install/bin/edmcp.js +0 -0
  137. package/packages/aios-pro-cli/bin/aios-pro.js +0 -0
  138. package/scripts/check-markdown-links.py +352 -352
  139. package/scripts/dashboard-parallel-dev.sh +0 -0
  140. package/scripts/dashboard-parallel-phase3.sh +0 -0
  141. package/scripts/dashboard-parallel-phase4.sh +0 -0
  142. package/scripts/glue/README.md +355 -0
  143. package/scripts/glue/compose-agent-prompt.cjs +362 -0
  144. package/scripts/install-monitor-hooks.sh +0 -0
  145. package/.aios-core/lib/build.json +0 -1
@@ -7,8 +7,8 @@
7
7
  # - SHA256 hashes for change detection
8
8
  # - File types for categorization
9
9
  #
10
- version: 4.0.2
11
- generated_at: "2026-02-13T01:40:56.998Z"
10
+ version: 4.0.4
11
+ generated_at: "2026-02-13T02:41:13.893Z"
12
12
  generator: scripts/generate-install-manifest.js
13
13
  file_count: 971
14
14
  files:
@@ -831,11 +831,11 @@ files:
831
831
  - path: core/registry/registry-schema.json
832
832
  hash: sha256:02bc6cce5b4d7491e0c7cbfb27d50658196d231a96b34d39f0414c583f45d44e
833
833
  type: core
834
- size: 5279
834
+ size: 5445
835
835
  - path: core/registry/service-registry.json
836
836
  hash: sha256:00f18727622526faaef558b17840d62b149a112eeb82cb3e645849e1b72db981
837
837
  type: core
838
- size: 161229
838
+ size: 167814
839
839
  - path: core/registry/validate-registry.js
840
840
  hash: sha256:48f2408386a565e93c8c293da2af4fd1e6357a69891ab823f3976b2cf1dbb4e8
841
841
  type: core
@@ -1091,7 +1091,7 @@ files:
1091
1091
  - path: development/scripts/approval-workflow.js
1092
1092
  hash: sha256:10278d73d1904efcc0622c43ed07fa2434f6a96014f4d619dc503f078fdbbc99
1093
1093
  type: script
1094
- size: 21553
1094
+ size: 22195
1095
1095
  - path: development/scripts/audit-agent-config.js
1096
1096
  hash: sha256:861428491ec5bb6741877381fd7e8506b2150f8c81a00d061ae499b2480c524d
1097
1097
  type: script
@@ -1103,7 +1103,7 @@ files:
1103
1103
  - path: development/scripts/backup-manager.js
1104
1104
  hash: sha256:4784782f5856bab5b405b95798614baf6e868853348a3a1dcf261bccf9547fce
1105
1105
  type: script
1106
- size: 16662
1106
+ size: 17268
1107
1107
  - path: development/scripts/batch-update-agents-session-context.js
1108
1108
  hash: sha256:2f4c8b4f84b3cd86a5897909fcbb8d8c3ff4d48058fa9d04cbc924ab50f3fd32
1109
1109
  type: script
@@ -1111,19 +1111,19 @@ files:
1111
1111
  - path: development/scripts/branch-manager.js
1112
1112
  hash: sha256:2e6b1e434f3f5e2e1d1f1aec994c3fb56efccf7baacb4f188e769b13dabe03de
1113
1113
  type: script
1114
- size: 11536
1114
+ size: 11925
1115
1115
  - path: development/scripts/code-quality-improver.js
1116
1116
  hash: sha256:acdfea90590a2d0d566e720540a8aad4a360cd531c58ad4e67cc4126522b7455
1117
1117
  type: script
1118
- size: 39827
1118
+ size: 41138
1119
1119
  - path: development/scripts/commit-message-generator.js
1120
1120
  hash: sha256:2e75d22307d0e3823b7762a6aff18c4c3842a632f876069215a221bc053336dc
1121
1121
  type: script
1122
- size: 25369
1122
+ size: 26218
1123
1123
  - path: development/scripts/conflict-resolver.js
1124
1124
  hash: sha256:8971b9aca2ab23a9478ac70e59710ec843f483fcbe088371444f4fc9b56c5278
1125
1125
  type: script
1126
- size: 19188
1126
+ size: 19862
1127
1127
  - path: development/scripts/decision-context.js
1128
1128
  hash: sha256:ad19e9891fa3085ea1774a9d29efaaf871f13b361cd0691e844e3fd6a9c34ff3
1129
1129
  type: script
@@ -1143,7 +1143,7 @@ files:
1143
1143
  - path: development/scripts/dependency-analyzer.js
1144
1144
  hash: sha256:64d6433a789a68950758b467b47c8e4fb38cb4842ce5a3462bd3393d8553c9b2
1145
1145
  type: script
1146
- size: 18024
1146
+ size: 18661
1147
1147
  - path: development/scripts/dev-context-loader.js
1148
1148
  hash: sha256:63a43957d858e68142cd20ea19cc0aa648e58979ff75e1bec1f4c99c7d5def9f
1149
1149
  type: script
@@ -1151,15 +1151,15 @@ files:
1151
1151
  - path: development/scripts/diff-generator.js
1152
1152
  hash: sha256:cad97b0096fc034fa6ed6cbd14a963abe32d880c1ce8034b6aa62af2e2239833
1153
1153
  type: script
1154
- size: 10667
1154
+ size: 11018
1155
1155
  - path: development/scripts/elicitation-engine.js
1156
1156
  hash: sha256:10f731ca75dbaf843997c4eb1a0e4619002463b6d697b8a145638260d90773ce
1157
1157
  type: script
1158
- size: 10583
1158
+ size: 10967
1159
1159
  - path: development/scripts/elicitation-session-manager.js
1160
1160
  hash: sha256:4385acbfd7c184a38e123f7a20b5e7b06c1d89d645a6e1bae1c5e0e4232d5181
1161
1161
  type: script
1162
- size: 8111
1162
+ size: 8410
1163
1163
  - path: development/scripts/generate-greeting.js
1164
1164
  hash: sha256:6ba79e9ba4d0e1ca7e47e1dd53c8087c46e28a3e951d41fde3a88bf329c2d7a7
1165
1165
  type: script
@@ -1167,7 +1167,7 @@ files:
1167
1167
  - path: development/scripts/git-wrapper.js
1168
1168
  hash: sha256:2cc481d4cdaf2f34f6c907c54dcc6168f26859de3d1d3d71a6caf7a50de30e8c
1169
1169
  type: script
1170
- size: 11874
1170
+ size: 12335
1171
1171
  - path: development/scripts/greeting-builder.js
1172
1172
  hash: sha256:a4a4ff094d41daf5840f55f807a775f698cb892e8c5d79f93148d4b437b0dadd
1173
1173
  type: script
@@ -1183,11 +1183,11 @@ files:
1183
1183
  - path: development/scripts/manifest-preview.js
1184
1184
  hash: sha256:caccc28155efee736533622e3bc62c67abb9721e1f4e9bf761ef02f8d8a37026
1185
1185
  type: script
1186
- size: 7527
1186
+ size: 7771
1187
1187
  - path: development/scripts/metrics-tracker.js
1188
1188
  hash: sha256:e08baea0b02b2f54973794f9df786cee2432a98bd0ba0290e3922b025e629fef
1189
1189
  type: script
1190
- size: 21726
1190
+ size: 22501
1191
1191
  - path: development/scripts/migrate-task-to-v2.js
1192
1192
  hash: sha256:50d0affb4b69de2237ec43c0a89d39d64faa40d25b76835d7ab8907553b4dc54
1193
1193
  type: script
@@ -1195,15 +1195,15 @@ files:
1195
1195
  - path: development/scripts/modification-validator.js
1196
1196
  hash: sha256:dc4d46220c92b968f4a9f18aebcf91fdf09bb01a2c7a40ffc46f696b2dc332ec
1197
1197
  type: script
1198
- size: 16486
1198
+ size: 17040
1199
1199
  - path: development/scripts/pattern-learner.js
1200
1200
  hash: sha256:5bbc3f6f52e8fc6b65a2db072670e219f2e64e4cacfc448ccb839d3b4077493d
1201
1201
  type: script
1202
- size: 35067
1202
+ size: 36291
1203
1203
  - path: development/scripts/performance-analyzer.js
1204
1204
  hash: sha256:6f59e8306afbbdae2795efc02ce21dfe336927526e99b5a40bddf37368a4614d
1205
1205
  type: script
1206
- size: 23410
1206
+ size: 24167
1207
1207
  - path: development/scripts/populate-entity-registry.js
1208
1208
  hash: sha256:836f1261d296a949eb0c6d2e754afc1115854a39cff8927c82c6efd6fd693290
1209
1209
  type: script
@@ -1211,15 +1211,15 @@ files:
1211
1211
  - path: development/scripts/refactoring-suggester.js
1212
1212
  hash: sha256:d5183f79fae9dc4bf4d3c9136b3622e43a63643a7df622742c350931e45f18f4
1213
1213
  type: script
1214
- size: 34675
1214
+ size: 35813
1215
1215
  - path: development/scripts/rollback-handler.js
1216
1216
  hash: sha256:b18a9451fa3f8919733251857dbad2bc4b7ecbf782e6c114b88bc867358421a9
1217
1217
  type: script
1218
- size: 16558
1218
+ size: 17088
1219
1219
  - path: development/scripts/security-checker.js
1220
1220
  hash: sha256:8eb3952f865a045b2c7dfd9c3be42b42a97a7cf6d7cef8ac31002ab093c8bac0
1221
1221
  type: script
1222
- size: 9520
1222
+ size: 9878
1223
1223
  - path: development/scripts/skill-validator.js
1224
1224
  hash: sha256:1ce0d66fad12c9502ced60df2294a3002ee04c21a9d4b1607f57b237cbe057d6
1225
1225
  type: script
@@ -1287,15 +1287,15 @@ files:
1287
1287
  - path: development/scripts/template-engine.js
1288
1288
  hash: sha256:f388469146acad7c028190c8ca54286978e3db7da1dc1e214f1bf4bd03060fe0
1289
1289
  type: script
1290
- size: 6957
1290
+ size: 7196
1291
1291
  - path: development/scripts/template-validator.js
1292
1292
  hash: sha256:9f9039281dd3b8ca3fd8de29ae946b000f8235b10cf294a01d0cf1bf109356d8
1293
1293
  type: script
1294
- size: 8331
1294
+ size: 8609
1295
1295
  - path: development/scripts/test-generator.js
1296
1296
  hash: sha256:e552a212d859b0d71a141c219babc421d053530bbd2d3758b68ff0651c014aef
1297
1297
  type: script
1298
- size: 24936
1298
+ size: 25779
1299
1299
  - path: development/scripts/test-greeting-system.js
1300
1300
  hash: sha256:a4b842ae6d1f7ea5224bd789e258b8dcda1b2e16b41c25f0cc603055eb091bda
1301
1301
  type: script
@@ -1303,7 +1303,7 @@ files:
1303
1303
  - path: development/scripts/transaction-manager.js
1304
1304
  hash: sha256:c9a769a030b1357208852a1ac4a0cce756a2f3ba6b541a21699cf19be7472023
1305
1305
  type: script
1306
- size: 17607
1306
+ size: 18196
1307
1307
  - path: development/scripts/unified-activation-pipeline.js
1308
1308
  hash: sha256:c3a42ca88075291e67531301a5788d2f6e0e19dee20cde940e7b0c48e9bcade8
1309
1309
  type: script
@@ -1311,11 +1311,11 @@ files:
1311
1311
  - path: development/scripts/usage-tracker.js
1312
1312
  hash: sha256:b3079713787de7c6ac38a742255861f04e8359ef1b227836040920a64b7e8aac
1313
1313
  type: script
1314
- size: 19465
1314
+ size: 20138
1315
1315
  - path: development/scripts/validate-filenames.js
1316
1316
  hash: sha256:20c20726b2f25ccef2ce301d421678a7c03e010c49469873b01ce1686dd66d8a
1317
1317
  type: script
1318
- size: 6247
1318
+ size: 6473
1319
1319
  - path: development/scripts/validate-task-v2.js
1320
1320
  hash: sha256:5beacac341075d9ad7c393f1464b881c8c1d296da7fe1e97a4d4c97ff0208175
1321
1321
  type: script
@@ -1327,7 +1327,7 @@ files:
1327
1327
  - path: development/scripts/version-tracker.js
1328
1328
  hash: sha256:1c55ba6d8b2620c50546435231ac1b678e3f843627df326df8132182c0738801
1329
1329
  type: script
1330
- size: 15887
1330
+ size: 16413
1331
1331
  - path: development/scripts/workflow-navigator.js
1332
1332
  hash: sha256:d81e53dd6f41663af7bb822bf52c7a52678bdfb9046d295cde0bbb8ad0696c0c
1333
1333
  type: script
@@ -1343,7 +1343,7 @@ files:
1343
1343
  - path: development/scripts/yaml-validator.js
1344
1344
  hash: sha256:b4a492a1dedbb11b6ddda9889ef6adb6cf792c2315c029ebc8c6b7ce7f57188f
1345
1345
  type: script
1346
- size: 10334
1346
+ size: 10730
1347
1347
  - path: development/tasks/add-mcp.md
1348
1348
  hash: sha256:8a19ae5f343b68d7aace6a8400a18349fb7b4ebc92cecdab33e2a7f4f0d88512
1349
1349
  type: task
@@ -2163,19 +2163,19 @@ files:
2163
2163
  - path: development/templates/service-template/__tests__/index.test.ts.hbs
2164
2164
  hash: sha256:04090b95bc0b606448c161d8e698fcf4d5c7da2517a5ac65663554a54c5acf91
2165
2165
  type: template
2166
- size: 9573
2166
+ size: 9810
2167
2167
  - path: development/templates/service-template/client.ts.hbs
2168
2168
  hash: sha256:3adbfb5a17d7f734a498bd2520fd44a1eadf05aad9f31b980f886ad6386394a6
2169
2169
  type: template
2170
- size: 11810
2170
+ size: 12213
2171
2171
  - path: development/templates/service-template/errors.ts.hbs
2172
2172
  hash: sha256:cc7139c0a2654dbd938ba79730fc97b6d30a79b8d1556fe43c61e0fca6553351
2173
2173
  type: template
2174
- size: 5213
2174
+ size: 5395
2175
2175
  - path: development/templates/service-template/index.ts.hbs
2176
2176
  hash: sha256:29d66364af401592a3ea0d5c4c4ebfb09e67373e62f21caac82b47b1bf78b3b8
2177
2177
  type: template
2178
- size: 3086
2178
+ size: 3206
2179
2179
  - path: development/templates/service-template/jest.config.js
2180
2180
  hash: sha256:1681bfd7fbc0d330d3487d3427515847c4d57ef300833f573af59e0ad69ed159
2181
2181
  type: template
@@ -2183,11 +2183,11 @@ files:
2183
2183
  - path: development/templates/service-template/package.json.hbs
2184
2184
  hash: sha256:7a25b377c72a98e44758afbe5a5b6d95971e47cca8e248b664ec63d7d1b7a590
2185
2185
  type: template
2186
- size: 2227
2186
+ size: 2314
2187
2187
  - path: development/templates/service-template/README.md.hbs
2188
2188
  hash: sha256:be6e4531587c37cc2ce1542dbd0c5487752d57f58c84e5dd23978d4173746c2e
2189
2189
  type: template
2190
- size: 3426
2190
+ size: 3584
2191
2191
  - path: development/templates/service-template/tsconfig.json
2192
2192
  hash: sha256:8b465fcbdd45c4d6821ba99aea62f2bd7998b1bca8de80486a1525e77d43c9a1
2193
2193
  type: template
@@ -2195,7 +2195,7 @@ files:
2195
2195
  - path: development/templates/service-template/types.ts.hbs
2196
2196
  hash: sha256:2338ab2e1ade619bf33a2c8f22b149402b513c05a6d1d8a805c5273c7233d151
2197
2197
  type: template
2198
- size: 2516
2198
+ size: 2661
2199
2199
  - path: development/templates/squad-template/agents/example-agent.yaml
2200
2200
  hash: sha256:824a1b349965e5d4ae85458c231b78260dc65497da75dada25b271f2cabbbe67
2201
2201
  type: agent
@@ -2203,7 +2203,7 @@ files:
2203
2203
  - path: development/templates/squad-template/LICENSE
2204
2204
  hash: sha256:ff7017aa403270cf2c440f5ccb4240d0b08e54d8bf8a0424d34166e8f3e10138
2205
2205
  type: template
2206
- size: 1071
2206
+ size: 1092
2207
2207
  - path: development/templates/squad-template/package.json
2208
2208
  hash: sha256:c276fe1a238d9587f72cba1fabafae4ca227d212128f7ad339210c3b6a1bd955
2209
2209
  type: template
@@ -2899,11 +2899,11 @@ files:
2899
2899
  - path: infrastructure/templates/aios-sync.yaml.template
2900
2900
  hash: sha256:4741cc143c6f26ff4c0a443ee01024433f5226e1d5715527c6570ddfe65aaed3
2901
2901
  type: template
2902
- size: 8660
2902
+ size: 8853
2903
2903
  - path: infrastructure/templates/coderabbit.yaml.template
2904
2904
  hash: sha256:a8f8e08e5c109b4c635a468e9b400bfb35361073de8a0883c5d4c9db84d7ed0a
2905
2905
  type: template
2906
- size: 8042
2906
+ size: 8321
2907
2907
  - path: infrastructure/templates/core-config/core-config-brownfield.tmpl.yaml
2908
2908
  hash: sha256:de54c7ffc1d785ff2aa43fb268c0dc0ad8a7215b77080a4dc0aaf5e49e02bc58
2909
2909
  type: template
@@ -2915,11 +2915,11 @@ files:
2915
2915
  - path: infrastructure/templates/github-workflows/ci.yml.template
2916
2916
  hash: sha256:ad7ea9f338b7bfec281a6136d40df3954cbaf239245e41e2eb227abf15d001d4
2917
2917
  type: template
2918
- size: 4920
2918
+ size: 5089
2919
2919
  - path: infrastructure/templates/github-workflows/pr-automation.yml.template
2920
2920
  hash: sha256:46c334bd347a0b36a8de55a4c1db2eb9e66b350555a50439b05000f05fbe307b
2921
2921
  type: template
2922
- size: 10609
2922
+ size: 10939
2923
2923
  - path: infrastructure/templates/github-workflows/README.md
2924
2924
  hash: sha256:a8a385cd8e3fca3300f3cc3442edfc70995b4aafb99d6e95a8194204705189f2
2925
2925
  type: template
@@ -2927,23 +2927,23 @@ files:
2927
2927
  - path: infrastructure/templates/github-workflows/release.yml.template
2928
2928
  hash: sha256:bd40c93023c56489a45690a5829beda662f738f0687beb46bef31475ceee8027
2929
2929
  type: template
2930
- size: 6595
2930
+ size: 6791
2931
2931
  - path: infrastructure/templates/gitignore/gitignore-aios-base.tmpl
2932
2932
  hash: sha256:eea52813b21c411ada64d2560913cc853a53b8d00ad916f0c9480cd11324b764
2933
2933
  type: template
2934
- size: 788
2934
+ size: 851
2935
2935
  - path: infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl
2936
2936
  hash: sha256:da10b4280d52fe7a76649d11ed9d72d452ece94bb5d46e06705ca585589d9e20
2937
2937
  type: template
2938
- size: 488
2938
+ size: 506
2939
2939
  - path: infrastructure/templates/gitignore/gitignore-node.tmpl
2940
2940
  hash: sha256:46d261d54d9b57cdecd54ae2d6f19b9971b380316700824caf6026543b6afe5b
2941
2941
  type: template
2942
- size: 951
2942
+ size: 1036
2943
2943
  - path: infrastructure/templates/gitignore/gitignore-python.tmpl
2944
2944
  hash: sha256:f8da7c8fb5888a59332e63ea5137ed808f6cf1075fd175104a79c44479c749ba
2945
2945
  type: template
2946
- size: 1580
2946
+ size: 1725
2947
2947
  - path: infrastructure/templates/project-docs/coding-standards-tmpl.md
2948
2948
  hash: sha256:f5eeba2464907e57fad287d842febc64ad22d27f2d33ea2fe74151646a57aaee
2949
2949
  type: template
@@ -3035,47 +3035,47 @@ files:
3035
3035
  - path: manifests/schema/manifest-schema.json
3036
3036
  hash: sha256:39678986089918893f309a2469fa0615beb82b5c6f1e16e2f9b40bcac6465195
3037
3037
  type: manifest
3038
- size: 5291
3038
+ size: 5481
3039
3039
  - path: monitor/hooks/lib/__init__.py
3040
3040
  hash: sha256:26147f29392400ed7bb87ca750af1c1bdd191193990463952282eaaffc1f35a2
3041
3041
  type: monitor
3042
- size: 29
3042
+ size: 30
3043
3043
  - path: monitor/hooks/lib/enrich.py
3044
3044
  hash: sha256:f796c327b54e5282027babe325f9629ad21440275c2a3fdb277840898bdf3653
3045
3045
  type: monitor
3046
- size: 1644
3046
+ size: 1702
3047
3047
  - path: monitor/hooks/lib/send_event.py
3048
3048
  hash: sha256:2ec9ec9abfded4c0b67a49429d192f171758c0fb4e8a1bf1e47f2c8e32aa47ea
3049
3049
  type: monitor
3050
- size: 1190
3050
+ size: 1237
3051
3051
  - path: monitor/hooks/notification.py
3052
3052
  hash: sha256:ae9e484772e090c557fcda3be46d19b9c48d7bec9789652cbfec17d7616a956f
3053
3053
  type: monitor
3054
- size: 499
3054
+ size: 528
3055
3055
  - path: monitor/hooks/post_tool_use.py
3056
3056
  hash: sha256:5599de99f3292ce7b57ad754abe9a0bfb462b1babc95a2bab22016528eb2515b
3057
3057
  type: monitor
3058
- size: 1140
3058
+ size: 1185
3059
3059
  - path: monitor/hooks/pre_compact.py
3060
3060
  hash: sha256:df11373948b986814a7602a9dd61a384055de13392a7aa246063b4c4ea75fddd
3061
3061
  type: monitor
3062
- size: 500
3062
+ size: 529
3063
3063
  - path: monitor/hooks/pre_tool_use.py
3064
3064
  hash: sha256:e4a7bbd6cbb6e17b819f629ef88a24947612f4dffbe19fab897b9ff4a409efc2
3065
3065
  type: monitor
3066
- size: 981
3066
+ size: 1021
3067
3067
  - path: monitor/hooks/stop.py
3068
3068
  hash: sha256:9737bcedd34cfdf459641e2f0e74eacf7a56d0e7ad0fb05a32a40c0afc87443e
3069
3069
  type: monitor
3070
- size: 490
3070
+ size: 519
3071
3071
  - path: monitor/hooks/subagent_stop.py
3072
3072
  hash: sha256:cfe2b5361a0b668f90d738bcd18f478e2ea49459304b203608377a1226d2bebb
3073
3073
  type: monitor
3074
- size: 512
3074
+ size: 541
3075
3075
  - path: monitor/hooks/user_prompt_submit.py
3076
3076
  hash: sha256:f8f9a7550121832811c2d2d12b93d5d42fa7180ddec85c49ae3841c9d259ab76
3077
3077
  type: monitor
3078
- size: 818
3078
+ size: 856
3079
3079
  - path: package.json
3080
3080
  hash: sha256:dff580c83cc1554c75162c9cabb711b5cd85e679c9c8f4968ee74499e99de0c0
3081
3081
  type: other
@@ -3223,7 +3223,7 @@ files:
3223
3223
  - path: product/templates/adr.hbs
3224
3224
  hash: sha256:401c2a3ce81905cd4665439d4e2afece92a7c93a1499a927b3522272e6a58027
3225
3225
  type: template
3226
- size: 2212
3226
+ size: 2337
3227
3227
  - path: product/templates/agent-template.yaml
3228
3228
  hash: sha256:4ad34c41d9e7546c208e4680faa8a30969d6505d59d17111b27d2963a8a22e73
3229
3229
  type: template
@@ -3263,7 +3263,7 @@ files:
3263
3263
  - path: product/templates/component-react-tmpl.tsx
3264
3264
  hash: sha256:bfbfab502da2064527948f70c9a59174f20b81472ac2ea6eb999f02c9bcaf3df
3265
3265
  type: template
3266
- size: 2588
3266
+ size: 2686
3267
3267
  - path: product/templates/current-approach-tmpl.md
3268
3268
  hash: sha256:ec258049a5cda587b24523faf6b26ed0242765f4e732af21c4f42e42cf326714
3269
3269
  type: template
@@ -3271,7 +3271,7 @@ files:
3271
3271
  - path: product/templates/dbdr.hbs
3272
3272
  hash: sha256:67de8a2a0fd90ed71111cb31a4c84209ff8b09b4ae263158a0f545ae3ac84cc5
3273
3273
  type: template
3274
- size: 4139
3274
+ size: 4380
3275
3275
  - path: product/templates/design-story-tmpl.yaml
3276
3276
  hash: sha256:bbf1a20323b217b668c8466307988e505e49f4e472df47b6411b6037511c9b7d
3277
3277
  type: template
@@ -3299,35 +3299,35 @@ files:
3299
3299
  - path: product/templates/engine/schemas/adr.schema.json
3300
3300
  hash: sha256:2cd4c78d9c2664695df163d033709122b0b37c70fd4f92c9bf4ea17503d4db0b
3301
3301
  type: template
3302
- size: 2915
3302
+ size: 3017
3303
3303
  - path: product/templates/engine/schemas/dbdr.schema.json
3304
3304
  hash: sha256:9d5f4e3774830f545617e801ec24ea6649afb2ab217fffda4f6fa3ec5136f2ea
3305
3305
  type: template
3306
- size: 5731
3306
+ size: 5936
3307
3307
  - path: product/templates/engine/schemas/epic.schema.json
3308
3308
  hash: sha256:c2e898276cf89338b9fa8d619c18c40d1ed1e4390d63cc779b439c37380a5317
3309
3309
  type: template
3310
- size: 4491
3310
+ size: 4666
3311
3311
  - path: product/templates/engine/schemas/pmdr.schema.json
3312
3312
  hash: sha256:3e3883d552f2fa0f1b9cd6d1621e9788858d81f2c9faa66fbdfc20744cddf855
3313
3313
  type: template
3314
- size: 4789
3314
+ size: 4964
3315
3315
  - path: product/templates/engine/schemas/prd-v2.schema.json
3316
3316
  hash: sha256:b6a5fcb6aa6ba4417f55673f2432fdc96d3b178ccd494b56796b74271cbe9ebe
3317
3317
  type: template
3318
- size: 7822
3318
+ size: 8122
3319
3319
  - path: product/templates/engine/schemas/prd.schema.json
3320
3320
  hash: sha256:a68c16308518ee12339d63659bef8b145d0101dcf7fe1e4e06ccad1c20a4b61a
3321
3321
  type: template
3322
- size: 4306
3322
+ size: 4458
3323
3323
  - path: product/templates/engine/schemas/story.schema.json
3324
3324
  hash: sha256:23d037e35a7ebecc6af86ef30223b2c20e3a938a4c9f4b6ca18a8cec6646a005
3325
3325
  type: template
3326
- size: 5884
3326
+ size: 6106
3327
3327
  - path: product/templates/engine/schemas/task.schema.json
3328
3328
  hash: sha256:01ed077417b76d54bb2aa93f94d3ca4b9587bb957dd269ff31f7f707f1efda37
3329
3329
  type: template
3330
- size: 3856
3330
+ size: 4010
3331
3331
  - path: product/templates/engine/validator.js
3332
3332
  hash: sha256:159422012586b65933dca98f7cc0274ebc8a867c79533340b548fc9eaca41944
3333
3333
  type: template
@@ -3335,11 +3335,11 @@ files:
3335
3335
  - path: product/templates/epic.hbs
3336
3336
  hash: sha256:abc175a126ff12aaf8fc06201fd36ea8415806d49b95bb86197829997c17a610
3337
3337
  type: template
3338
- size: 3868
3338
+ size: 4080
3339
3339
  - path: product/templates/eslintrc-security.json
3340
3340
  hash: sha256:657d40117261d6a52083984d29f9f88e79040926a64aa4c2058a602bfe91e0d5
3341
3341
  type: template
3342
- size: 909
3342
+ size: 941
3343
3343
  - path: product/templates/front-end-architecture-tmpl.yaml
3344
3344
  hash: sha256:de0432b4f98236c3a1d6cc9975b90fbc57727653bdcf6132355c0bcf0b4dbb9c
3345
3345
  type: template
@@ -3359,11 +3359,11 @@ files:
3359
3359
  - path: product/templates/github-actions-cd.yml
3360
3360
  hash: sha256:c9ef00ed1a691d634bb6a4927b038c96dcbc65e4337432eb2075e9ef302af85b
3361
3361
  type: template
3362
- size: 6992
3362
+ size: 7204
3363
3363
  - path: product/templates/github-actions-ci.yml
3364
3364
  hash: sha256:b64abbfdaf10b61d28ce0391fbcc2c54136cf14f4996244808341bb5ced0168e
3365
3365
  type: template
3366
- size: 4492
3366
+ size: 4664
3367
3367
  - path: product/templates/github-pr-template.md
3368
3368
  hash: sha256:f04dc7a2a98f3ada40a54a62d93ed2ee289c4b11032ef420acf10fbfe19d1dc5
3369
3369
  type: template
@@ -3451,7 +3451,7 @@ files:
3451
3451
  - path: product/templates/pmdr.hbs
3452
3452
  hash: sha256:90cb8dcb877938af538a6c7470233a0d908dc1a1041cffe845ad196887ab13a5
3453
3453
  type: template
3454
- size: 3239
3454
+ size: 3425
3455
3455
  - path: product/templates/prd-tmpl.yaml
3456
3456
  hash: sha256:f94734d78f9df14e0236719dfc63666a4506bcc076fbcdb5e5c5e5e1a3660876
3457
3457
  type: template
@@ -3459,11 +3459,11 @@ files:
3459
3459
  - path: product/templates/prd-v2.0.hbs
3460
3460
  hash: sha256:6a716525255c1236d75bfc1e2be6005006ba827fdf2b4d55e7453140a13df71a
3461
3461
  type: template
3462
- size: 4512
3462
+ size: 4728
3463
3463
  - path: product/templates/prd.hbs
3464
3464
  hash: sha256:b110a469ae0ba12ccaf5cae59daefbf08ba6e1b96cb6f1d5afc49c1a2d6739d3
3465
3465
  type: template
3466
- size: 3425
3466
+ size: 3626
3467
3467
  - path: product/templates/project-brief-tmpl.yaml
3468
3468
  hash: sha256:b8d388268c24dc5018f48a87036d591b11cb122fafe9b59c17809b06ea5d9d58
3469
3469
  type: template
@@ -3487,7 +3487,7 @@ files:
3487
3487
  - path: product/templates/shock-report-tmpl.html
3488
3488
  hash: sha256:f6b3984683b9c0e22550aaab63f002c01d6d9d3fe2af0e344f7dafbd444e4a19
3489
3489
  type: template
3490
- size: 16665
3490
+ size: 17167
3491
3491
  - path: product/templates/spec-tmpl.md
3492
3492
  hash: sha256:5f3a97a1d4cc5c0fe81432d942cdd3ac2ec43c6785c3594ba3e1070601719718
3493
3493
  type: template
@@ -3503,7 +3503,7 @@ files:
3503
3503
  - path: product/templates/story.hbs
3504
3504
  hash: sha256:5a51064b2e371b3e2b22080df2993da0c2517c442c80e3cada3006387a4d29ab
3505
3505
  type: template
3506
- size: 5583
3506
+ size: 5846
3507
3507
  - path: product/templates/task-execution-report.md
3508
3508
  hash: sha256:6ca0126115ddb0c31b584a964a9938dbbbb8e187e02d6001bd5b69d3d4359992
3509
3509
  type: template
@@ -3515,71 +3515,71 @@ files:
3515
3515
  - path: product/templates/task.hbs
3516
3516
  hash: sha256:6aacffe2c92bf87d3040f2de75f45a586d819f1f73fcdabfadeca6ecb30f1f20
3517
3517
  type: template
3518
- size: 2705
3518
+ size: 2875
3519
3519
  - path: product/templates/tmpl-comment-on-examples.sql
3520
3520
  hash: sha256:254002c3fbc63cfcc5848b1d4b15822ce240bf5f57e6a1c8bb984e797edc2691
3521
3521
  type: template
3522
- size: 6215
3522
+ size: 6373
3523
3523
  - path: product/templates/tmpl-migration-script.sql
3524
3524
  hash: sha256:44ef63ea475526d21a11e3c667c9fdb78a9fddace80fdbaa2312b7f2724fbbb5
3525
3525
  type: template
3526
- size: 2947
3526
+ size: 3038
3527
3527
  - path: product/templates/tmpl-rls-granular-policies.sql
3528
3528
  hash: sha256:36c2fd8c6d9eebb5d164acb0fb0c87bc384d389264b4429ce21e77e06318f5f3
3529
3529
  type: template
3530
- size: 3322
3530
+ size: 3426
3531
3531
  - path: product/templates/tmpl-rls-kiss-policy.sql
3532
3532
  hash: sha256:5210d37fce62e5a9a00e8d5366f5f75653cd518be73fbf96333ed8a6712453c7
3533
3533
  type: template
3534
- size: 299
3534
+ size: 309
3535
3535
  - path: product/templates/tmpl-rls-roles.sql
3536
3536
  hash: sha256:2d032a608a8e87440c3a430c7d69ddf9393d8813d8d4129270f640dd847425c3
3537
3537
  type: template
3538
- size: 4592
3538
+ size: 4727
3539
3539
  - path: product/templates/tmpl-rls-simple.sql
3540
3540
  hash: sha256:f67af0fa1cdd2f2af9eab31575ac3656d82457421208fd9ccb8b57ca9785275e
3541
3541
  type: template
3542
- size: 2915
3542
+ size: 2992
3543
3543
  - path: product/templates/tmpl-rls-tenant.sql
3544
3544
  hash: sha256:36629ed87a2c72311809cc3fb96298b6f38716bba35bc56c550ac39d3321757a
3545
3545
  type: template
3546
- size: 4978
3546
+ size: 5130
3547
3547
  - path: product/templates/tmpl-rollback-script.sql
3548
3548
  hash: sha256:8b84046a98f1163faf7350322f43831447617c5a63a94c88c1a71b49804e022b
3549
3549
  type: template
3550
- size: 2657
3550
+ size: 2734
3551
3551
  - path: product/templates/tmpl-seed-data.sql
3552
3552
  hash: sha256:a65e73298f46cd6a8e700f29b9d8d26e769e12a57751a943a63fd0fe15768615
3553
3553
  type: template
3554
- size: 5576
3554
+ size: 5716
3555
3555
  - path: product/templates/tmpl-smoke-test.sql
3556
3556
  hash: sha256:aee7e48bb6d9c093769dee215cacc9769939501914e20e5ea8435b25fad10f3c
3557
3557
  type: template
3558
- size: 723
3558
+ size: 739
3559
3559
  - path: product/templates/tmpl-staging-copy-merge.sql
3560
3560
  hash: sha256:55988caeb47cc04261665ba7a37f4caa2aa5fac2e776fdbc5964e0587af24450
3561
3561
  type: template
3562
- size: 4081
3562
+ size: 4220
3563
3563
  - path: product/templates/tmpl-stored-proc.sql
3564
3564
  hash: sha256:2b205ff99dc0adfade6047a4d79f5b50109e50ceb45386e5c886437692c7a2a3
3565
3565
  type: template
3566
- size: 3839
3566
+ size: 3979
3567
3567
  - path: product/templates/tmpl-trigger.sql
3568
3568
  hash: sha256:93abdc92e1b475d1370094e69a9d1b18afd804da6acb768b878355c798bd8e0e
3569
3569
  type: template
3570
- size: 5272
3570
+ size: 5424
3571
3571
  - path: product/templates/tmpl-view-materialized.sql
3572
3572
  hash: sha256:47935510f03d4ad9b2200748e65441ce6c2d6a7c74750395eca6831d77c48e91
3573
3573
  type: template
3574
- size: 4363
3574
+ size: 4496
3575
3575
  - path: product/templates/tmpl-view.sql
3576
3576
  hash: sha256:22557b076003a856b32397f05fa44245a126521de907058a95e14dd02da67aff
3577
3577
  type: template
3578
- size: 4916
3578
+ size: 5093
3579
3579
  - path: product/templates/token-exports-css-tmpl.css
3580
3580
  hash: sha256:d937b8d61cdc9e5b10fdff871c6cb41c9f756004d060d671e0ae26624a047f62
3581
3581
  type: template
3582
- size: 5798
3582
+ size: 6038
3583
3583
  - path: product/templates/token-exports-tailwind-tmpl.js
3584
3584
  hash: sha256:1e99f1be493b4b3dac1b2a9abc1ae1dd9146f26f86bed229c232690114c3a377
3585
3585
  type: template
@@ -3783,7 +3783,7 @@ files:
3783
3783
  - path: scripts/migrate-framework-docs.sh
3784
3784
  hash: sha256:b453931ec91e85b7f2e71d8508960e742aaa85fa44a89221ff257d472ab61ca3
3785
3785
  type: script
3786
- size: 9488
3786
+ size: 9788
3787
3787
  - path: scripts/pm.sh
3788
3788
  hash: sha256:ee05da6dc99078b710a34f9fb420684ff19876bcc0322571f1057a56cbbb6011
3789
3789
  type: script