aiox-core 5.0.7 → 5.0.8

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 (191) hide show
  1. package/.aiox-core/cli/commands/pro/buyer.js +379 -0
  2. package/.aiox-core/cli/commands/pro/index.js +191 -52
  3. package/.aiox-core/cli/commands/validate/index.js +2 -0
  4. package/.aiox-core/core/code-intel/helpers/dev-helper.js +1 -1
  5. package/.aiox-core/core/code-intel/helpers/devops-helper.js +0 -1
  6. package/.aiox-core/core/code-intel/helpers/planning-helper.js +1 -1
  7. package/.aiox-core/core/code-intel/helpers/qa-helper.js +2 -2
  8. package/.aiox-core/core/config/schemas/framework-config.schema.json +1 -0
  9. package/.aiox-core/core/config/template-overrides.js +1 -1
  10. package/.aiox-core/core/doctor/checks/ide-sync.js +81 -25
  11. package/.aiox-core/core/doctor/checks/rules-files.js +0 -1
  12. package/.aiox-core/core/doctor/checks/skills-count.js +83 -15
  13. package/.aiox-core/core/graph-dashboard/cli.js +1 -2
  14. package/.aiox-core/core/graph-dashboard/data-sources/code-intel-source.js +1 -1
  15. package/.aiox-core/core/ids/layer-classifier.js +1 -1
  16. package/.aiox-core/core/pro/pro-updater.js +578 -0
  17. package/.aiox-core/core/synapse/context/context-tracker.js +107 -9
  18. package/.aiox-core/core/synapse/layers/layer-processor.js +1 -1
  19. package/.aiox-core/core-config.yaml +15 -1
  20. package/.aiox-core/data/capability-detection.js +15 -15
  21. package/.aiox-core/data/entity-registry.yaml +18 -2
  22. package/.aiox-core/data/registry-update-log.jsonl +5 -0
  23. package/.aiox-core/data/tok3-token-comparison.js +0 -4
  24. package/.aiox-core/data/tool-search-validation.js +1 -1
  25. package/.aiox-core/development/agents/aiox-master.md +44 -6
  26. package/.aiox-core/development/agents/data-engineer.md +4 -4
  27. package/.aiox-core/development/agents/devops.md +52 -2
  28. package/.aiox-core/development/agents/po.md +1 -1
  29. package/.aiox-core/development/agents/qa.md +5 -11
  30. package/.aiox-core/development/agents/sm.md +3 -3
  31. package/.aiox-core/development/agents/ux-design-expert.md +1 -1
  32. package/.aiox-core/development/scripts/unified-activation-pipeline.js +29 -3
  33. package/.aiox-core/development/tasks/dev-develop-story.md +46 -7
  34. package/.aiox-core/development/tasks/devops-pro-access-grant.md +93 -0
  35. package/.aiox-core/development/tasks/devops-pro-activate.md +42 -0
  36. package/.aiox-core/development/tasks/devops-pro-check-access.md +34 -0
  37. package/.aiox-core/development/tasks/devops-pro-request-reset.md +34 -0
  38. package/.aiox-core/development/tasks/devops-pro-resend-verification.md +32 -0
  39. package/.aiox-core/development/tasks/devops-pro-reset-password.md +36 -0
  40. package/.aiox-core/development/tasks/devops-pro-validate-login.md +36 -0
  41. package/.aiox-core/development/tasks/devops-pro-verify-status.md +33 -0
  42. package/.aiox-core/development/tasks/qa-gate.md +54 -4
  43. package/.aiox-core/development/tasks/validate-next-story.md +39 -2
  44. package/.aiox-core/framework-config.yaml +1 -0
  45. package/.aiox-core/infrastructure/scripts/codex-skills-sync/README.md +69 -0
  46. package/.aiox-core/infrastructure/scripts/codex-skills-sync/bootstrap.js +727 -0
  47. package/.aiox-core/infrastructure/scripts/codex-skills-sync/index.js +10 -0
  48. package/.aiox-core/infrastructure/scripts/codex-skills-sync/validate.js +65 -4
  49. package/.aiox-core/infrastructure/scripts/generate-settings-json.js +29 -4
  50. package/.aiox-core/infrastructure/scripts/ide-sync/agent-parser.js +4 -0
  51. package/.aiox-core/infrastructure/scripts/ide-sync/index.js +67 -7
  52. package/.aiox-core/infrastructure/scripts/ide-sync/transformers/claude-code.js +145 -3
  53. package/.aiox-core/infrastructure/scripts/repair-agent-references.js +263 -0
  54. package/.aiox-core/infrastructure/scripts/validate-claude-integration.js +60 -8
  55. package/.aiox-core/infrastructure/scripts/validate-paths.js +13 -0
  56. package/.aiox-core/install-manifest.yaml +134 -82
  57. package/.aiox-core/utils/filters/index.js +2 -1
  58. package/.claude/commands/AIOX/agents/aiox-master.md +21 -0
  59. package/.claude/commands/AIOX/agents/analyst.md +21 -0
  60. package/.claude/commands/AIOX/agents/architect.md +21 -0
  61. package/.claude/commands/AIOX/agents/data-engineer.md +21 -0
  62. package/.claude/commands/AIOX/agents/dev.md +21 -0
  63. package/.claude/commands/AIOX/agents/devops.md +21 -0
  64. package/.claude/commands/AIOX/agents/pm.md +21 -0
  65. package/.claude/commands/AIOX/agents/po.md +21 -0
  66. package/.claude/commands/AIOX/agents/qa.md +21 -0
  67. package/.claude/commands/AIOX/agents/sm.md +21 -0
  68. package/.claude/commands/AIOX/agents/squad-creator.md +21 -0
  69. package/.claude/commands/AIOX/agents/ux-design-expert.md +21 -0
  70. package/.claude/commands/AIOX/scripts/agent-config-loader.js +624 -0
  71. package/.claude/commands/AIOX/scripts/generate-greeting.js +160 -0
  72. package/.claude/commands/AIOX/scripts/greeting-builder.js +866 -0
  73. package/.claude/commands/AIOX/scripts/session-context-loader.js +286 -0
  74. package/.claude/commands/AIOX/stories/story-6.1.4.md +1404 -0
  75. package/.claude/commands/cohort-squad/agents/cohort-manager.md +156 -0
  76. package/.claude/commands/design-system/agents/brad-frost.md +1097 -0
  77. package/.claude/commands/design-system/agents/dan-mall.md +857 -0
  78. package/.claude/commands/design-system/agents/dave-malouf.md +2272 -0
  79. package/.claude/commands/design-system/agents/design-chief.md +102 -0
  80. package/.claude/commands/design-system/agents/nano-banana-generator.md +162 -0
  81. package/.claude/commands/greet.md +101 -0
  82. package/.claude/commands/synapse/manager.md +75 -0
  83. package/.claude/commands/synapse/tasks/add-rule.md +94 -0
  84. package/.claude/commands/synapse/tasks/create-command.md +109 -0
  85. package/.claude/commands/synapse/tasks/create-domain.md +127 -0
  86. package/.claude/commands/synapse/tasks/diagnose-synapse.md +245 -0
  87. package/.claude/commands/synapse/tasks/edit-rule.md +109 -0
  88. package/.claude/commands/synapse/tasks/suggest-domain.md +116 -0
  89. package/.claude/commands/synapse/tasks/toggle-domain.md +83 -0
  90. package/.claude/commands/synapse/templates/domain-template +8 -0
  91. package/.claude/commands/synapse/templates/manifest-entry-template +4 -0
  92. package/.claude/commands/synapse/utils/manifest-parser-reference.md +134 -0
  93. package/.claude/hooks/precompact-session-digest.cjs +2 -2
  94. package/.claude/skills/AIOX/agents/aiox-master/SKILL.md +511 -0
  95. package/.claude/skills/AIOX/agents/analyst/SKILL.md +281 -0
  96. package/.claude/skills/AIOX/agents/architect/SKILL.md +482 -0
  97. package/.claude/skills/AIOX/agents/data-engineer/SKILL.md +503 -0
  98. package/.claude/skills/AIOX/agents/dev/SKILL.md +568 -0
  99. package/.claude/skills/AIOX/agents/devops/SKILL.md +597 -0
  100. package/.claude/skills/AIOX/agents/pm/SKILL.md +385 -0
  101. package/.claude/skills/AIOX/agents/po/SKILL.md +343 -0
  102. package/.claude/skills/AIOX/agents/qa/SKILL.md +451 -0
  103. package/.claude/skills/AIOX/agents/sm/SKILL.md +295 -0
  104. package/.claude/skills/AIOX/agents/squad-creator/SKILL.md +352 -0
  105. package/.claude/skills/AIOX/agents/ux-design-expert/SKILL.md +503 -0
  106. package/.claude/skills/architect-first/SKILL.md +275 -0
  107. package/.claude/skills/architect-first/assets/architecture-template.md +505 -0
  108. package/.claude/skills/architect-first/assets/config-template.yaml +351 -0
  109. package/.claude/skills/architect-first/references/architecture-checklist.md +216 -0
  110. package/.claude/skills/architect-first/references/pre-implementation-checklist.md +119 -0
  111. package/.claude/skills/architect-first/references/stop-rules-guide.md +291 -0
  112. package/.claude/skills/architect-first/references/testing-strategy-guide.md +477 -0
  113. package/.claude/skills/architect-first/scripts/architecture_validator.py +490 -0
  114. package/.claude/skills/architect-first/scripts/check_coupling.py +306 -0
  115. package/.claude/skills/architect-first/scripts/validate_risk_mitigation.py +382 -0
  116. package/.claude/skills/checklist-runner/SKILL.md +113 -0
  117. package/.claude/skills/clone-mind.md +329 -0
  118. package/.claude/skills/coderabbit-review/SKILL.md +106 -0
  119. package/.claude/skills/course-generation-workflow.md +76 -0
  120. package/.claude/skills/enhance-workflow.md +466 -0
  121. package/.claude/skills/mcp-builder/LICENSE.txt +202 -0
  122. package/.claude/skills/mcp-builder/SKILL.md +328 -0
  123. package/.claude/skills/mcp-builder/reference/evaluation.md +602 -0
  124. package/.claude/skills/mcp-builder/reference/mcp_best_practices.md +915 -0
  125. package/.claude/skills/mcp-builder/reference/node_mcp_server.md +916 -0
  126. package/.claude/skills/mcp-builder/reference/python_mcp_server.md +752 -0
  127. package/.claude/skills/mcp-builder/scripts/connections.py +151 -0
  128. package/.claude/skills/mcp-builder/scripts/evaluation.py +373 -0
  129. package/.claude/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
  130. package/.claude/skills/mcp-builder/scripts/requirements.txt +2 -0
  131. package/.claude/skills/ralph.md +181 -0
  132. package/.claude/skills/skill-creator/LICENSE.txt +202 -0
  133. package/.claude/skills/skill-creator/SKILL.md +209 -0
  134. package/.claude/skills/skill-creator/scripts/init_skill.py +303 -0
  135. package/.claude/skills/skill-creator/scripts/package_skill.py +110 -0
  136. package/.claude/skills/skill-creator/scripts/quick_validate.py +65 -0
  137. package/.claude/skills/squad.md +301 -0
  138. package/.claude/skills/synapse/SKILL.md +132 -0
  139. package/.claude/skills/synapse/assets/README.md +50 -0
  140. package/.claude/skills/synapse/references/brackets.md +100 -0
  141. package/.claude/skills/synapse/references/commands.md +118 -0
  142. package/.claude/skills/synapse/references/domains.md +126 -0
  143. package/.claude/skills/synapse/references/layers.md +186 -0
  144. package/.claude/skills/synapse/references/manifest.md +142 -0
  145. package/.claude/skills/tech-search/SKILL.md +431 -0
  146. package/.claude/skills/tech-search/prompts/page-extract.md +133 -0
  147. package/README.en.md +2 -2
  148. package/README.md +8 -2
  149. package/bin/aiox.js +55 -4
  150. package/bin/utils/framework-guard.js +4 -2
  151. package/bin/utils/pro-detector.js +119 -28
  152. package/bin/utils/validate-publish.js +6 -6
  153. package/docs/aiox-agent-flows/devops-system.md +18 -0
  154. package/docs/aiox-workflows/README.md +1 -0
  155. package/docs/aiox-workflows/pro-access-grant-workflow.md +218 -0
  156. package/docs/guides/pro/access-grant-ops-playbook.md +370 -0
  157. package/docs/guides/pro/install-gate-setup.md +12 -6
  158. package/docs/guides/pro/squad-creator-handoff-pro-access-ops.md +134 -0
  159. package/docs/guides/supabase-ops-handoff.md +768 -0
  160. package/package.json +12 -1
  161. package/packages/aiox-pro-cli/bin/aiox-pro.js +33 -12
  162. package/packages/installer/src/config/configure-environment.js +118 -50
  163. package/packages/installer/src/installer/aiox-core-installer.js +124 -27
  164. package/packages/installer/src/installer/brownfield-upgrader.js +66 -9
  165. package/packages/installer/src/installer/dependency-installer.js +4 -0
  166. package/packages/installer/src/pro/pro-scaffolder.js +5 -5
  167. package/packages/installer/src/updater/index.js +151 -10
  168. package/packages/installer/src/wizard/ide-config-generator.js +73 -7
  169. package/packages/installer/src/wizard/index.js +119 -31
  170. package/packages/installer/src/wizard/pro-setup.js +118 -47
  171. package/packages/installer/src/wizard/validation/validators/dependency-validator.js +32 -25
  172. package/packages/installer/src/wizard/validation/validators/file-structure-validator.js +26 -0
  173. package/packages/installer/tests/unit/artifact-copy-pipeline/artifact-copy-pipeline.test.js +84 -1
  174. package/packages/installer/tests/unit/claude-md-template-v5/claude-md-template-v5.test.js +1 -1
  175. package/packages/installer/tests/unit/doctor/doctor-checks.test.js +85 -19
  176. package/packages/installer/tests/unit/entity-registry-bootstrap.test.js +4 -4
  177. package/packages/installer/tests/unit/generate-settings-json/generate-settings-json.test.js +5 -5
  178. package/packages/installer/tests/unit/ide-sync-integration/ide-sync-integration.test.js +4 -4
  179. package/packages/installer/tests/unit/merger/yaml-merger.test.js +11 -11
  180. package/pro/README.md +12 -1
  181. package/pro/license/index.js +3 -11
  182. package/pro/license/license-api.js +25 -0
  183. package/pro/license/license-cache.js +135 -31
  184. package/pro/license/license-crypto.js +59 -3
  185. package/pro/package.json +5 -4
  186. package/pro/squads/README.md +16 -16
  187. package/pro/squads/index.js +1 -1
  188. package/scripts/e2e/installed-skills-smoke.js +264 -0
  189. package/scripts/package-synapse.js +3 -3
  190. package/scripts/validate-package-completeness.js +8 -11
  191. package/.aiox-core/lib/build.json +0 -1
@@ -7,10 +7,10 @@
7
7
  # - SHA256 hashes for change detection
8
8
  # - File types for categorization
9
9
  #
10
- version: 5.0.7
11
- generated_at: "2026-04-15T21:38:11.978Z"
10
+ version: 5.0.8
11
+ generated_at: "2026-05-07T08:00:18.098Z"
12
12
  generator: scripts/generate-install-manifest.js
13
- file_count: 1090
13
+ file_count: 1103
14
14
  files:
15
15
  - path: cli/commands/config/index.js
16
16
  hash: sha256:25c4b9bf4e0241abf7754b55153f49f1a214f1fb5fe904a576675634cb7b3da9
@@ -100,10 +100,14 @@ files:
100
100
  hash: sha256:fe8fa2479ff81e880a2570cfd3cf06ce548b9f1fbbb673493480ad5a102e47fb
101
101
  type: cli
102
102
  size: 12326
103
+ - path: cli/commands/pro/buyer.js
104
+ hash: sha256:b866132041f28ab473e5b9df41e636ded1ba96ae278de02b1233993ee527ada9
105
+ type: cli
106
+ size: 12335
103
107
  - path: cli/commands/pro/index.js
104
- hash: sha256:3e26f15119719a7be374f3db1935e6bd35fc2c14a66a2a30175979b5731bb29b
108
+ hash: sha256:d22457253ad517114883d38e2d8ddc2de6257fd2f9222c299b56f55eb6ad2ba9
105
109
  type: cli
106
- size: 21940
110
+ size: 26295
107
111
  - path: cli/commands/qa/index.js
108
112
  hash: sha256:3a9e30419a66e56781f9b5dcddc8f4dd0ed24dabf8fe8c3005cd26f5cb02558f
109
113
  type: cli
@@ -117,9 +121,9 @@ files:
117
121
  type: cli
118
122
  size: 5320
119
123
  - path: cli/commands/validate/index.js
120
- hash: sha256:b49dcd35424f753f4fedc96c8e1070f716a1f3cb3357baa5b7377d60b5f75cad
124
+ hash: sha256:dcf19f1b4a46e562812c5c718783e88f9ac8ef0bf51f27eb1a6d31c7081fafdf
121
125
  type: cli
122
- size: 12893
126
+ size: 13040
123
127
  - path: cli/commands/workers/formatters/info-formatter.js
124
128
  hash: sha256:11c17e16be0b7d09ba8949497e0887bb20996966d266454aa2bb5dfc9d9d91b8
125
129
  type: cli
@@ -177,9 +181,9 @@ files:
177
181
  type: cli
178
182
  size: 5907
179
183
  - path: core-config.yaml
180
- hash: sha256:d1d90d2cc22e4c870a8a90446d6b98dfd1918829cd5c5f31809bece6ddcfc1cf
184
+ hash: sha256:9ddfc19a58ca25ca628925ec2ba2afab720c89d80817dfc2e0b03c3fcfcfecc2
181
185
  type: config
182
- size: 10999
186
+ size: 11368
183
187
  - path: core/code-intel/code-intel-client.js
184
188
  hash: sha256:6c9a08a37775acf90397aa079a4ad2c5edcc47f2cfd592b26ae9f3d154d1deb8
185
189
  type: core
@@ -193,21 +197,21 @@ files:
193
197
  type: core
194
198
  size: 5637
195
199
  - path: core/code-intel/helpers/dev-helper.js
196
- hash: sha256:2418a5f541003c73cc284e88a6b0cb666896a47ffd5ed4c08648269d281efc4c
200
+ hash: sha256:7e7f9bb92725ca1d85b0a7151668bc5bcdd6fc9b73fed5b2b2c28217d14535ab
197
201
  type: core
198
- size: 5770
202
+ size: 5751
199
203
  - path: core/code-intel/helpers/devops-helper.js
200
- hash: sha256:c40cfa9ac2f554a707ff68c7709ae436349041bf00ad2f42811ccbe8ba842462
204
+ hash: sha256:e72f95de2f3737b6e12094526eabfb4974a8339ce6d25f2e323f734fe567c155
201
205
  type: core
202
- size: 5115
206
+ size: 5043
203
207
  - path: core/code-intel/helpers/planning-helper.js
204
- hash: sha256:2edcf275122125205a9e737035c8b25efdc4af13e7349ffc10c3ebe8ebe7654d
208
+ hash: sha256:9ca5b57b74b5729685369662659e15a91e35ec3a33691973be000ecd85974f3d
205
209
  type: core
206
- size: 6863
210
+ size: 6844
207
211
  - path: core/code-intel/helpers/qa-helper.js
208
- hash: sha256:ca069dad294224dd5c3369826fb39d5c24287d49d74360049f8bbc55f190eeda
212
+ hash: sha256:9dbb84c1c4ed1aa57385ad2a6c74520f2020e6f8883012dd57c51486172ee528
209
213
  type: core
210
- size: 5184
214
+ size: 5146
211
215
  - path: core/code-intel/helpers/story-helper.js
212
216
  hash: sha256:778466253ac66103ebc3b1caf71f44b06a0d5fb3d39fe8d3d473dd4bc73fefc6
213
217
  type: core
@@ -261,9 +265,9 @@ files:
261
265
  type: core
262
266
  size: 8156
263
267
  - path: core/config/schemas/framework-config.schema.json
264
- hash: sha256:e68804d6765e33147c6b94a1d97461afbc8be1732bb1124194eab50f5cca3cdd
268
+ hash: sha256:900caf051d112c29e4c8faa296fb1d37a3e7160c50b6180d1c8f07950d0fbd68
265
269
  type: core
266
- size: 5890
270
+ size: 5940
267
271
  - path: core/config/schemas/local-config.schema.json
268
272
  hash: sha256:0349e44aea7b3dfe051ce586eb201f25edab8a7ea6d054704034f877848aa43f
269
273
  type: core
@@ -277,9 +281,9 @@ files:
277
281
  type: core
278
282
  size: 936
279
283
  - path: core/config/template-overrides.js
280
- hash: sha256:1708dc8764e7f88dfefd7684240afcd5f13657170ac104aed99145e2bb8ae82c
284
+ hash: sha256:202d141a292bc5a8dd0697e044d7627b260839ae8b7119fd40ae486b3a1b0825
281
285
  type: core
282
- size: 2223
286
+ size: 2224
283
287
  - path: core/config/templates/user-config.yaml
284
288
  hash: sha256:3505471b0adff9bfcea08f46cca3aeeda46a283bbe7ee711dd566e5974c3257f
285
289
  type: template
@@ -321,9 +325,9 @@ files:
321
325
  type: core
322
326
  size: 3348
323
327
  - path: core/doctor/checks/ide-sync.js
324
- hash: sha256:0941feb55b6dc5d3afde7e4e9ef11afbc1d9781197c9e52630056fab1c1ebea2
328
+ hash: sha256:4ddd037b4ad18c4201ca1428a1044efd313e9d2721cd399aebd3c5043fd4e2d1
325
329
  type: core
326
- size: 2142
330
+ size: 4203
327
331
  - path: core/doctor/checks/index.js
328
332
  hash: sha256:c4034f86b66895c1ab9a8be4148577d5b886c21f31e05d32cbf8e4970e88f204
329
333
  type: core
@@ -337,17 +341,17 @@ files:
337
341
  type: core
338
342
  size: 2265
339
343
  - path: core/doctor/checks/rules-files.js
340
- hash: sha256:3996e6343a224021fa684d7930dc99b66469c59cb15d416b0c024a770d722ab6
344
+ hash: sha256:ec58342215cede634f50c5b3164155c4f27fd8070af176ec0e02e6deec6fb218
341
345
  type: core
342
- size: 1426
346
+ size: 1368
343
347
  - path: core/doctor/checks/settings-json.js
344
348
  hash: sha256:bd26841b966fcfa003eca6f85416d4f877b9dcfea0e4017df9f2a97c14c33fbb
345
349
  type: core
346
350
  size: 3286
347
351
  - path: core/doctor/checks/skills-count.js
348
- hash: sha256:0b6a19fca1765904c31a33caeeefacbe76df4641154f2f93a8300b4cacce34b8
352
+ hash: sha256:811d904bde6d2ba4940f19cbe6a29cc12c5df6908ac95cb37bcb7add687fe4cc
349
353
  type: core
350
- size: 1584
354
+ size: 3725
351
355
  - path: core/doctor/fix-handler.js
352
356
  hash: sha256:c8255536f08a622b2773819080bdbf5d65f8f3f43b77eb257d98064cd74903a3
353
357
  type: core
@@ -441,13 +445,13 @@ files:
441
445
  type: core
442
446
  size: 11060
443
447
  - path: core/graph-dashboard/cli.js
444
- hash: sha256:1f2fd6c6b5ace42f3bddc89695fe32d01949321d96057bbf50e2e48892f2c8f5
448
+ hash: sha256:29f273a06fecc77eb3e39162ba1aaf28e1cbadb2a000158f009817021a30b4d1
445
449
  type: core
446
- size: 10251
450
+ size: 10205
447
451
  - path: core/graph-dashboard/data-sources/code-intel-source.js
448
- hash: sha256:e508d6cbadcd2358fa7756dcaceefbaa510bd89155e036e2cbd386585408ff8f
452
+ hash: sha256:2b0534f57a8f6ca2ff5942e42faf147f1be84773b3af33c9e506ee8f318b558c
449
453
  type: core
450
- size: 6799
454
+ size: 6800
451
455
  - path: core/graph-dashboard/data-sources/metrics-source.js
452
456
  hash: sha256:b1e4027f82350760b67ea8f58e04a5e739f87f010838487043e29dab7301ae9e
453
457
  type: core
@@ -725,7 +729,7 @@ files:
725
729
  type: core
726
730
  size: 3624
727
731
  - path: core/ids/layer-classifier.js
728
- hash: sha256:4ae1e7d341076a13d08b8b5baf7a687ad2c7df673d50fc3554d522fe79debcdc
732
+ hash: sha256:2a240b70ac3507e50a64b96d580c4d933bf2116125fb52c8237db2ed9ebf27b7
729
733
  type: core
730
734
  size: 2382
731
735
  - path: core/ids/README.md
@@ -968,6 +972,10 @@ files:
968
972
  hash: sha256:84f09067c7154d97cb2252b9a7def00562acf569cfc3b035d6d4e39fb40d4033
969
973
  type: core
970
974
  size: 7193
975
+ - path: core/pro/pro-updater.js
976
+ hash: sha256:4fbdf590f1685d835fa5bef8e2307708ab1eeb49f5ea177d4f79c1629e35670a
977
+ type: core
978
+ size: 17487
971
979
  - path: core/quality-gates/base-layer.js
972
980
  hash: sha256:9a9a3921da08176b0bd44f338a59abc1f5107f3b1ee56571e840bf4e8ed233f4
973
981
  type: core
@@ -1049,9 +1057,9 @@ files:
1049
1057
  type: core
1050
1058
  size: 1013
1051
1059
  - path: core/synapse/context/context-tracker.js
1052
- hash: sha256:48e94db7b1778dedecc8eae829139579ad7778ff47668597ebe766610696553f
1060
+ hash: sha256:5a54a15fbbbd4b6095e7e78297cb87e4a123a7c1d714a7c7916272ef6fd680f1
1053
1061
  type: core
1054
- size: 5839
1062
+ size: 9144
1055
1063
  - path: core/synapse/diagnostics/collectors/consistency-collector.js
1056
1064
  hash: sha256:65f4255f87c9900400649dc8b9aedaac4851b5939d93e127778bd93cee99db12
1057
1065
  type: core
@@ -1145,9 +1153,9 @@ files:
1145
1153
  type: core
1146
1154
  size: 4672
1147
1155
  - path: core/synapse/layers/layer-processor.js
1148
- hash: sha256:73cb0e5b4bada80d8e256009004679e483792077fac4358c6466cd77136f79fa
1156
+ hash: sha256:15f9e4c1525d3fa2186170705a26191ad87d94ffd7fa7d61f373b07b6fb3d874
1149
1157
  type: core
1150
- size: 2881
1158
+ size: 2882
1151
1159
  - path: core/synapse/memory/memory-bridge.js
1152
1160
  hash: sha256:820875f97ceea80fc6402c0dab1706cfe58de527897b22dea68db40b0d6ec368
1153
1161
  type: core
@@ -1217,13 +1225,13 @@ files:
1217
1225
  type: data
1218
1226
  size: 34235
1219
1227
  - path: data/capability-detection.js
1220
- hash: sha256:5176849c01d90e5867f18962e03ff10a10628f40c30fe5c8cb65209f833c0884
1228
+ hash: sha256:317d1b51b5cda2e35ac6d468e33e05c0948e6d7f05f51d750d7ce6ff5a58535a
1221
1229
  type: data
1222
- size: 9575
1230
+ size: 9590
1223
1231
  - path: data/entity-registry.yaml
1224
- hash: sha256:cc1bf74d3ef4e90b7a396d5b77259e540b2f9bd4a5b4b1da4977fe49ae83525d
1232
+ hash: sha256:cb4f48b524af2cd998929cb203ba76b1938d960d5a052dbffbe4166d67eb9080
1225
1233
  type: data
1226
- size: 521869
1234
+ size: 522342
1227
1235
  - path: data/learned-patterns.yaml
1228
1236
  hash: sha256:24ac0b160615583a0ff783d3da8af80b7f94191575d6db2054ec8e10a3f945dc
1229
1237
  type: data
@@ -1273,17 +1281,17 @@ files:
1273
1281
  type: data
1274
1282
  size: 7026
1275
1283
  - path: data/tok3-token-comparison.js
1276
- hash: sha256:1f484f8054bec7a7e8055acbc9fddd7863a769948c30c6db42c5c8694410da8f
1284
+ hash: sha256:da4e3cb3a09684d6fc6d0bb2b285d1837054b9fedc65b58e7fdc8d7a99b1d8a1
1277
1285
  type: data
1278
- size: 4622
1286
+ size: 4486
1279
1287
  - path: data/tool-registry.yaml
1280
1288
  hash: sha256:64e867d0eb36c7f7ac86f4f73f1b2ff89f43f37f28a6de34389be74b9346860c
1281
1289
  type: data
1282
1290
  size: 15178
1283
1291
  - path: data/tool-search-validation.js
1284
- hash: sha256:8757bf087692f002d67115dbe1c8244bbd869600e4f52c49b0d9b07cb9fbb783
1292
+ hash: sha256:d83f0680d38996be4615c1f3425d35e0b20c5c93c09da470d2c6a42dcfc3583c
1285
1293
  type: data
1286
- size: 5754
1294
+ size: 5755
1287
1295
  - path: data/workflow-chains.yaml
1288
1296
  hash: sha256:1fbf1625e267eedc315cf1e08e5827c250ddc6785fb2cb139e7702def9b66268
1289
1297
  type: data
@@ -1317,9 +1325,9 @@ files:
1317
1325
  type: development
1318
1326
  size: 5012
1319
1327
  - path: development/agents/aiox-master.md
1320
- hash: sha256:17cd10f6c2ac4fcd96d944283f239c760e2829d2de4e68098f618783ec5ae351
1328
+ hash: sha256:9a4cb19d885e13935ae464bbef0d9009feba21b6a14dcf75815de50901e3d065
1321
1329
  type: agent
1322
- size: 19408
1330
+ size: 20397
1323
1331
  - path: development/agents/analyst.md
1324
1332
  hash: sha256:35150d764c6dc74bc02b61a4d613c9278e87ffb209403db23991339fdda4f8e2
1325
1333
  type: agent
@@ -1337,9 +1345,9 @@ files:
1337
1345
  type: agent
1338
1346
  size: 1385
1339
1347
  - path: development/agents/data-engineer.md
1340
- hash: sha256:61ca7c661e2634aa45583b21fb3fc34213bae89803d92e1e5f08759a04c230a0
1348
+ hash: sha256:41c791fbdf43f700f2e78418c8af18197d1135741bc7845d03013f726b125f6f
1341
1349
  type: agent
1342
- size: 21875
1350
+ size: 21922
1343
1351
  - path: development/agents/data-engineer/MEMORY.md
1344
1352
  hash: sha256:20024028651bf2078bf4e58e38aaa84191521ef9b5c11b044eb152a026ec8412
1345
1353
  type: agent
@@ -1353,9 +1361,9 @@ files:
1353
1361
  type: agent
1354
1362
  size: 2486
1355
1363
  - path: development/agents/devops.md
1356
- hash: sha256:a41d02fe38b086211f4c1985b8da5e4624e21767466325032aeb9b4899f8c6b0
1364
+ hash: sha256:260b04cc608c1ddcd9ed2cf210e5d22f045002a4c0059f8220abcd3dc67a1cd8
1357
1365
  type: agent
1358
- size: 22836
1366
+ size: 25385
1359
1367
  - path: development/agents/devops/MEMORY.md
1360
1368
  hash: sha256:eb2ee887047c94db3441126cd0198cac44cec779026d7842a3a1c7eba936027f
1361
1369
  type: agent
@@ -1369,25 +1377,25 @@ files:
1369
1377
  type: agent
1370
1378
  size: 1220
1371
1379
  - path: development/agents/po.md
1372
- hash: sha256:f9c3ddcdbf602890802327aada808a58486a2de56acb974412c5f860dc8c9c4b
1380
+ hash: sha256:f0090329fd2c2871d3b46d0b2ea1bb9ff3fe48c589fc25ed3d90cf2032621cfd
1373
1381
  type: agent
1374
- size: 14343
1382
+ size: 14338
1375
1383
  - path: development/agents/po/MEMORY.md
1376
1384
  hash: sha256:4295cbf549671ec6a267bef05871d66fffeb6b898ada166ab1663f7d03632354
1377
1385
  type: agent
1378
1386
  size: 1376
1379
1387
  - path: development/agents/qa.md
1380
- hash: sha256:6dcefe468f9e4c854080a23ec6d91c78aacd54a5f504bf77af03a6f6221753c4
1388
+ hash: sha256:cf4a8f473067a9d2909072215bce7b13917c779442e6f858681bd8b9f0b0c3c0
1381
1389
  type: agent
1382
- size: 18961
1390
+ size: 18776
1383
1391
  - path: development/agents/qa/MEMORY.md
1384
1392
  hash: sha256:eec482f057d09635940e9a46bdd6cbb677af12dc4deed64bf71196d551b93abf
1385
1393
  type: agent
1386
1394
  size: 1367
1387
1395
  - path: development/agents/sm.md
1388
- hash: sha256:0176d251fd2c7b6368f1ad4ca71000085f660b038a71b3b2cf502516119c3661
1396
+ hash: sha256:b09334044d3ba581f5403d5d15e0d35c25e580634e712f24bb5a1bc73c9d1cf3
1389
1397
  type: agent
1390
- size: 12655
1398
+ size: 12664
1391
1399
  - path: development/agents/sm/MEMORY.md
1392
1400
  hash: sha256:4abaa92d85f4574a79a308f098e9ae719c28f72101e746f2a574ad92e120dcf4
1393
1401
  type: agent
@@ -1397,9 +1405,9 @@ files:
1397
1405
  type: agent
1398
1406
  size: 13894
1399
1407
  - path: development/agents/ux-design-expert.md
1400
- hash: sha256:5ca4ec06aaf8525668303f8bdef9c5bc868b1f084db905e8b7636c974c2faa94
1408
+ hash: sha256:b6a552405cf1a1eab76e307a505e8b431bffa30ab9681a16169b1427373b8a99
1401
1409
  type: agent
1402
- size: 19988
1410
+ size: 19995
1403
1411
  - path: development/agents/ux/MEMORY.md
1404
1412
  hash: sha256:39e36c9af4aa959fb547152bed812954c33a4c6c8d1a5aababd49052f229fde6
1405
1413
  type: agent
@@ -1681,9 +1689,9 @@ files:
1681
1689
  type: script
1682
1690
  size: 17607
1683
1691
  - path: development/scripts/unified-activation-pipeline.js
1684
- hash: sha256:de2d4a10b01da32d31c1f810feed429804da6869bb958d5a5ebe626589d0a2f6
1692
+ hash: sha256:6910a7f6b0cef65a0886e0b29bbcb0ee401ca4fb444eb255a7a368cb67327aa7
1685
1693
  type: script
1686
- size: 30125
1694
+ size: 30996
1687
1695
  - path: development/scripts/usage-tracker.js
1688
1696
  hash: sha256:6057623755bf0ee1d9e0fb36740fc41914a5f8ca8ad994d40edec260e273744b
1689
1697
  type: script
@@ -1993,9 +2001,9 @@ files:
1993
2001
  type: task
1994
2002
  size: 11021
1995
2003
  - path: development/tasks/dev-develop-story.md
1996
- hash: sha256:24ef3f76f37f82c8caa0bfaec4ac1ccf14ebd1cd60c6f0fe5c355d63b113784c
2004
+ hash: sha256:be8924aa0de759ca92a177b0ea12a5b076a3095ee2a9f530b74b3de19e996954
1997
2005
  type: task
1998
- size: 27355
2006
+ size: 29737
1999
2007
  - path: development/tasks/dev-improve-code-quality.md
2000
2008
  hash: sha256:6cf78aed6cca48bf13cc1f677f2cde86aea591785f428f9f56733de478107e2f
2001
2009
  type: task
@@ -2012,6 +2020,38 @@ files:
2012
2020
  hash: sha256:6dda51884ce7a5dd814d026aab3f2125d399e89b468b2125673c19ade9091ace
2013
2021
  type: task
2014
2022
  size: 11364
2023
+ - path: development/tasks/devops-pro-access-grant.md
2024
+ hash: sha256:11d2b342a39a95acfbd5dbb7abe9c25a9511035b9ca46abac86ec40f60d6a011
2025
+ type: task
2026
+ size: 2585
2027
+ - path: development/tasks/devops-pro-activate.md
2028
+ hash: sha256:910a62a5dc9c9780a774da3d79b1b3fe3b5834ecf7f1c074775774a8bdfebd65
2029
+ type: task
2030
+ size: 918
2031
+ - path: development/tasks/devops-pro-check-access.md
2032
+ hash: sha256:4dcff883a824899c531841bcdcda8bb5767a57fb49e8ca242a14875f41e7c694
2033
+ type: task
2034
+ size: 784
2035
+ - path: development/tasks/devops-pro-request-reset.md
2036
+ hash: sha256:fdb5710a9c85e39750016cb3ac3e60a69396f2edaa1fc3180f0ebbf71e2c470c
2037
+ type: task
2038
+ size: 738
2039
+ - path: development/tasks/devops-pro-resend-verification.md
2040
+ hash: sha256:e6ed30bb1bd15d1d138f09e991ec227fda48f7b2bfef6be2f7a49bcb95ab9cd4
2041
+ type: task
2042
+ size: 672
2043
+ - path: development/tasks/devops-pro-reset-password.md
2044
+ hash: sha256:1f48dd5d1110529cc20b91f41c3ad4ac2e4a095040f0bbc1aa2641955fb2559c
2045
+ type: task
2046
+ size: 843
2047
+ - path: development/tasks/devops-pro-validate-login.md
2048
+ hash: sha256:b9321e184b4a1c7e003b363a857be01f953aebd467b898891b701880243265fe
2049
+ type: task
2050
+ size: 692
2051
+ - path: development/tasks/devops-pro-verify-status.md
2052
+ hash: sha256:c6fff732a41370c125e5507f9284a3b567b5472a788df0cd874ad4e6c801150d
2053
+ type: task
2054
+ size: 636
2015
2055
  - path: development/tasks/document-gotchas.md
2016
2056
  hash: sha256:84858f6252bc2a85beda75971fed74e087edee3bdd537eb29f43132f0141fbf5
2017
2057
  type: task
@@ -2277,9 +2317,9 @@ files:
2277
2317
  type: task
2278
2318
  size: 15785
2279
2319
  - path: development/tasks/qa-gate.md
2280
- hash: sha256:25fc098d7c71554836925632c4a3f99aff9ade392e1ab1c669ae0983f49c6070
2320
+ hash: sha256:b151ea672e7ad0e9229807f86430e4f3483395ee4beae40f2f17d7f6228aee24
2281
2321
  type: task
2282
- size: 10759
2322
+ size: 13591
2283
2323
  - path: development/tasks/qa-generate-tests.md
2284
2324
  hash: sha256:245885950328b086ffbe9320bba2e814b3f6b5e3e5342bac904ccd814d4e8519
2285
2325
  type: task
@@ -2533,9 +2573,9 @@ files:
2533
2573
  type: task
2534
2574
  size: 3595
2535
2575
  - path: development/tasks/validate-next-story.md
2536
- hash: sha256:a7e0dbd89753d72248a6171d6bd4aa88d97e9c5051a5889d566c509d048d113c
2576
+ hash: sha256:f121211b1fbe915e181399d10bd30c435aec55c0af9b49d99c533473574a4907
2537
2577
  type: task
2538
- size: 16914
2578
+ size: 18848
2539
2579
  - path: development/tasks/validate-tech-preset.md
2540
2580
  hash: sha256:50a65289c223c1a79b0bebe4120f3f703df45d42522309e658f6d0f5c9fdb54e
2541
2581
  type: task
@@ -2956,14 +2996,22 @@ files:
2956
2996
  hash: sha256:1b72ae317c81c01ed1d6d518d64cf18fdecb9d408ab45dba6ad45cb39c6e3a1d
2957
2997
  type: script
2958
2998
  size: 40724
2999
+ - path: infrastructure/scripts/codex-skills-sync/bootstrap.js
3000
+ hash: sha256:56f4518586591d809cda89183e1af3b05c4e4c7369df992e7fdd7214ea5c6072
3001
+ type: script
3002
+ size: 22355
2959
3003
  - path: infrastructure/scripts/codex-skills-sync/index.js
2960
- hash: sha256:a7a3c97374c34a900acad13498f61f8a40517574480354218e349d1e1d3931a4
3004
+ hash: sha256:caf8e4f6fad8d5b5c123bf47561a632bdb2cfacb5f3a80265de81ba0dea3f6b9
2961
3005
  type: script
2962
- size: 5246
3006
+ size: 5533
3007
+ - path: infrastructure/scripts/codex-skills-sync/README.md
3008
+ hash: sha256:908f02e6b36e2bd5ec706427992955b411bb70db7b1e34b00d4845fe0fc9337a
3009
+ type: script
3010
+ size: 3737
2963
3011
  - path: infrastructure/scripts/codex-skills-sync/validate.js
2964
- hash: sha256:0fbc1baff25f20e3a37d3e4be51d146a75254d5ed638b3438d9f1bf0e587c997
3012
+ hash: sha256:295ec61dab026ff087c685ad4244fbbca2b9a220c24703ea9d8b1e7a2ca23772
2965
3013
  type: script
2966
- size: 4572
3014
+ size: 6366
2967
3015
  - path: infrastructure/scripts/collect-tool-usage.js
2968
3016
  hash: sha256:8a739b79182dc41e28b7e02aeb9ec1dde5ec49f3ca534399acc59711b3b92bbf
2969
3017
  type: script
@@ -3057,9 +3105,9 @@ files:
3057
3105
  type: script
3058
3106
  size: 18899
3059
3107
  - path: infrastructure/scripts/generate-settings-json.js
3060
- hash: sha256:bb4c6f664eb06622fd78eb455c0a74ee29ecee5fe47b4a7fcb2de8a89119ff5a
3108
+ hash: sha256:dc5b8803825ed749080925d7c17ece39b33a7faf3b02d08a445e8cc7408048a1
3061
3109
  type: script
3062
- size: 8292
3110
+ size: 9159
3063
3111
  - path: infrastructure/scripts/git-config-detector.js
3064
3112
  hash: sha256:52ed96d98fc6f9e83671d7d27f78dcff4f2475f3b8e339dc31922f6b2814ad78
3065
3113
  type: script
@@ -3077,17 +3125,17 @@ files:
3077
3125
  type: script
3078
3126
  size: 38453
3079
3127
  - path: infrastructure/scripts/ide-sync/agent-parser.js
3080
- hash: sha256:b4dceac261653d85d791b6cd8b010ebfaa75cab179477b193a2448482b4aa4d4
3128
+ hash: sha256:f1ed4d0e6dda1a616efb0cb31157fe36063cf9481c19ee7b4bada26cb12e0e80
3081
3129
  type: script
3082
- size: 8846
3130
+ size: 9097
3083
3131
  - path: infrastructure/scripts/ide-sync/gemini-commands.js
3084
3132
  hash: sha256:ba02b21af0d485b14d6e248b6d5644090646dc792f78eac515d17b88680d8549
3085
3133
  type: script
3086
3134
  size: 5534
3087
3135
  - path: infrastructure/scripts/ide-sync/index.js
3088
- hash: sha256:2f48896307b1fc3839f13169cab554c0a9a34f9d0e3961f1ccc07a2bbfaebdb2
3136
+ hash: sha256:a5269ff6d99103d389a6b3b923a7678ccfde3d7cd30debbc1fe0f5bd0bf9d7c1
3089
3137
  type: script
3090
- size: 14906
3138
+ size: 17246
3091
3139
  - path: infrastructure/scripts/ide-sync/README.md
3092
3140
  hash: sha256:c18c2563b2ca64580a4814edd3c20a79c96f33fa8b953ee02206ef0faad53d35
3093
3141
  type: script
@@ -3101,9 +3149,9 @@ files:
3101
3149
  type: script
3102
3150
  size: 2784
3103
3151
  - path: infrastructure/scripts/ide-sync/transformers/claude-code.js
3104
- hash: sha256:82eea7091a8bdc89f9067dd420b535574c9bdb2dee8c616eda99758069328a84
3152
+ hash: sha256:364ef939d1392397d13942dfc2360a3a75ff8edd77cd0ba88fc29622d5f75fd5
3105
3153
  type: script
3106
- size: 2225
3154
+ size: 6272
3107
3155
  - path: infrastructure/scripts/ide-sync/transformers/cursor.js
3108
3156
  hash: sha256:c24d24e4bec477c3b75340aeac08c5a4a2780001eec9c25e6b00d4f0af53d4f0
3109
3157
  type: script
@@ -3248,6 +3296,10 @@ files:
3248
3296
  hash: sha256:118d4cdbc64cf3238065f2fb98958305ae81e1384bc68f5a6c7b768f1232cd1e
3249
3297
  type: script
3250
3298
  size: 34686
3299
+ - path: infrastructure/scripts/repair-agent-references.js
3300
+ hash: sha256:63b5f580b783d5098c3ab3d8da11af9871306b3a1fc0f986f25c813eb4c4dd75
3301
+ type: script
3302
+ size: 7200
3251
3303
  - path: infrastructure/scripts/repository-detector.js
3252
3304
  hash: sha256:10ffca7f57d24d3729c71a9104a154500a3c72328d67884e26e38d22199af332
3253
3305
  type: script
@@ -3329,9 +3381,9 @@ files:
3329
3381
  type: script
3330
3382
  size: 14900
3331
3383
  - path: infrastructure/scripts/validate-claude-integration.js
3332
- hash: sha256:3b4e996c2597966fad966d1b2beaecdbda003f6529c41687dfe419d62a319ec6
3384
+ hash: sha256:0174d5e5e38eb8aa5aaa0a44d87f0f8dda623a24f318855c1e50e9d04f7596d6
3333
3385
  type: script
3334
- size: 2834
3386
+ size: 4774
3335
3387
  - path: infrastructure/scripts/validate-codex-integration.js
3336
3388
  hash: sha256:0f45a49898528d708ef17871bf6abae4f60483ef8520ce30a9bd4f5e507c585f
3337
3389
  type: script
@@ -3349,9 +3401,9 @@ files:
3349
3401
  type: script
3350
3402
  size: 12683
3351
3403
  - path: infrastructure/scripts/validate-paths.js
3352
- hash: sha256:17d453afbfb15bb85ffce096e0ae95a69838b10b3d7a9538ea35664ce851159a
3404
+ hash: sha256:fb37d099b52eda54e47dec07259687bec6049941cad37281f1de9c3f4095bfd9
3353
3405
  type: script
3354
- size: 3772
3406
+ size: 4217
3355
3407
  - path: infrastructure/scripts/validate-user-profile.js
3356
3408
  hash: sha256:a67e6385bb77d6359e91d87882c0641b1444a1f7acd1086203f20953a4f16a37
3357
3409
  type: script
@@ -112,7 +112,7 @@ function applyFilter(toolName, input, overrideConfig, registryPath) {
112
112
  filter_type: 'field',
113
113
  };
114
114
 
115
- default:
115
+ default: {
116
116
  // Unknown filter type — pass through
117
117
  const serialized = typeof input === 'string' ? input : JSON.stringify(input, null, 2);
118
118
  return {
@@ -122,6 +122,7 @@ function applyFilter(toolName, input, overrideConfig, registryPath) {
122
122
  reduction_pct: 0,
123
123
  filter_type: 'unknown',
124
124
  };
125
+ }
125
126
  }
126
127
  }
127
128
 
@@ -0,0 +1,21 @@
1
+ # aiox-master
2
+
3
+ <!-- ACORE-CLAUDE-AGENT-COMMAND: legacy-shim -->
4
+ <!-- Canonical Skill: .claude/skills/AIOX/agents/aiox-master/SKILL.md -->
5
+ <!-- Source: .aiox-core/development/agents/aiox-master.md -->
6
+
7
+ **Orion** - AIOX Master Orchestrator & Framework Developer
8
+
9
+ > Use when you need comprehensive expertise across all domains, framework component creation/modification, workflow orchestration, or running tasks that don't require a specialized persona.
10
+
11
+ ## Compatibility Activation
12
+
13
+ This command is a legacy compatibility shim. The canonical Claude activation payload is:
14
+
15
+ `.claude/skills/AIOX/agents/aiox-master/SKILL.md`
16
+
17
+ When this command is invoked:
18
+
19
+ 1. Read `.claude/skills/AIOX/agents/aiox-master/SKILL.md` in full.
20
+ 2. Follow the activation instructions from that skill.
21
+ 3. If the skill file is unavailable, read `.aiox-core/development/agents/aiox-master.md` as fallback.
@@ -0,0 +1,21 @@
1
+ # analyst
2
+
3
+ <!-- ACORE-CLAUDE-AGENT-COMMAND: legacy-shim -->
4
+ <!-- Canonical Skill: .claude/skills/AIOX/agents/analyst/SKILL.md -->
5
+ <!-- Source: .aiox-core/development/agents/analyst.md -->
6
+
7
+ **Atlas** - Business Analyst
8
+
9
+ > Use for market research, competitive analysis, user research, brainstorming session facilitation, structured ideation workshops, feasibility studies, industry trends analysis, project discovery (brownfield documentation), and research report creation. NOT for: PRD creation or product strategy → Use @pm. Technical architecture decisions or technology selec...
10
+
11
+ ## Compatibility Activation
12
+
13
+ This command is a legacy compatibility shim. The canonical Claude activation payload is:
14
+
15
+ `.claude/skills/AIOX/agents/analyst/SKILL.md`
16
+
17
+ When this command is invoked:
18
+
19
+ 1. Read `.claude/skills/AIOX/agents/analyst/SKILL.md` in full.
20
+ 2. Follow the activation instructions from that skill.
21
+ 3. If the skill file is unavailable, read `.aiox-core/development/agents/analyst.md` as fallback.
@@ -0,0 +1,21 @@
1
+ # architect
2
+
3
+ <!-- ACORE-CLAUDE-AGENT-COMMAND: legacy-shim -->
4
+ <!-- Canonical Skill: .claude/skills/AIOX/agents/architect/SKILL.md -->
5
+ <!-- Source: .aiox-core/development/agents/architect.md -->
6
+
7
+ **Aria** - Architect
8
+
9
+ > Use for system architecture (fullstack, backend, frontend, infrastructure), technology stack selection (technical evaluation), API design (REST/GraphQL/tRPC/WebSocket), security architecture, performance optimization, deployment strategy, and cross-cutting concerns (logging, monitoring, error handling). NOT for: Market research or competitive analysis → U...
10
+
11
+ ## Compatibility Activation
12
+
13
+ This command is a legacy compatibility shim. The canonical Claude activation payload is:
14
+
15
+ `.claude/skills/AIOX/agents/architect/SKILL.md`
16
+
17
+ When this command is invoked:
18
+
19
+ 1. Read `.claude/skills/AIOX/agents/architect/SKILL.md` in full.
20
+ 2. Follow the activation instructions from that skill.
21
+ 3. If the skill file is unavailable, read `.aiox-core/development/agents/architect.md` as fallback.
@@ -0,0 +1,21 @@
1
+ # data-engineer
2
+
3
+ <!-- ACORE-CLAUDE-AGENT-COMMAND: legacy-shim -->
4
+ <!-- Canonical Skill: .claude/skills/AIOX/agents/data-engineer/SKILL.md -->
5
+ <!-- Source: .aiox-core/development/agents/data-engineer.md -->
6
+
7
+ **Dara** - Database Architect & Operations Engineer
8
+
9
+ > Use for database design, schema architecture, Supabase configuration, RLS policies, migrations, query optimization, data modeling, operations, and monitoring
10
+
11
+ ## Compatibility Activation
12
+
13
+ This command is a legacy compatibility shim. The canonical Claude activation payload is:
14
+
15
+ `.claude/skills/AIOX/agents/data-engineer/SKILL.md`
16
+
17
+ When this command is invoked:
18
+
19
+ 1. Read `.claude/skills/AIOX/agents/data-engineer/SKILL.md` in full.
20
+ 2. Follow the activation instructions from that skill.
21
+ 3. If the skill file is unavailable, read `.aiox-core/development/agents/data-engineer.md` as fallback.
@@ -0,0 +1,21 @@
1
+ # dev
2
+
3
+ <!-- ACORE-CLAUDE-AGENT-COMMAND: legacy-shim -->
4
+ <!-- Canonical Skill: .claude/skills/AIOX/agents/dev/SKILL.md -->
5
+ <!-- Source: .aiox-core/development/agents/dev.md -->
6
+
7
+ **Dex** - Full Stack Developer
8
+
9
+ > Use for code implementation, debugging, refactoring, and development best practices
10
+
11
+ ## Compatibility Activation
12
+
13
+ This command is a legacy compatibility shim. The canonical Claude activation payload is:
14
+
15
+ `.claude/skills/AIOX/agents/dev/SKILL.md`
16
+
17
+ When this command is invoked:
18
+
19
+ 1. Read `.claude/skills/AIOX/agents/dev/SKILL.md` in full.
20
+ 2. Follow the activation instructions from that skill.
21
+ 3. If the skill file is unavailable, read `.aiox-core/development/agents/dev.md` as fallback.
@@ -0,0 +1,21 @@
1
+ # devops
2
+
3
+ <!-- ACORE-CLAUDE-AGENT-COMMAND: legacy-shim -->
4
+ <!-- Canonical Skill: .claude/skills/AIOX/agents/devops/SKILL.md -->
5
+ <!-- Source: .aiox-core/development/agents/devops.md -->
6
+
7
+ **Gage** - GitHub Repository Manager & DevOps Specialist
8
+
9
+ > Use for repository operations, version management, CI/CD, quality gates, and GitHub push operations. ONLY agent authorized to push to remote repository.
10
+
11
+ ## Compatibility Activation
12
+
13
+ This command is a legacy compatibility shim. The canonical Claude activation payload is:
14
+
15
+ `.claude/skills/AIOX/agents/devops/SKILL.md`
16
+
17
+ When this command is invoked:
18
+
19
+ 1. Read `.claude/skills/AIOX/agents/devops/SKILL.md` in full.
20
+ 2. Follow the activation instructions from that skill.
21
+ 3. If the skill file is unavailable, read `.aiox-core/development/agents/devops.md` as fallback.