aios-core 4.1.0 → 4.2.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 (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/entity-registry.yaml +208 -8
  5. package/.aios-core/data/registry-update-log.jsonl +165 -0
  6. package/.aios-core/development/scripts/approval-workflow.js +642 -642
  7. package/.aios-core/development/scripts/backup-manager.js +606 -606
  8. package/.aios-core/development/scripts/branch-manager.js +389 -389
  9. package/.aios-core/development/scripts/code-quality-improver.js +1311 -1311
  10. package/.aios-core/development/scripts/commit-message-generator.js +849 -849
  11. package/.aios-core/development/scripts/conflict-resolver.js +674 -674
  12. package/.aios-core/development/scripts/dependency-analyzer.js +637 -637
  13. package/.aios-core/development/scripts/diff-generator.js +351 -351
  14. package/.aios-core/development/scripts/elicitation-engine.js +384 -384
  15. package/.aios-core/development/scripts/elicitation-session-manager.js +299 -299
  16. package/.aios-core/development/scripts/git-wrapper.js +461 -461
  17. package/.aios-core/development/scripts/manifest-preview.js +244 -244
  18. package/.aios-core/development/scripts/metrics-tracker.js +775 -775
  19. package/.aios-core/development/scripts/modification-validator.js +554 -554
  20. package/.aios-core/development/scripts/pattern-learner.js +1224 -1224
  21. package/.aios-core/development/scripts/performance-analyzer.js +757 -757
  22. package/.aios-core/development/scripts/refactoring-suggester.js +1138 -1138
  23. package/.aios-core/development/scripts/rollback-handler.js +530 -530
  24. package/.aios-core/development/scripts/security-checker.js +358 -358
  25. package/.aios-core/development/scripts/template-engine.js +239 -239
  26. package/.aios-core/development/scripts/template-validator.js +278 -278
  27. package/.aios-core/development/scripts/test-generator.js +843 -843
  28. package/.aios-core/development/scripts/transaction-manager.js +589 -589
  29. package/.aios-core/development/scripts/usage-tracker.js +673 -673
  30. package/.aios-core/development/scripts/validate-filenames.js +226 -226
  31. package/.aios-core/development/scripts/version-tracker.js +526 -526
  32. package/.aios-core/development/scripts/yaml-validator.js +396 -396
  33. package/.aios-core/development/tasks/validate-next-story.md +99 -2
  34. package/.aios-core/development/templates/service-template/README.md.hbs +158 -158
  35. package/.aios-core/development/templates/service-template/__tests__/index.test.ts.hbs +237 -237
  36. package/.aios-core/development/templates/service-template/client.ts.hbs +403 -403
  37. package/.aios-core/development/templates/service-template/errors.ts.hbs +182 -182
  38. package/.aios-core/development/templates/service-template/index.ts.hbs +120 -120
  39. package/.aios-core/development/templates/service-template/package.json.hbs +87 -87
  40. package/.aios-core/development/templates/service-template/types.ts.hbs +145 -145
  41. package/.aios-core/development/templates/squad-template/LICENSE +21 -21
  42. package/.aios-core/docs/SHARD-TRANSLATION-GUIDE.md +335 -0
  43. package/.aios-core/docs/component-creation-guide.md +458 -0
  44. package/.aios-core/docs/session-update-pattern.md +307 -0
  45. package/.aios-core/docs/standards/AIOS-FRAMEWORK-MASTER.md +1963 -0
  46. package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO-V2.1-SUMMARY.md +1190 -0
  47. package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO-V2.1.md +439 -0
  48. package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO.md +5398 -0
  49. package/.aios-core/docs/standards/V3-ARCHITECTURAL-DECISIONS.md +523 -0
  50. package/.aios-core/docs/template-syntax.md +267 -0
  51. package/.aios-core/docs/troubleshooting-guide.md +625 -0
  52. package/.aios-core/infrastructure/templates/aios-sync.yaml.template +193 -193
  53. package/.aios-core/infrastructure/templates/coderabbit.yaml.template +279 -279
  54. package/.aios-core/infrastructure/templates/github-workflows/ci.yml.template +169 -169
  55. package/.aios-core/infrastructure/templates/github-workflows/pr-automation.yml.template +330 -330
  56. package/.aios-core/infrastructure/templates/github-workflows/release.yml.template +196 -196
  57. package/.aios-core/infrastructure/templates/gitignore/gitignore-aios-base.tmpl +63 -63
  58. package/.aios-core/infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl +18 -18
  59. package/.aios-core/infrastructure/templates/gitignore/gitignore-node.tmpl +85 -85
  60. package/.aios-core/infrastructure/templates/gitignore/gitignore-python.tmpl +145 -145
  61. package/.aios-core/infrastructure/tests/utilities-audit-results.json +501 -0
  62. package/.aios-core/install-manifest.yaml +101 -101
  63. package/.aios-core/local-config.yaml.template +70 -70
  64. package/.aios-core/manifests/agents.csv +29 -0
  65. package/.aios-core/manifests/schema/manifest-schema.json +190 -190
  66. package/.aios-core/manifests/tasks.csv +198 -0
  67. package/.aios-core/manifests/workers.csv +204 -0
  68. package/.aios-core/monitor/hooks/lib/__init__.py +1 -1
  69. package/.aios-core/monitor/hooks/lib/enrich.py +58 -58
  70. package/.aios-core/monitor/hooks/lib/send_event.py +47 -47
  71. package/.aios-core/monitor/hooks/notification.py +29 -29
  72. package/.aios-core/monitor/hooks/post_tool_use.py +45 -45
  73. package/.aios-core/monitor/hooks/pre_compact.py +29 -29
  74. package/.aios-core/monitor/hooks/pre_tool_use.py +40 -40
  75. package/.aios-core/monitor/hooks/stop.py +29 -29
  76. package/.aios-core/monitor/hooks/subagent_stop.py +29 -29
  77. package/.aios-core/monitor/hooks/user_prompt_submit.py +38 -38
  78. package/.aios-core/product/templates/adr.hbs +125 -125
  79. package/.aios-core/product/templates/component-react-tmpl.tsx +98 -98
  80. package/.aios-core/product/templates/dbdr.hbs +241 -241
  81. package/.aios-core/product/templates/engine/schemas/adr.schema.json +102 -102
  82. package/.aios-core/product/templates/engine/schemas/dbdr.schema.json +205 -205
  83. package/.aios-core/product/templates/engine/schemas/epic.schema.json +175 -175
  84. package/.aios-core/product/templates/engine/schemas/pmdr.schema.json +175 -175
  85. package/.aios-core/product/templates/engine/schemas/prd-v2.schema.json +300 -300
  86. package/.aios-core/product/templates/engine/schemas/prd.schema.json +152 -152
  87. package/.aios-core/product/templates/engine/schemas/story.schema.json +222 -222
  88. package/.aios-core/product/templates/engine/schemas/task.schema.json +154 -154
  89. package/.aios-core/product/templates/epic.hbs +212 -212
  90. package/.aios-core/product/templates/eslintrc-security.json +32 -32
  91. package/.aios-core/product/templates/github-actions-cd.yml +212 -212
  92. package/.aios-core/product/templates/github-actions-ci.yml +172 -172
  93. package/.aios-core/product/templates/pmdr.hbs +186 -186
  94. package/.aios-core/product/templates/prd-v2.0.hbs +216 -216
  95. package/.aios-core/product/templates/prd.hbs +201 -201
  96. package/.aios-core/product/templates/shock-report-tmpl.html +502 -502
  97. package/.aios-core/product/templates/story.hbs +263 -263
  98. package/.aios-core/product/templates/task.hbs +170 -170
  99. package/.aios-core/product/templates/tmpl-comment-on-examples.sql +158 -158
  100. package/.aios-core/product/templates/tmpl-migration-script.sql +91 -91
  101. package/.aios-core/product/templates/tmpl-rls-granular-policies.sql +104 -104
  102. package/.aios-core/product/templates/tmpl-rls-kiss-policy.sql +10 -10
  103. package/.aios-core/product/templates/tmpl-rls-roles.sql +135 -135
  104. package/.aios-core/product/templates/tmpl-rls-simple.sql +77 -77
  105. package/.aios-core/product/templates/tmpl-rls-tenant.sql +152 -152
  106. package/.aios-core/product/templates/tmpl-rollback-script.sql +77 -77
  107. package/.aios-core/product/templates/tmpl-seed-data.sql +140 -140
  108. package/.aios-core/product/templates/tmpl-smoke-test.sql +16 -16
  109. package/.aios-core/product/templates/tmpl-staging-copy-merge.sql +139 -139
  110. package/.aios-core/product/templates/tmpl-stored-proc.sql +140 -140
  111. package/.aios-core/product/templates/tmpl-trigger.sql +152 -152
  112. package/.aios-core/product/templates/tmpl-view-materialized.sql +133 -133
  113. package/.aios-core/product/templates/tmpl-view.sql +177 -177
  114. package/.aios-core/product/templates/token-exports-css-tmpl.css +240 -240
  115. package/.aios-core/quality/schemas/quality-metrics.schema.json +233 -233
  116. package/.aios-core/scripts/migrate-framework-docs.sh +300 -300
  117. package/.aios-core/scripts/pm.sh +0 -0
  118. package/.claude/hooks/enforce-architecture-first.py +196 -196
  119. package/.claude/hooks/mind-clone-governance.py +192 -192
  120. package/.claude/hooks/read-protection.py +151 -151
  121. package/.claude/hooks/slug-validation.py +176 -176
  122. package/.claude/hooks/sql-governance.py +182 -182
  123. package/.claude/hooks/write-path-validation.py +194 -194
  124. package/.claude/rules/agent-authority.md +105 -0
  125. package/.claude/rules/coderabbit-integration.md +93 -0
  126. package/.claude/rules/ids-principles.md +112 -0
  127. package/.claude/rules/story-lifecycle.md +139 -0
  128. package/.claude/rules/workflow-execution.md +150 -0
  129. package/LICENSE +48 -48
  130. package/bin/aios-minimal.js +0 -0
  131. package/bin/aios.js +0 -0
  132. package/package.json +1 -1
  133. package/packages/aios-install/bin/aios-install.js +0 -0
  134. package/packages/aios-install/bin/edmcp.js +0 -0
  135. package/packages/aios-pro-cli/bin/aios-pro.js +0 -0
  136. package/packages/installer/src/wizard/pro-setup.js +433 -49
  137. package/scripts/check-markdown-links.py +352 -352
  138. package/scripts/code-intel-health-check.js +343 -0
  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.1.0
11
- generated_at: "2026-02-15T20:41:18.885Z"
10
+ version: 4.2.0
11
+ generated_at: "2026-02-16T00:03:48.806Z"
12
12
  generator: scripts/generate-install-manifest.js
13
13
  file_count: 992
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
@@ -1013,9 +1013,9 @@ files:
1013
1013
  type: data
1014
1014
  size: 34744
1015
1015
  - path: data/entity-registry.yaml
1016
- hash: sha256:0954d1297befc4e1d0ceea3550a3c9c87b72859af4a7af4a96ba528f8506b321
1016
+ hash: sha256:252cf31cf2278333a33730ab7e70a4f4fe4d2cab7e0bc277245cad749feb5b34
1017
1017
  type: data
1018
- size: 279148
1018
+ size: 285624
1019
1019
  - path: data/learned-patterns.yaml
1020
1020
  hash: sha256:24ac0b160615583a0ff783d3da8af80b7f94191575d6db2054ec8e10a3f945dc
1021
1021
  type: data
@@ -1155,7 +1155,7 @@ files:
1155
1155
  - path: development/scripts/approval-workflow.js
1156
1156
  hash: sha256:10278d73d1904efcc0622c43ed07fa2434f6a96014f4d619dc503f078fdbbc99
1157
1157
  type: script
1158
- size: 21553
1158
+ size: 22195
1159
1159
  - path: development/scripts/audit-agent-config.js
1160
1160
  hash: sha256:861428491ec5bb6741877381fd7e8506b2150f8c81a00d061ae499b2480c524d
1161
1161
  type: script
@@ -1167,7 +1167,7 @@ files:
1167
1167
  - path: development/scripts/backup-manager.js
1168
1168
  hash: sha256:4784782f5856bab5b405b95798614baf6e868853348a3a1dcf261bccf9547fce
1169
1169
  type: script
1170
- size: 16662
1170
+ size: 17268
1171
1171
  - path: development/scripts/batch-update-agents-session-context.js
1172
1172
  hash: sha256:2f4c8b4f84b3cd86a5897909fcbb8d8c3ff4d48058fa9d04cbc924ab50f3fd32
1173
1173
  type: script
@@ -1175,19 +1175,19 @@ files:
1175
1175
  - path: development/scripts/branch-manager.js
1176
1176
  hash: sha256:2e6b1e434f3f5e2e1d1f1aec994c3fb56efccf7baacb4f188e769b13dabe03de
1177
1177
  type: script
1178
- size: 11536
1178
+ size: 11925
1179
1179
  - path: development/scripts/code-quality-improver.js
1180
1180
  hash: sha256:acdfea90590a2d0d566e720540a8aad4a360cd531c58ad4e67cc4126522b7455
1181
1181
  type: script
1182
- size: 39827
1182
+ size: 41138
1183
1183
  - path: development/scripts/commit-message-generator.js
1184
1184
  hash: sha256:2e75d22307d0e3823b7762a6aff18c4c3842a632f876069215a221bc053336dc
1185
1185
  type: script
1186
- size: 25369
1186
+ size: 26218
1187
1187
  - path: development/scripts/conflict-resolver.js
1188
1188
  hash: sha256:8971b9aca2ab23a9478ac70e59710ec843f483fcbe088371444f4fc9b56c5278
1189
1189
  type: script
1190
- size: 19188
1190
+ size: 19862
1191
1191
  - path: development/scripts/decision-context.js
1192
1192
  hash: sha256:ad19e9891fa3085ea1774a9d29efaaf871f13b361cd0691e844e3fd6a9c34ff3
1193
1193
  type: script
@@ -1207,7 +1207,7 @@ files:
1207
1207
  - path: development/scripts/dependency-analyzer.js
1208
1208
  hash: sha256:64d6433a789a68950758b467b47c8e4fb38cb4842ce5a3462bd3393d8553c9b2
1209
1209
  type: script
1210
- size: 18024
1210
+ size: 18661
1211
1211
  - path: development/scripts/dev-context-loader.js
1212
1212
  hash: sha256:63a43957d858e68142cd20ea19cc0aa648e58979ff75e1bec1f4c99c7d5def9f
1213
1213
  type: script
@@ -1215,15 +1215,15 @@ files:
1215
1215
  - path: development/scripts/diff-generator.js
1216
1216
  hash: sha256:cad97b0096fc034fa6ed6cbd14a963abe32d880c1ce8034b6aa62af2e2239833
1217
1217
  type: script
1218
- size: 10667
1218
+ size: 11018
1219
1219
  - path: development/scripts/elicitation-engine.js
1220
1220
  hash: sha256:10f731ca75dbaf843997c4eb1a0e4619002463b6d697b8a145638260d90773ce
1221
1221
  type: script
1222
- size: 10583
1222
+ size: 10967
1223
1223
  - path: development/scripts/elicitation-session-manager.js
1224
1224
  hash: sha256:4385acbfd7c184a38e123f7a20b5e7b06c1d89d645a6e1bae1c5e0e4232d5181
1225
1225
  type: script
1226
- size: 8111
1226
+ size: 8410
1227
1227
  - path: development/scripts/generate-greeting.js
1228
1228
  hash: sha256:49b857fe36a0216a0df8395a6847f14608bd6a228817276201d22598a6862a4f
1229
1229
  type: script
@@ -1231,7 +1231,7 @@ files:
1231
1231
  - path: development/scripts/git-wrapper.js
1232
1232
  hash: sha256:2cc481d4cdaf2f34f6c907c54dcc6168f26859de3d1d3d71a6caf7a50de30e8c
1233
1233
  type: script
1234
- size: 11874
1234
+ size: 12335
1235
1235
  - path: development/scripts/greeting-builder.js
1236
1236
  hash: sha256:a4a4ff094d41daf5840f55f807a775f698cb892e8c5d79f93148d4b437b0dadd
1237
1237
  type: script
@@ -1247,11 +1247,11 @@ files:
1247
1247
  - path: development/scripts/manifest-preview.js
1248
1248
  hash: sha256:caccc28155efee736533622e3bc62c67abb9721e1f4e9bf761ef02f8d8a37026
1249
1249
  type: script
1250
- size: 7527
1250
+ size: 7771
1251
1251
  - path: development/scripts/metrics-tracker.js
1252
1252
  hash: sha256:e08baea0b02b2f54973794f9df786cee2432a98bd0ba0290e3922b025e629fef
1253
1253
  type: script
1254
- size: 21726
1254
+ size: 22501
1255
1255
  - path: development/scripts/migrate-task-to-v2.js
1256
1256
  hash: sha256:50d0affb4b69de2237ec43c0a89d39d64faa40d25b76835d7ab8907553b4dc54
1257
1257
  type: script
@@ -1259,15 +1259,15 @@ files:
1259
1259
  - path: development/scripts/modification-validator.js
1260
1260
  hash: sha256:dc4d46220c92b968f4a9f18aebcf91fdf09bb01a2c7a40ffc46f696b2dc332ec
1261
1261
  type: script
1262
- size: 16486
1262
+ size: 17040
1263
1263
  - path: development/scripts/pattern-learner.js
1264
1264
  hash: sha256:5bbc3f6f52e8fc6b65a2db072670e219f2e64e4cacfc448ccb839d3b4077493d
1265
1265
  type: script
1266
- size: 35067
1266
+ size: 36291
1267
1267
  - path: development/scripts/performance-analyzer.js
1268
1268
  hash: sha256:6f59e8306afbbdae2795efc02ce21dfe336927526e99b5a40bddf37368a4614d
1269
1269
  type: script
1270
- size: 23410
1270
+ size: 24167
1271
1271
  - path: development/scripts/populate-entity-registry.js
1272
1272
  hash: sha256:836f1261d296a949eb0c6d2e754afc1115854a39cff8927c82c6efd6fd693290
1273
1273
  type: script
@@ -1275,15 +1275,15 @@ files:
1275
1275
  - path: development/scripts/refactoring-suggester.js
1276
1276
  hash: sha256:d5183f79fae9dc4bf4d3c9136b3622e43a63643a7df622742c350931e45f18f4
1277
1277
  type: script
1278
- size: 34675
1278
+ size: 35813
1279
1279
  - path: development/scripts/rollback-handler.js
1280
1280
  hash: sha256:b18a9451fa3f8919733251857dbad2bc4b7ecbf782e6c114b88bc867358421a9
1281
1281
  type: script
1282
- size: 16558
1282
+ size: 17088
1283
1283
  - path: development/scripts/security-checker.js
1284
1284
  hash: sha256:8eb3952f865a045b2c7dfd9c3be42b42a97a7cf6d7cef8ac31002ab093c8bac0
1285
1285
  type: script
1286
- size: 9520
1286
+ size: 9878
1287
1287
  - path: development/scripts/skill-validator.js
1288
1288
  hash: sha256:1ce0d66fad12c9502ced60df2294a3002ee04c21a9d4b1607f57b237cbe057d6
1289
1289
  type: script
@@ -1351,15 +1351,15 @@ files:
1351
1351
  - path: development/scripts/template-engine.js
1352
1352
  hash: sha256:f388469146acad7c028190c8ca54286978e3db7da1dc1e214f1bf4bd03060fe0
1353
1353
  type: script
1354
- size: 6957
1354
+ size: 7196
1355
1355
  - path: development/scripts/template-validator.js
1356
1356
  hash: sha256:9f9039281dd3b8ca3fd8de29ae946b000f8235b10cf294a01d0cf1bf109356d8
1357
1357
  type: script
1358
- size: 8331
1358
+ size: 8609
1359
1359
  - path: development/scripts/test-generator.js
1360
1360
  hash: sha256:e552a212d859b0d71a141c219babc421d053530bbd2d3758b68ff0651c014aef
1361
1361
  type: script
1362
- size: 24936
1362
+ size: 25779
1363
1363
  - path: development/scripts/test-greeting-system.js
1364
1364
  hash: sha256:a4b842ae6d1f7ea5224bd789e258b8dcda1b2e16b41c25f0cc603055eb091bda
1365
1365
  type: script
@@ -1367,7 +1367,7 @@ files:
1367
1367
  - path: development/scripts/transaction-manager.js
1368
1368
  hash: sha256:c9a769a030b1357208852a1ac4a0cce756a2f3ba6b541a21699cf19be7472023
1369
1369
  type: script
1370
- size: 17607
1370
+ size: 18196
1371
1371
  - path: development/scripts/unified-activation-pipeline.js
1372
1372
  hash: sha256:dd1ad8050ac6ea04ff634434be9b97f67239ee0a7342d669bc5618eb2b7a7f5b
1373
1373
  type: script
@@ -1375,11 +1375,11 @@ files:
1375
1375
  - path: development/scripts/usage-tracker.js
1376
1376
  hash: sha256:b3079713787de7c6ac38a742255861f04e8359ef1b227836040920a64b7e8aac
1377
1377
  type: script
1378
- size: 19465
1378
+ size: 20138
1379
1379
  - path: development/scripts/validate-filenames.js
1380
1380
  hash: sha256:20c20726b2f25ccef2ce301d421678a7c03e010c49469873b01ce1686dd66d8a
1381
1381
  type: script
1382
- size: 6247
1382
+ size: 6473
1383
1383
  - path: development/scripts/validate-task-v2.js
1384
1384
  hash: sha256:5beacac341075d9ad7c393f1464b881c8c1d296da7fe1e97a4d4c97ff0208175
1385
1385
  type: script
@@ -1391,7 +1391,7 @@ files:
1391
1391
  - path: development/scripts/version-tracker.js
1392
1392
  hash: sha256:1c55ba6d8b2620c50546435231ac1b678e3f843627df326df8132182c0738801
1393
1393
  type: script
1394
- size: 15887
1394
+ size: 16413
1395
1395
  - path: development/scripts/workflow-navigator.js
1396
1396
  hash: sha256:d81e53dd6f41663af7bb822bf52c7a52678bdfb9046d295cde0bbb8ad0696c0c
1397
1397
  type: script
@@ -1407,7 +1407,7 @@ files:
1407
1407
  - path: development/scripts/yaml-validator.js
1408
1408
  hash: sha256:b4a492a1dedbb11b6ddda9889ef6adb6cf792c2315c029ebc8c6b7ce7f57188f
1409
1409
  type: script
1410
- size: 10334
1410
+ size: 10730
1411
1411
  - path: development/tasks/add-mcp.md
1412
1412
  hash: sha256:8a19ae5f343b68d7aace6a8400a18349fb7b4ebc92cecdab33e2a7f4f0d88512
1413
1413
  type: task
@@ -2197,9 +2197,9 @@ files:
2197
2197
  type: task
2198
2198
  size: 3482
2199
2199
  - path: development/tasks/validate-next-story.md
2200
- hash: sha256:f834d96cc0f6a0e2aee46ce7b98192e0cea5847f442db0075e066ab6230c1774
2200
+ hash: sha256:b446e369fcad0d0fc2d50765d88bdf28f0b151466f39f822c223081d466eb78a
2201
2201
  type: task
2202
- size: 15871
2202
+ size: 20256
2203
2203
  - path: development/tasks/validate-tech-preset.md
2204
2204
  hash: sha256:1919c65909aab2b52a9d2f5c3e2c336711bc873d155707a654dc120ce7d18a25
2205
2205
  type: task
@@ -2231,19 +2231,19 @@ files:
2231
2231
  - path: development/templates/service-template/__tests__/index.test.ts.hbs
2232
2232
  hash: sha256:04090b95bc0b606448c161d8e698fcf4d5c7da2517a5ac65663554a54c5acf91
2233
2233
  type: template
2234
- size: 9573
2234
+ size: 9810
2235
2235
  - path: development/templates/service-template/client.ts.hbs
2236
2236
  hash: sha256:3adbfb5a17d7f734a498bd2520fd44a1eadf05aad9f31b980f886ad6386394a6
2237
2237
  type: template
2238
- size: 11810
2238
+ size: 12213
2239
2239
  - path: development/templates/service-template/errors.ts.hbs
2240
2240
  hash: sha256:cc7139c0a2654dbd938ba79730fc97b6d30a79b8d1556fe43c61e0fca6553351
2241
2241
  type: template
2242
- size: 5213
2242
+ size: 5395
2243
2243
  - path: development/templates/service-template/index.ts.hbs
2244
2244
  hash: sha256:29d66364af401592a3ea0d5c4c4ebfb09e67373e62f21caac82b47b1bf78b3b8
2245
2245
  type: template
2246
- size: 3086
2246
+ size: 3206
2247
2247
  - path: development/templates/service-template/jest.config.js
2248
2248
  hash: sha256:1681bfd7fbc0d330d3487d3427515847c4d57ef300833f573af59e0ad69ed159
2249
2249
  type: template
@@ -2251,11 +2251,11 @@ files:
2251
2251
  - path: development/templates/service-template/package.json.hbs
2252
2252
  hash: sha256:7a25b377c72a98e44758afbe5a5b6d95971e47cca8e248b664ec63d7d1b7a590
2253
2253
  type: template
2254
- size: 2227
2254
+ size: 2314
2255
2255
  - path: development/templates/service-template/README.md.hbs
2256
2256
  hash: sha256:be6e4531587c37cc2ce1542dbd0c5487752d57f58c84e5dd23978d4173746c2e
2257
2257
  type: template
2258
- size: 3426
2258
+ size: 3584
2259
2259
  - path: development/templates/service-template/tsconfig.json
2260
2260
  hash: sha256:8b465fcbdd45c4d6821ba99aea62f2bd7998b1bca8de80486a1525e77d43c9a1
2261
2261
  type: template
@@ -2263,7 +2263,7 @@ files:
2263
2263
  - path: development/templates/service-template/types.ts.hbs
2264
2264
  hash: sha256:2338ab2e1ade619bf33a2c8f22b149402b513c05a6d1d8a805c5273c7233d151
2265
2265
  type: template
2266
- size: 2516
2266
+ size: 2661
2267
2267
  - path: development/templates/squad-template/agents/example-agent.yaml
2268
2268
  hash: sha256:824a1b349965e5d4ae85458c231b78260dc65497da75dada25b271f2cabbbe67
2269
2269
  type: agent
@@ -2271,7 +2271,7 @@ files:
2271
2271
  - path: development/templates/squad-template/LICENSE
2272
2272
  hash: sha256:ff7017aa403270cf2c440f5ccb4240d0b08e54d8bf8a0424d34166e8f3e10138
2273
2273
  type: template
2274
- size: 1071
2274
+ size: 1092
2275
2275
  - path: development/templates/squad-template/package.json
2276
2276
  hash: sha256:c276fe1a238d9587f72cba1fabafae4ca227d212128f7ad339210c3b6a1bd955
2277
2277
  type: template
@@ -2979,11 +2979,11 @@ files:
2979
2979
  - path: infrastructure/templates/aios-sync.yaml.template
2980
2980
  hash: sha256:3052ef8c6e541068461818d26eb54b7cd8ee5e0dd279f0ab9e09a169b1a48f3b
2981
2981
  type: template
2982
- size: 8721
2982
+ size: 8914
2983
2983
  - path: infrastructure/templates/coderabbit.yaml.template
2984
2984
  hash: sha256:a8f8e08e5c109b4c635a468e9b400bfb35361073de8a0883c5d4c9db84d7ed0a
2985
2985
  type: template
2986
- size: 8042
2986
+ size: 8321
2987
2987
  - path: infrastructure/templates/core-config/core-config-brownfield.tmpl.yaml
2988
2988
  hash: sha256:de54c7ffc1d785ff2aa43fb268c0dc0ad8a7215b77080a4dc0aaf5e49e02bc58
2989
2989
  type: template
@@ -2995,11 +2995,11 @@ files:
2995
2995
  - path: infrastructure/templates/github-workflows/ci.yml.template
2996
2996
  hash: sha256:ad7ea9f338b7bfec281a6136d40df3954cbaf239245e41e2eb227abf15d001d4
2997
2997
  type: template
2998
- size: 4920
2998
+ size: 5089
2999
2999
  - path: infrastructure/templates/github-workflows/pr-automation.yml.template
3000
3000
  hash: sha256:46c334bd347a0b36a8de55a4c1db2eb9e66b350555a50439b05000f05fbe307b
3001
3001
  type: template
3002
- size: 10609
3002
+ size: 10939
3003
3003
  - path: infrastructure/templates/github-workflows/README.md
3004
3004
  hash: sha256:d498f88d14a2eea695ff01dfb27886a9838576bf2be9a4dcbd923d5ae4b9f094
3005
3005
  type: template
@@ -3007,23 +3007,23 @@ files:
3007
3007
  - path: infrastructure/templates/github-workflows/release.yml.template
3008
3008
  hash: sha256:bd40c93023c56489a45690a5829beda662f738f0687beb46bef31475ceee8027
3009
3009
  type: template
3010
- size: 6595
3010
+ size: 6791
3011
3011
  - path: infrastructure/templates/gitignore/gitignore-aios-base.tmpl
3012
3012
  hash: sha256:eea52813b21c411ada64d2560913cc853a53b8d00ad916f0c9480cd11324b764
3013
3013
  type: template
3014
- size: 788
3014
+ size: 851
3015
3015
  - path: infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl
3016
3016
  hash: sha256:da10b4280d52fe7a76649d11ed9d72d452ece94bb5d46e06705ca585589d9e20
3017
3017
  type: template
3018
- size: 488
3018
+ size: 506
3019
3019
  - path: infrastructure/templates/gitignore/gitignore-node.tmpl
3020
3020
  hash: sha256:46d261d54d9b57cdecd54ae2d6f19b9971b380316700824caf6026543b6afe5b
3021
3021
  type: template
3022
- size: 951
3022
+ size: 1036
3023
3023
  - path: infrastructure/templates/gitignore/gitignore-python.tmpl
3024
3024
  hash: sha256:f8da7c8fb5888a59332e63ea5137ed808f6cf1075fd175104a79c44479c749ba
3025
3025
  type: template
3026
- size: 1580
3026
+ size: 1725
3027
3027
  - path: infrastructure/templates/project-docs/coding-standards-tmpl.md
3028
3028
  hash: sha256:f5eeba2464907e57fad287d842febc64ad22d27f2d33ea2fe74151646a57aaee
3029
3029
  type: template
@@ -3115,47 +3115,47 @@ files:
3115
3115
  - path: manifests/schema/manifest-schema.json
3116
3116
  hash: sha256:39678986089918893f309a2469fa0615beb82b5c6f1e16e2f9b40bcac6465195
3117
3117
  type: manifest
3118
- size: 5291
3118
+ size: 5481
3119
3119
  - path: monitor/hooks/lib/__init__.py
3120
3120
  hash: sha256:26147f29392400ed7bb87ca750af1c1bdd191193990463952282eaaffc1f35a2
3121
3121
  type: monitor
3122
- size: 29
3122
+ size: 30
3123
3123
  - path: monitor/hooks/lib/enrich.py
3124
3124
  hash: sha256:f796c327b54e5282027babe325f9629ad21440275c2a3fdb277840898bdf3653
3125
3125
  type: monitor
3126
- size: 1644
3126
+ size: 1702
3127
3127
  - path: monitor/hooks/lib/send_event.py
3128
3128
  hash: sha256:2ec9ec9abfded4c0b67a49429d192f171758c0fb4e8a1bf1e47f2c8e32aa47ea
3129
3129
  type: monitor
3130
- size: 1190
3130
+ size: 1237
3131
3131
  - path: monitor/hooks/notification.py
3132
3132
  hash: sha256:ae9e484772e090c557fcda3be46d19b9c48d7bec9789652cbfec17d7616a956f
3133
3133
  type: monitor
3134
- size: 499
3134
+ size: 528
3135
3135
  - path: monitor/hooks/post_tool_use.py
3136
3136
  hash: sha256:5599de99f3292ce7b57ad754abe9a0bfb462b1babc95a2bab22016528eb2515b
3137
3137
  type: monitor
3138
- size: 1140
3138
+ size: 1185
3139
3139
  - path: monitor/hooks/pre_compact.py
3140
3140
  hash: sha256:df11373948b986814a7602a9dd61a384055de13392a7aa246063b4c4ea75fddd
3141
3141
  type: monitor
3142
- size: 500
3142
+ size: 529
3143
3143
  - path: monitor/hooks/pre_tool_use.py
3144
3144
  hash: sha256:e4a7bbd6cbb6e17b819f629ef88a24947612f4dffbe19fab897b9ff4a409efc2
3145
3145
  type: monitor
3146
- size: 981
3146
+ size: 1021
3147
3147
  - path: monitor/hooks/stop.py
3148
3148
  hash: sha256:9737bcedd34cfdf459641e2f0e74eacf7a56d0e7ad0fb05a32a40c0afc87443e
3149
3149
  type: monitor
3150
- size: 490
3150
+ size: 519
3151
3151
  - path: monitor/hooks/subagent_stop.py
3152
3152
  hash: sha256:cfe2b5361a0b668f90d738bcd18f478e2ea49459304b203608377a1226d2bebb
3153
3153
  type: monitor
3154
- size: 512
3154
+ size: 541
3155
3155
  - path: monitor/hooks/user_prompt_submit.py
3156
3156
  hash: sha256:f8f9a7550121832811c2d2d12b93d5d42fa7180ddec85c49ae3841c9d259ab76
3157
3157
  type: monitor
3158
- size: 818
3158
+ size: 856
3159
3159
  - path: package.json
3160
3160
  hash: sha256:dff580c83cc1554c75162c9cabb711b5cd85e679c9c8f4968ee74499e99de0c0
3161
3161
  type: other
@@ -3303,7 +3303,7 @@ files:
3303
3303
  - path: product/templates/adr.hbs
3304
3304
  hash: sha256:401c2a3ce81905cd4665439d4e2afece92a7c93a1499a927b3522272e6a58027
3305
3305
  type: template
3306
- size: 2212
3306
+ size: 2337
3307
3307
  - path: product/templates/agent-template.yaml
3308
3308
  hash: sha256:4ad34c41d9e7546c208e4680faa8a30969d6505d59d17111b27d2963a8a22e73
3309
3309
  type: template
@@ -3343,7 +3343,7 @@ files:
3343
3343
  - path: product/templates/component-react-tmpl.tsx
3344
3344
  hash: sha256:bfbfab502da2064527948f70c9a59174f20b81472ac2ea6eb999f02c9bcaf3df
3345
3345
  type: template
3346
- size: 2588
3346
+ size: 2686
3347
3347
  - path: product/templates/current-approach-tmpl.md
3348
3348
  hash: sha256:ec258049a5cda587b24523faf6b26ed0242765f4e732af21c4f42e42cf326714
3349
3349
  type: template
@@ -3351,7 +3351,7 @@ files:
3351
3351
  - path: product/templates/dbdr.hbs
3352
3352
  hash: sha256:67de8a2a0fd90ed71111cb31a4c84209ff8b09b4ae263158a0f545ae3ac84cc5
3353
3353
  type: template
3354
- size: 4139
3354
+ size: 4380
3355
3355
  - path: product/templates/design-story-tmpl.yaml
3356
3356
  hash: sha256:bbf1a20323b217b668c8466307988e505e49f4e472df47b6411b6037511c9b7d
3357
3357
  type: template
@@ -3379,35 +3379,35 @@ files:
3379
3379
  - path: product/templates/engine/schemas/adr.schema.json
3380
3380
  hash: sha256:2cd4c78d9c2664695df163d033709122b0b37c70fd4f92c9bf4ea17503d4db0b
3381
3381
  type: template
3382
- size: 2915
3382
+ size: 3017
3383
3383
  - path: product/templates/engine/schemas/dbdr.schema.json
3384
3384
  hash: sha256:9d5f4e3774830f545617e801ec24ea6649afb2ab217fffda4f6fa3ec5136f2ea
3385
3385
  type: template
3386
- size: 5731
3386
+ size: 5936
3387
3387
  - path: product/templates/engine/schemas/epic.schema.json
3388
3388
  hash: sha256:c2e898276cf89338b9fa8d619c18c40d1ed1e4390d63cc779b439c37380a5317
3389
3389
  type: template
3390
- size: 4491
3390
+ size: 4666
3391
3391
  - path: product/templates/engine/schemas/pmdr.schema.json
3392
3392
  hash: sha256:3e3883d552f2fa0f1b9cd6d1621e9788858d81f2c9faa66fbdfc20744cddf855
3393
3393
  type: template
3394
- size: 4789
3394
+ size: 4964
3395
3395
  - path: product/templates/engine/schemas/prd-v2.schema.json
3396
3396
  hash: sha256:b6a5fcb6aa6ba4417f55673f2432fdc96d3b178ccd494b56796b74271cbe9ebe
3397
3397
  type: template
3398
- size: 7822
3398
+ size: 8122
3399
3399
  - path: product/templates/engine/schemas/prd.schema.json
3400
3400
  hash: sha256:a68c16308518ee12339d63659bef8b145d0101dcf7fe1e4e06ccad1c20a4b61a
3401
3401
  type: template
3402
- size: 4306
3402
+ size: 4458
3403
3403
  - path: product/templates/engine/schemas/story.schema.json
3404
3404
  hash: sha256:23d037e35a7ebecc6af86ef30223b2c20e3a938a4c9f4b6ca18a8cec6646a005
3405
3405
  type: template
3406
- size: 5884
3406
+ size: 6106
3407
3407
  - path: product/templates/engine/schemas/task.schema.json
3408
3408
  hash: sha256:01ed077417b76d54bb2aa93f94d3ca4b9587bb957dd269ff31f7f707f1efda37
3409
3409
  type: template
3410
- size: 3856
3410
+ size: 4010
3411
3411
  - path: product/templates/engine/validator.js
3412
3412
  hash: sha256:159422012586b65933dca98f7cc0274ebc8a867c79533340b548fc9eaca41944
3413
3413
  type: template
@@ -3415,11 +3415,11 @@ files:
3415
3415
  - path: product/templates/epic.hbs
3416
3416
  hash: sha256:abc175a126ff12aaf8fc06201fd36ea8415806d49b95bb86197829997c17a610
3417
3417
  type: template
3418
- size: 3868
3418
+ size: 4080
3419
3419
  - path: product/templates/eslintrc-security.json
3420
3420
  hash: sha256:657d40117261d6a52083984d29f9f88e79040926a64aa4c2058a602bfe91e0d5
3421
3421
  type: template
3422
- size: 909
3422
+ size: 941
3423
3423
  - path: product/templates/front-end-architecture-tmpl.yaml
3424
3424
  hash: sha256:de0432b4f98236c3a1d6cc9975b90fbc57727653bdcf6132355c0bcf0b4dbb9c
3425
3425
  type: template
@@ -3439,11 +3439,11 @@ files:
3439
3439
  - path: product/templates/github-actions-cd.yml
3440
3440
  hash: sha256:c9ef00ed1a691d634bb6a4927b038c96dcbc65e4337432eb2075e9ef302af85b
3441
3441
  type: template
3442
- size: 6992
3442
+ size: 7204
3443
3443
  - path: product/templates/github-actions-ci.yml
3444
3444
  hash: sha256:b64abbfdaf10b61d28ce0391fbcc2c54136cf14f4996244808341bb5ced0168e
3445
3445
  type: template
3446
- size: 4492
3446
+ size: 4664
3447
3447
  - path: product/templates/github-pr-template.md
3448
3448
  hash: sha256:f04dc7a2a98f3ada40a54a62d93ed2ee289c4b11032ef420acf10fbfe19d1dc5
3449
3449
  type: template
@@ -3535,7 +3535,7 @@ files:
3535
3535
  - path: product/templates/pmdr.hbs
3536
3536
  hash: sha256:90cb8dcb877938af538a6c7470233a0d908dc1a1041cffe845ad196887ab13a5
3537
3537
  type: template
3538
- size: 3239
3538
+ size: 3425
3539
3539
  - path: product/templates/prd-tmpl.yaml
3540
3540
  hash: sha256:f94734d78f9df14e0236719dfc63666a4506bcc076fbcdb5e5c5e5e1a3660876
3541
3541
  type: template
@@ -3543,11 +3543,11 @@ files:
3543
3543
  - path: product/templates/prd-v2.0.hbs
3544
3544
  hash: sha256:6a716525255c1236d75bfc1e2be6005006ba827fdf2b4d55e7453140a13df71a
3545
3545
  type: template
3546
- size: 4512
3546
+ size: 4728
3547
3547
  - path: product/templates/prd.hbs
3548
3548
  hash: sha256:b110a469ae0ba12ccaf5cae59daefbf08ba6e1b96cb6f1d5afc49c1a2d6739d3
3549
3549
  type: template
3550
- size: 3425
3550
+ size: 3626
3551
3551
  - path: product/templates/project-brief-tmpl.yaml
3552
3552
  hash: sha256:b8d388268c24dc5018f48a87036d591b11cb122fafe9b59c17809b06ea5d9d58
3553
3553
  type: template
@@ -3571,7 +3571,7 @@ files:
3571
3571
  - path: product/templates/shock-report-tmpl.html
3572
3572
  hash: sha256:f6b3984683b9c0e22550aaab63f002c01d6d9d3fe2af0e344f7dafbd444e4a19
3573
3573
  type: template
3574
- size: 16665
3574
+ size: 17167
3575
3575
  - path: product/templates/spec-tmpl.md
3576
3576
  hash: sha256:5f3a97a1d4cc5c0fe81432d942cdd3ac2ec43c6785c3594ba3e1070601719718
3577
3577
  type: template
@@ -3587,7 +3587,7 @@ files:
3587
3587
  - path: product/templates/story.hbs
3588
3588
  hash: sha256:5a51064b2e371b3e2b22080df2993da0c2517c442c80e3cada3006387a4d29ab
3589
3589
  type: template
3590
- size: 5583
3590
+ size: 5846
3591
3591
  - path: product/templates/task-execution-report.md
3592
3592
  hash: sha256:6ca0126115ddb0c31b584a964a9938dbbbb8e187e02d6001bd5b69d3d4359992
3593
3593
  type: template
@@ -3599,71 +3599,71 @@ files:
3599
3599
  - path: product/templates/task.hbs
3600
3600
  hash: sha256:6aacffe2c92bf87d3040f2de75f45a586d819f1f73fcdabfadeca6ecb30f1f20
3601
3601
  type: template
3602
- size: 2705
3602
+ size: 2875
3603
3603
  - path: product/templates/tmpl-comment-on-examples.sql
3604
3604
  hash: sha256:254002c3fbc63cfcc5848b1d4b15822ce240bf5f57e6a1c8bb984e797edc2691
3605
3605
  type: template
3606
- size: 6215
3606
+ size: 6373
3607
3607
  - path: product/templates/tmpl-migration-script.sql
3608
3608
  hash: sha256:44ef63ea475526d21a11e3c667c9fdb78a9fddace80fdbaa2312b7f2724fbbb5
3609
3609
  type: template
3610
- size: 2947
3610
+ size: 3038
3611
3611
  - path: product/templates/tmpl-rls-granular-policies.sql
3612
3612
  hash: sha256:36c2fd8c6d9eebb5d164acb0fb0c87bc384d389264b4429ce21e77e06318f5f3
3613
3613
  type: template
3614
- size: 3322
3614
+ size: 3426
3615
3615
  - path: product/templates/tmpl-rls-kiss-policy.sql
3616
3616
  hash: sha256:5210d37fce62e5a9a00e8d5366f5f75653cd518be73fbf96333ed8a6712453c7
3617
3617
  type: template
3618
- size: 299
3618
+ size: 309
3619
3619
  - path: product/templates/tmpl-rls-roles.sql
3620
3620
  hash: sha256:2d032a608a8e87440c3a430c7d69ddf9393d8813d8d4129270f640dd847425c3
3621
3621
  type: template
3622
- size: 4592
3622
+ size: 4727
3623
3623
  - path: product/templates/tmpl-rls-simple.sql
3624
3624
  hash: sha256:f67af0fa1cdd2f2af9eab31575ac3656d82457421208fd9ccb8b57ca9785275e
3625
3625
  type: template
3626
- size: 2915
3626
+ size: 2992
3627
3627
  - path: product/templates/tmpl-rls-tenant.sql
3628
3628
  hash: sha256:36629ed87a2c72311809cc3fb96298b6f38716bba35bc56c550ac39d3321757a
3629
3629
  type: template
3630
- size: 4978
3630
+ size: 5130
3631
3631
  - path: product/templates/tmpl-rollback-script.sql
3632
3632
  hash: sha256:8b84046a98f1163faf7350322f43831447617c5a63a94c88c1a71b49804e022b
3633
3633
  type: template
3634
- size: 2657
3634
+ size: 2734
3635
3635
  - path: product/templates/tmpl-seed-data.sql
3636
3636
  hash: sha256:a65e73298f46cd6a8e700f29b9d8d26e769e12a57751a943a63fd0fe15768615
3637
3637
  type: template
3638
- size: 5576
3638
+ size: 5716
3639
3639
  - path: product/templates/tmpl-smoke-test.sql
3640
3640
  hash: sha256:aee7e48bb6d9c093769dee215cacc9769939501914e20e5ea8435b25fad10f3c
3641
3641
  type: template
3642
- size: 723
3642
+ size: 739
3643
3643
  - path: product/templates/tmpl-staging-copy-merge.sql
3644
3644
  hash: sha256:55988caeb47cc04261665ba7a37f4caa2aa5fac2e776fdbc5964e0587af24450
3645
3645
  type: template
3646
- size: 4081
3646
+ size: 4220
3647
3647
  - path: product/templates/tmpl-stored-proc.sql
3648
3648
  hash: sha256:2b205ff99dc0adfade6047a4d79f5b50109e50ceb45386e5c886437692c7a2a3
3649
3649
  type: template
3650
- size: 3839
3650
+ size: 3979
3651
3651
  - path: product/templates/tmpl-trigger.sql
3652
3652
  hash: sha256:93abdc92e1b475d1370094e69a9d1b18afd804da6acb768b878355c798bd8e0e
3653
3653
  type: template
3654
- size: 5272
3654
+ size: 5424
3655
3655
  - path: product/templates/tmpl-view-materialized.sql
3656
3656
  hash: sha256:47935510f03d4ad9b2200748e65441ce6c2d6a7c74750395eca6831d77c48e91
3657
3657
  type: template
3658
- size: 4363
3658
+ size: 4496
3659
3659
  - path: product/templates/tmpl-view.sql
3660
3660
  hash: sha256:22557b076003a856b32397f05fa44245a126521de907058a95e14dd02da67aff
3661
3661
  type: template
3662
- size: 4916
3662
+ size: 5093
3663
3663
  - path: product/templates/token-exports-css-tmpl.css
3664
3664
  hash: sha256:d937b8d61cdc9e5b10fdff871c6cb41c9f756004d060d671e0ae26624a047f62
3665
3665
  type: template
3666
- size: 5798
3666
+ size: 6038
3667
3667
  - path: product/templates/token-exports-tailwind-tmpl.js
3668
3668
  hash: sha256:1e99f1be493b4b3dac1b2a9abc1ae1dd9146f26f86bed229c232690114c3a377
3669
3669
  type: template
@@ -3867,7 +3867,7 @@ files:
3867
3867
  - path: scripts/migrate-framework-docs.sh
3868
3868
  hash: sha256:b453931ec91e85b7f2e71d8508960e742aaa85fa44a89221ff257d472ab61ca3
3869
3869
  type: script
3870
- size: 9488
3870
+ size: 9788
3871
3871
  - path: scripts/pm.sh
3872
3872
  hash: sha256:ee05da6dc99078b710a34f9fb420684ff19876bcc0322571f1057a56cbbb6011
3873
3873
  type: script