aiox-core 5.0.0 → 5.0.2
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.
- package/.aiox-core/data/entity-registry.yaml +5297 -1814
- package/.aiox-core/data/registry-update-log.jsonl +2 -0
- package/.aiox-core/development/templates/service-template/README.md.hbs +158 -158
- package/.aiox-core/development/templates/service-template/__tests__/index.test.ts.hbs +237 -237
- package/.aiox-core/development/templates/service-template/client.ts.hbs +403 -403
- package/.aiox-core/development/templates/service-template/errors.ts.hbs +182 -182
- package/.aiox-core/development/templates/service-template/index.ts.hbs +120 -120
- package/.aiox-core/development/templates/service-template/package.json.hbs +87 -87
- package/.aiox-core/development/templates/service-template/types.ts.hbs +145 -145
- package/.aiox-core/development/templates/squad-template/LICENSE +21 -21
- package/.aiox-core/infrastructure/scripts/tool-resolver.js +4 -4
- package/.aiox-core/infrastructure/templates/aiox-sync.yaml.template +182 -182
- package/.aiox-core/infrastructure/templates/coderabbit.yaml.template +279 -279
- package/.aiox-core/infrastructure/templates/github-workflows/ci.yml.template +169 -169
- package/.aiox-core/infrastructure/templates/github-workflows/pr-automation.yml.template +330 -330
- package/.aiox-core/infrastructure/templates/github-workflows/release.yml.template +196 -196
- package/.aiox-core/infrastructure/templates/gitignore/gitignore-aiox-base.tmpl +63 -63
- package/.aiox-core/infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl +18 -18
- package/.aiox-core/infrastructure/templates/gitignore/gitignore-node.tmpl +85 -85
- package/.aiox-core/infrastructure/templates/gitignore/gitignore-python.tmpl +145 -145
- package/.aiox-core/install-manifest.yaml +58 -58
- package/.aiox-core/local-config.yaml.template +71 -71
- package/.aiox-core/monitor/hooks/lib/__init__.py +1 -1
- package/.aiox-core/monitor/hooks/lib/enrich.py +58 -58
- package/.aiox-core/monitor/hooks/lib/send_event.py +47 -47
- package/.aiox-core/monitor/hooks/notification.py +29 -29
- package/.aiox-core/monitor/hooks/post_tool_use.py +45 -45
- package/.aiox-core/monitor/hooks/pre_compact.py +29 -29
- package/.aiox-core/monitor/hooks/pre_tool_use.py +40 -40
- package/.aiox-core/monitor/hooks/stop.py +29 -29
- package/.aiox-core/monitor/hooks/subagent_stop.py +29 -29
- package/.aiox-core/monitor/hooks/user_prompt_submit.py +38 -38
- package/.aiox-core/product/templates/adr.hbs +125 -125
- package/.aiox-core/product/templates/dbdr.hbs +241 -241
- package/.aiox-core/product/templates/engine/elicitation.js +2 -3
- package/.aiox-core/product/templates/epic.hbs +212 -212
- package/.aiox-core/product/templates/pmdr.hbs +186 -186
- package/.aiox-core/product/templates/prd-v2.0.hbs +216 -216
- package/.aiox-core/product/templates/prd.hbs +201 -201
- package/.aiox-core/product/templates/story.hbs +263 -263
- package/.aiox-core/product/templates/task.hbs +170 -170
- package/.aiox-core/product/templates/tmpl-comment-on-examples.sql +158 -158
- package/.aiox-core/product/templates/tmpl-migration-script.sql +91 -91
- package/.aiox-core/product/templates/tmpl-rls-granular-policies.sql +104 -104
- package/.aiox-core/product/templates/tmpl-rls-kiss-policy.sql +10 -10
- package/.aiox-core/product/templates/tmpl-rls-roles.sql +135 -135
- package/.aiox-core/product/templates/tmpl-rls-simple.sql +77 -77
- package/.aiox-core/product/templates/tmpl-rls-tenant.sql +152 -152
- package/.aiox-core/product/templates/tmpl-rollback-script.sql +77 -77
- package/.aiox-core/product/templates/tmpl-seed-data.sql +140 -140
- package/.aiox-core/product/templates/tmpl-smoke-test.sql +16 -16
- package/.aiox-core/product/templates/tmpl-staging-copy-merge.sql +139 -139
- package/.aiox-core/product/templates/tmpl-stored-proc.sql +140 -140
- package/.aiox-core/product/templates/tmpl-trigger.sql +152 -152
- package/.aiox-core/product/templates/tmpl-view-materialized.sql +133 -133
- package/.aiox-core/product/templates/tmpl-view.sql +177 -177
- package/.aiox-core/scripts/pm.sh +0 -0
- package/.claude/hooks/code-intel-pretool.cjs +107 -0
- package/.claude/hooks/enforce-architecture-first.py +196 -196
- package/.claude/hooks/mind-clone-governance.py +192 -192
- package/.claude/hooks/read-protection.py +151 -151
- package/.claude/hooks/slug-validation.py +176 -176
- package/.claude/hooks/sql-governance.py +182 -182
- package/.claude/hooks/write-path-validation.py +194 -194
- package/LICENSE +33 -33
- package/bin/aiox-graph.js +0 -0
- package/bin/aiox-minimal.js +0 -0
- package/bin/aiox.js +0 -0
- package/docs/guides/aios-workflows/README.md +247 -0
- package/docs/guides/aios-workflows/bob-orchestrator-workflow.md +1536 -0
- package/package.json +1 -1
- package/packages/aiox-install/bin/aiox-install.js +0 -0
- package/packages/aiox-install/bin/edmcp.js +0 -0
- package/packages/aiox-pro-cli/bin/aiox-pro.js +0 -0
- package/packages/installer/src/wizard/pro-setup.js +210 -123
- package/pro/README.md +66 -0
- package/pro/license/degradation.js +220 -0
- package/pro/license/errors.js +450 -0
- package/pro/license/feature-gate.js +354 -0
- package/pro/license/index.js +181 -0
- package/pro/license/license-api.js +679 -0
- package/pro/license/license-cache.js +523 -0
- package/pro/license/license-crypto.js +303 -0
- package/scripts/check-markdown-links.py +352 -352
- package/scripts/dashboard-parallel-dev.sh +0 -0
- package/scripts/dashboard-parallel-phase3.sh +0 -0
- package/scripts/dashboard-parallel-phase4.sh +0 -0
- package/scripts/glue/README.md +355 -0
- package/scripts/glue/compose-agent-prompt.cjs +362 -0
- package/scripts/install-monitor-hooks.sh +0 -0
- package/.aiox-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: 5.0.
|
|
11
|
-
generated_at: "2026-03-
|
|
10
|
+
version: 5.0.2
|
|
11
|
+
generated_at: "2026-03-06T11:46:12.517Z"
|
|
12
12
|
generator: scripts/generate-install-manifest.js
|
|
13
13
|
file_count: 1089
|
|
14
14
|
files:
|
|
@@ -1221,9 +1221,9 @@ files:
|
|
|
1221
1221
|
type: data
|
|
1222
1222
|
size: 9575
|
|
1223
1223
|
- path: data/entity-registry.yaml
|
|
1224
|
-
hash: sha256:
|
|
1224
|
+
hash: sha256:26d071d47598d2fd2297cb36dd9faa769e90c6d8da40a16205bd8e9d13c9b1c0
|
|
1225
1225
|
type: data
|
|
1226
|
-
size:
|
|
1226
|
+
size: 522301
|
|
1227
1227
|
- path: data/learned-patterns.yaml
|
|
1228
1228
|
hash: sha256:24ac0b160615583a0ff783d3da8af80b7f94191575d6db2054ec8e10a3f945dc
|
|
1229
1229
|
type: data
|
|
@@ -2583,19 +2583,19 @@ files:
|
|
|
2583
2583
|
- path: development/templates/service-template/__tests__/index.test.ts.hbs
|
|
2584
2584
|
hash: sha256:4617c189e75ab362d4ef2cabcc3ccce3480f914fd915af550469c17d1b68a4fe
|
|
2585
2585
|
type: template
|
|
2586
|
-
size:
|
|
2586
|
+
size: 9810
|
|
2587
2587
|
- path: development/templates/service-template/client.ts.hbs
|
|
2588
2588
|
hash: sha256:f342c60695fe611192002bdb8c04b3a0dbce6345b7fa39834ea1898f71689198
|
|
2589
2589
|
type: template
|
|
2590
|
-
size:
|
|
2590
|
+
size: 12213
|
|
2591
2591
|
- path: development/templates/service-template/errors.ts.hbs
|
|
2592
2592
|
hash: sha256:e0be40d8be19b71b26e35778eadffb20198e7ca88e9d140db9da1bfe12de01ec
|
|
2593
2593
|
type: template
|
|
2594
|
-
size:
|
|
2594
|
+
size: 5395
|
|
2595
2595
|
- path: development/templates/service-template/index.ts.hbs
|
|
2596
2596
|
hash: sha256:d44012d54b76ab98356c7163d257ca939f7fed122f10fecf896fe1e7e206d10a
|
|
2597
2597
|
type: template
|
|
2598
|
-
size:
|
|
2598
|
+
size: 3206
|
|
2599
2599
|
- path: development/templates/service-template/jest.config.js
|
|
2600
2600
|
hash: sha256:1681bfd7fbc0d330d3487d3427515847c4d57ef300833f573af59e0ad69ed159
|
|
2601
2601
|
type: template
|
|
@@ -2603,11 +2603,11 @@ files:
|
|
|
2603
2603
|
- path: development/templates/service-template/package.json.hbs
|
|
2604
2604
|
hash: sha256:d89d35f56992ee95c2ceddf17fa1d455c18007a4d24af914ba83cf4abc38bca9
|
|
2605
2605
|
type: template
|
|
2606
|
-
size:
|
|
2606
|
+
size: 2314
|
|
2607
2607
|
- path: development/templates/service-template/README.md.hbs
|
|
2608
2608
|
hash: sha256:2c3dd4c2bf6df56b9b6db439977be7e1cc35820438c0e023140eccf6ccd227a0
|
|
2609
2609
|
type: template
|
|
2610
|
-
size:
|
|
2610
|
+
size: 3584
|
|
2611
2611
|
- path: development/templates/service-template/tsconfig.json
|
|
2612
2612
|
hash: sha256:8b465fcbdd45c4d6821ba99aea62f2bd7998b1bca8de80486a1525e77d43c9a1
|
|
2613
2613
|
type: template
|
|
@@ -2615,7 +2615,7 @@ files:
|
|
|
2615
2615
|
- path: development/templates/service-template/types.ts.hbs
|
|
2616
2616
|
hash: sha256:3e52e0195003be8cd1225a3f27f4d040686c8b8c7762f71b41055f04cd1b841b
|
|
2617
2617
|
type: template
|
|
2618
|
-
size:
|
|
2618
|
+
size: 2661
|
|
2619
2619
|
- path: development/templates/squad-template/agents/example-agent.yaml
|
|
2620
2620
|
hash: sha256:824a1b349965e5d4ae85458c231b78260dc65497da75dada25b271f2cabbbe67
|
|
2621
2621
|
type: agent
|
|
@@ -2623,7 +2623,7 @@ files:
|
|
|
2623
2623
|
- path: development/templates/squad-template/LICENSE
|
|
2624
2624
|
hash: sha256:ff7017aa403270cf2c440f5ccb4240d0b08e54d8bf8a0424d34166e8f3e10138
|
|
2625
2625
|
type: template
|
|
2626
|
-
size:
|
|
2626
|
+
size: 1092
|
|
2627
2627
|
- path: development/templates/squad-template/package.json
|
|
2628
2628
|
hash: sha256:8f68627a0d74e49f94ae382d0c2b56ecb5889d00f3095966c742fb5afaf363db
|
|
2629
2629
|
type: template
|
|
@@ -3309,9 +3309,9 @@ files:
|
|
|
3309
3309
|
type: script
|
|
3310
3310
|
size: 5861
|
|
3311
3311
|
- path: infrastructure/scripts/tool-resolver.js
|
|
3312
|
-
hash: sha256:
|
|
3312
|
+
hash: sha256:2fa44e4a940d4c33570fd9b4495b5c39792c52ca91b98c4be2fb55cb974ad095
|
|
3313
3313
|
type: script
|
|
3314
|
-
size:
|
|
3314
|
+
size: 10997
|
|
3315
3315
|
- path: infrastructure/scripts/transaction-manager.js
|
|
3316
3316
|
hash: sha256:bed375a4d72928ecfa670626c3e504194c4bf4439eab399fc5b31c919e873e86
|
|
3317
3317
|
type: script
|
|
@@ -3367,11 +3367,11 @@ files:
|
|
|
3367
3367
|
- path: infrastructure/templates/aiox-sync.yaml.template
|
|
3368
3368
|
hash: sha256:0040ad8a9e25716a28631b102c9448b72fd72e84f992c3926eb97e9e514744bb
|
|
3369
3369
|
type: template
|
|
3370
|
-
size:
|
|
3370
|
+
size: 8567
|
|
3371
3371
|
- path: infrastructure/templates/coderabbit.yaml.template
|
|
3372
3372
|
hash: sha256:91a4a76bbc40767a4072fb6a87c480902bb800cfb0a11e9fc1b3183d8f7f3a80
|
|
3373
3373
|
type: template
|
|
3374
|
-
size:
|
|
3374
|
+
size: 8321
|
|
3375
3375
|
- path: infrastructure/templates/core-config/core-config-brownfield.tmpl.yaml
|
|
3376
3376
|
hash: sha256:9bdb0c0e09c765c991f9f142921f7f8e2c0d0ada717f41254161465dc0622d02
|
|
3377
3377
|
type: template
|
|
@@ -3383,11 +3383,11 @@ files:
|
|
|
3383
3383
|
- path: infrastructure/templates/github-workflows/ci.yml.template
|
|
3384
3384
|
hash: sha256:acbfa2a8a84141fd6a6b205eac74719772f01c221c0afe22ce951356f06a605d
|
|
3385
3385
|
type: template
|
|
3386
|
-
size:
|
|
3386
|
+
size: 5089
|
|
3387
3387
|
- path: infrastructure/templates/github-workflows/pr-automation.yml.template
|
|
3388
3388
|
hash: sha256:c236077b4567965a917e48df9a91cc42153ff97b00a9021c41a7e28179be9d0f
|
|
3389
3389
|
type: template
|
|
3390
|
-
size:
|
|
3390
|
+
size: 10939
|
|
3391
3391
|
- path: infrastructure/templates/github-workflows/README.md
|
|
3392
3392
|
hash: sha256:6b7b5cb32c28b3e562c81a96e2573ea61849b138c93ccac6e93c3adac26cadb5
|
|
3393
3393
|
type: template
|
|
@@ -3395,23 +3395,23 @@ files:
|
|
|
3395
3395
|
- path: infrastructure/templates/github-workflows/release.yml.template
|
|
3396
3396
|
hash: sha256:b771145e61a254a88dc6cca07869e4ece8229ce18be87132f59489cdf9a66ec6
|
|
3397
3397
|
type: template
|
|
3398
|
-
size:
|
|
3398
|
+
size: 6791
|
|
3399
3399
|
- path: infrastructure/templates/gitignore/gitignore-aiox-base.tmpl
|
|
3400
3400
|
hash: sha256:9088975ee2bf4d88e23db6ac3ea5d27cccdc72b03db44450300e2f872b02e935
|
|
3401
3401
|
type: template
|
|
3402
|
-
size:
|
|
3402
|
+
size: 851
|
|
3403
3403
|
- path: infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl
|
|
3404
3404
|
hash: sha256:ce4291a3cf5677050c9dafa320809e6b0ca5db7e7f7da0382d2396e32016a989
|
|
3405
3405
|
type: template
|
|
3406
|
-
size:
|
|
3406
|
+
size: 506
|
|
3407
3407
|
- path: infrastructure/templates/gitignore/gitignore-node.tmpl
|
|
3408
3408
|
hash: sha256:5179f78de7483274f5d7182569229088c71934db1fd37a63a40b3c6b815c9c8e
|
|
3409
3409
|
type: template
|
|
3410
|
-
size:
|
|
3410
|
+
size: 1036
|
|
3411
3411
|
- path: infrastructure/templates/gitignore/gitignore-python.tmpl
|
|
3412
3412
|
hash: sha256:d7aac0b1e6e340b774a372a9102b4379722588449ca82ac468cf77804bbc1e55
|
|
3413
3413
|
type: template
|
|
3414
|
-
size:
|
|
3414
|
+
size: 1725
|
|
3415
3415
|
- path: infrastructure/templates/project-docs/coding-standards-tmpl.md
|
|
3416
3416
|
hash: sha256:377acf85463df8ac9923fc59d7cfeba68a82f8353b99948ea1d28688e88bc4a9
|
|
3417
3417
|
type: template
|
|
@@ -3507,43 +3507,43 @@ files:
|
|
|
3507
3507
|
- path: monitor/hooks/lib/__init__.py
|
|
3508
3508
|
hash: sha256:bfab6ee249c52f412c02502479da649b69d044938acaa6ab0aa39dafe6dee9bf
|
|
3509
3509
|
type: monitor
|
|
3510
|
-
size:
|
|
3510
|
+
size: 30
|
|
3511
3511
|
- path: monitor/hooks/lib/enrich.py
|
|
3512
3512
|
hash: sha256:20dfa73b4b20d7a767e52c3ec90919709c4447c6e230902ba797833fc6ddc22c
|
|
3513
3513
|
type: monitor
|
|
3514
|
-
size:
|
|
3514
|
+
size: 1702
|
|
3515
3515
|
- path: monitor/hooks/lib/send_event.py
|
|
3516
3516
|
hash: sha256:59d61311f718fb373a5cf85fd7a01c23a4fd727e8e022ad6930bba533ef4615d
|
|
3517
3517
|
type: monitor
|
|
3518
|
-
size:
|
|
3518
|
+
size: 1237
|
|
3519
3519
|
- path: monitor/hooks/notification.py
|
|
3520
3520
|
hash: sha256:8a1a6ce0ff2b542014de177006093b9caec9b594e938a343dc6bd62df2504f22
|
|
3521
3521
|
type: monitor
|
|
3522
|
-
size:
|
|
3522
|
+
size: 528
|
|
3523
3523
|
- path: monitor/hooks/post_tool_use.py
|
|
3524
3524
|
hash: sha256:47dbe37073d432c55657647fc5b907ddb56efa859d5c3205e8362aa916d55434
|
|
3525
3525
|
type: monitor
|
|
3526
|
-
size:
|
|
3526
|
+
size: 1185
|
|
3527
3527
|
- path: monitor/hooks/pre_compact.py
|
|
3528
3528
|
hash: sha256:f287cf45e83deed6f1bc0e30bd9348dfa1bf08ad770c5e58bb34e3feb210b30b
|
|
3529
3529
|
type: monitor
|
|
3530
|
-
size:
|
|
3530
|
+
size: 529
|
|
3531
3531
|
- path: monitor/hooks/pre_tool_use.py
|
|
3532
3532
|
hash: sha256:a4d1d3ffdae9349e26a383c67c9137effff7d164ac45b2c87eea9fa1ab0d6d98
|
|
3533
3533
|
type: monitor
|
|
3534
|
-
size:
|
|
3534
|
+
size: 1021
|
|
3535
3535
|
- path: monitor/hooks/stop.py
|
|
3536
3536
|
hash: sha256:edb382f0cf46281a11a8588bc20eafa7aa2b5cc3f4ad775d71b3d20a7cfab385
|
|
3537
3537
|
type: monitor
|
|
3538
|
-
size:
|
|
3538
|
+
size: 519
|
|
3539
3539
|
- path: monitor/hooks/subagent_stop.py
|
|
3540
3540
|
hash: sha256:fa5357309247c71551dba0a19f28dd09bebde749db033d6657203b50929c0a42
|
|
3541
3541
|
type: monitor
|
|
3542
|
-
size:
|
|
3542
|
+
size: 541
|
|
3543
3543
|
- path: monitor/hooks/user_prompt_submit.py
|
|
3544
3544
|
hash: sha256:af57dca79ef55cdf274432f4abb4c20a9778b95e107ca148f47ace14782c5828
|
|
3545
3545
|
type: monitor
|
|
3546
|
-
size:
|
|
3546
|
+
size: 856
|
|
3547
3547
|
- path: package.json
|
|
3548
3548
|
hash: sha256:9fdf0dcee2dcec6c0643634ee384ba181ad077dcff1267d8807434d4cb4809c7
|
|
3549
3549
|
type: other
|
|
@@ -3691,7 +3691,7 @@ files:
|
|
|
3691
3691
|
- path: product/templates/adr.hbs
|
|
3692
3692
|
hash: sha256:d68653cae9e64414ad4f58ea941b6c6e337c5324c2c7247043eca1461a652d10
|
|
3693
3693
|
type: template
|
|
3694
|
-
size:
|
|
3694
|
+
size: 2337
|
|
3695
3695
|
- path: product/templates/agent-template.yaml
|
|
3696
3696
|
hash: sha256:98676fcc493c0d5f09264dcc52fcc2cf1129f9a195824ecb4c2ec035c2515121
|
|
3697
3697
|
type: template
|
|
@@ -3743,7 +3743,7 @@ files:
|
|
|
3743
3743
|
- path: product/templates/dbdr.hbs
|
|
3744
3744
|
hash: sha256:5a2781ffaa3da9fc663667b5a63a70b7edfc478ed14cad02fc6ed237ff216315
|
|
3745
3745
|
type: template
|
|
3746
|
-
size:
|
|
3746
|
+
size: 4380
|
|
3747
3747
|
- path: product/templates/design-story-tmpl.yaml
|
|
3748
3748
|
hash: sha256:2bfefc11ae2bcfc679dbd924c58f8b764fa23538c14cb25344d6edef41968f29
|
|
3749
3749
|
type: template
|
|
@@ -3753,9 +3753,9 @@ files:
|
|
|
3753
3753
|
type: template
|
|
3754
3754
|
size: 890
|
|
3755
3755
|
- path: product/templates/engine/elicitation.js
|
|
3756
|
-
hash: sha256:
|
|
3756
|
+
hash: sha256:1994cc9ecca5c9073f399b369b3a5611bb225c836da5d6cfe6d38ea1b85fefac
|
|
3757
3757
|
type: template
|
|
3758
|
-
size:
|
|
3758
|
+
size: 9272
|
|
3759
3759
|
- path: product/templates/engine/index.js
|
|
3760
3760
|
hash: sha256:6f2d9e32d1bd0b7c1d018b7586c829de6f2e51bf2575350816f9a6e4bf6b22a7
|
|
3761
3761
|
type: template
|
|
@@ -3807,7 +3807,7 @@ files:
|
|
|
3807
3807
|
- path: product/templates/epic.hbs
|
|
3808
3808
|
hash: sha256:dcbcc26f6dd8f3782b3ef17aee049b689f1d6d92931615c3df9513eca0de2ef7
|
|
3809
3809
|
type: template
|
|
3810
|
-
size:
|
|
3810
|
+
size: 4080
|
|
3811
3811
|
- path: product/templates/eslintrc-security.json
|
|
3812
3812
|
hash: sha256:657d40117261d6a52083984d29f9f88e79040926a64aa4c2058a602bfe91e0d5
|
|
3813
3813
|
type: template
|
|
@@ -3915,7 +3915,7 @@ files:
|
|
|
3915
3915
|
- path: product/templates/pmdr.hbs
|
|
3916
3916
|
hash: sha256:d529cebbb562faa82c70477ece70de7cda871eaa6896f2962b48b2a8b67b1cbe
|
|
3917
3917
|
type: template
|
|
3918
|
-
size:
|
|
3918
|
+
size: 3425
|
|
3919
3919
|
- path: product/templates/prd-tmpl.yaml
|
|
3920
3920
|
hash: sha256:25c239f40e05f24aee1986601a98865188dbe3ea00a705028efc3adad6d420f3
|
|
3921
3921
|
type: template
|
|
@@ -3923,11 +3923,11 @@ files:
|
|
|
3923
3923
|
- path: product/templates/prd-v2.0.hbs
|
|
3924
3924
|
hash: sha256:21a20ef5333a85a11f5326d35714e7939b51bab22bd6e28d49bacab755763bea
|
|
3925
3925
|
type: template
|
|
3926
|
-
size:
|
|
3926
|
+
size: 4728
|
|
3927
3927
|
- path: product/templates/prd.hbs
|
|
3928
3928
|
hash: sha256:4a1a030a5388c6a8bf2ce6ea85e54cae6cf1fe64f1bb2af7f17d349d3c24bf1d
|
|
3929
3929
|
type: template
|
|
3930
|
-
size:
|
|
3930
|
+
size: 3626
|
|
3931
3931
|
- path: product/templates/project-brief-tmpl.yaml
|
|
3932
3932
|
hash: sha256:b8d388268c24dc5018f48a87036d591b11cb122fafe9b59c17809b06ea5d9d58
|
|
3933
3933
|
type: template
|
|
@@ -3975,7 +3975,7 @@ files:
|
|
|
3975
3975
|
- path: product/templates/story.hbs
|
|
3976
3976
|
hash: sha256:3f0ac8b39907634a2b53f43079afc33663eee76f46e680d318ff253e0befc2c4
|
|
3977
3977
|
type: template
|
|
3978
|
-
size:
|
|
3978
|
+
size: 5846
|
|
3979
3979
|
- path: product/templates/task-execution-report.md
|
|
3980
3980
|
hash: sha256:e0f08a3e199234f3d2207ba8f435786b7d8e1b36174f46cb82fc3666b9a9309e
|
|
3981
3981
|
type: template
|
|
@@ -3987,67 +3987,67 @@ files:
|
|
|
3987
3987
|
- path: product/templates/task.hbs
|
|
3988
3988
|
hash: sha256:621e987e142c455cd290dc85d990ab860faa0221f66cf1f57ac296b076889ea5
|
|
3989
3989
|
type: template
|
|
3990
|
-
size:
|
|
3990
|
+
size: 2875
|
|
3991
3991
|
- path: product/templates/tmpl-comment-on-examples.sql
|
|
3992
3992
|
hash: sha256:254002c3fbc63cfcc5848b1d4b15822ce240bf5f57e6a1c8bb984e797edc2691
|
|
3993
3993
|
type: template
|
|
3994
|
-
size:
|
|
3994
|
+
size: 6373
|
|
3995
3995
|
- path: product/templates/tmpl-migration-script.sql
|
|
3996
3996
|
hash: sha256:44ef63ea475526d21a11e3c667c9fdb78a9fddace80fdbaa2312b7f2724fbbb5
|
|
3997
3997
|
type: template
|
|
3998
|
-
size:
|
|
3998
|
+
size: 3038
|
|
3999
3999
|
- path: product/templates/tmpl-rls-granular-policies.sql
|
|
4000
4000
|
hash: sha256:36c2fd8c6d9eebb5d164acb0fb0c87bc384d389264b4429ce21e77e06318f5f3
|
|
4001
4001
|
type: template
|
|
4002
|
-
size:
|
|
4002
|
+
size: 3426
|
|
4003
4003
|
- path: product/templates/tmpl-rls-kiss-policy.sql
|
|
4004
4004
|
hash: sha256:5210d37fce62e5a9a00e8d5366f5f75653cd518be73fbf96333ed8a6712453c7
|
|
4005
4005
|
type: template
|
|
4006
|
-
size:
|
|
4006
|
+
size: 309
|
|
4007
4007
|
- path: product/templates/tmpl-rls-roles.sql
|
|
4008
4008
|
hash: sha256:2d032a608a8e87440c3a430c7d69ddf9393d8813d8d4129270f640dd847425c3
|
|
4009
4009
|
type: template
|
|
4010
|
-
size:
|
|
4010
|
+
size: 4727
|
|
4011
4011
|
- path: product/templates/tmpl-rls-simple.sql
|
|
4012
4012
|
hash: sha256:f67af0fa1cdd2f2af9eab31575ac3656d82457421208fd9ccb8b57ca9785275e
|
|
4013
4013
|
type: template
|
|
4014
|
-
size:
|
|
4014
|
+
size: 2992
|
|
4015
4015
|
- path: product/templates/tmpl-rls-tenant.sql
|
|
4016
4016
|
hash: sha256:36629ed87a2c72311809cc3fb96298b6f38716bba35bc56c550ac39d3321757a
|
|
4017
4017
|
type: template
|
|
4018
|
-
size:
|
|
4018
|
+
size: 5130
|
|
4019
4019
|
- path: product/templates/tmpl-rollback-script.sql
|
|
4020
4020
|
hash: sha256:8b84046a98f1163faf7350322f43831447617c5a63a94c88c1a71b49804e022b
|
|
4021
4021
|
type: template
|
|
4022
|
-
size:
|
|
4022
|
+
size: 2734
|
|
4023
4023
|
- path: product/templates/tmpl-seed-data.sql
|
|
4024
4024
|
hash: sha256:a65e73298f46cd6a8e700f29b9d8d26e769e12a57751a943a63fd0fe15768615
|
|
4025
4025
|
type: template
|
|
4026
|
-
size:
|
|
4026
|
+
size: 5716
|
|
4027
4027
|
- path: product/templates/tmpl-smoke-test.sql
|
|
4028
4028
|
hash: sha256:aee7e48bb6d9c093769dee215cacc9769939501914e20e5ea8435b25fad10f3c
|
|
4029
4029
|
type: template
|
|
4030
|
-
size:
|
|
4030
|
+
size: 739
|
|
4031
4031
|
- path: product/templates/tmpl-staging-copy-merge.sql
|
|
4032
4032
|
hash: sha256:55988caeb47cc04261665ba7a37f4caa2aa5fac2e776fdbc5964e0587af24450
|
|
4033
4033
|
type: template
|
|
4034
|
-
size:
|
|
4034
|
+
size: 4220
|
|
4035
4035
|
- path: product/templates/tmpl-stored-proc.sql
|
|
4036
4036
|
hash: sha256:2b205ff99dc0adfade6047a4d79f5b50109e50ceb45386e5c886437692c7a2a3
|
|
4037
4037
|
type: template
|
|
4038
|
-
size:
|
|
4038
|
+
size: 3979
|
|
4039
4039
|
- path: product/templates/tmpl-trigger.sql
|
|
4040
4040
|
hash: sha256:93abdc92e1b475d1370094e69a9d1b18afd804da6acb768b878355c798bd8e0e
|
|
4041
4041
|
type: template
|
|
4042
|
-
size:
|
|
4042
|
+
size: 5424
|
|
4043
4043
|
- path: product/templates/tmpl-view-materialized.sql
|
|
4044
4044
|
hash: sha256:47935510f03d4ad9b2200748e65441ce6c2d6a7c74750395eca6831d77c48e91
|
|
4045
4045
|
type: template
|
|
4046
|
-
size:
|
|
4046
|
+
size: 4496
|
|
4047
4047
|
- path: product/templates/tmpl-view.sql
|
|
4048
4048
|
hash: sha256:22557b076003a856b32397f05fa44245a126521de907058a95e14dd02da67aff
|
|
4049
4049
|
type: template
|
|
4050
|
-
size:
|
|
4050
|
+
size: 5093
|
|
4051
4051
|
- path: product/templates/token-exports-css-tmpl.css
|
|
4052
4052
|
hash: sha256:d937b8d61cdc9e5b10fdff871c6cb41c9f756004d060d671e0ae26624a047f62
|
|
4053
4053
|
type: template
|
|
@@ -1,71 +1,71 @@
|
|
|
1
|
-
# ============================================
|
|
2
|
-
# AIOX Local Configuration (Level 4) — TEMPLATE
|
|
3
|
-
# ============================================
|
|
4
|
-
# Machine-specific overrides and secrets.
|
|
5
|
-
# Copy this file to local-config.yaml and customize:
|
|
6
|
-
# cp .aiox-core/local-config.yaml.template .aiox-core/local-config.yaml
|
|
7
|
-
#
|
|
8
|
-
# Or run: aiox config init-local
|
|
9
|
-
#
|
|
10
|
-
# WARNING: This file contains machine-specific secrets.
|
|
11
|
-
# DO NOT commit local-config.yaml to git.
|
|
12
|
-
# (It is already in .gitignore)
|
|
13
|
-
#
|
|
14
|
-
# Level: L4 (Local)
|
|
15
|
-
# Mutability: Editable
|
|
16
|
-
# Git status: Gitignored
|
|
17
|
-
# ADR: ADR-PRO-002 — Configuration Hierarchy
|
|
18
|
-
# ============================================
|
|
19
|
-
|
|
20
|
-
# --- IDE Configuration (Section 4) ---
|
|
21
|
-
ide:
|
|
22
|
-
selected:
|
|
23
|
-
- vscode
|
|
24
|
-
- codex
|
|
25
|
-
- gemini
|
|
26
|
-
- claude-code
|
|
27
|
-
configs:
|
|
28
|
-
vscode: true
|
|
29
|
-
codex: true
|
|
30
|
-
gemini: true
|
|
31
|
-
cursor: false
|
|
32
|
-
zed: false
|
|
33
|
-
claude-desktop: false
|
|
34
|
-
claude-code: true
|
|
35
|
-
|
|
36
|
-
# --- MCP Configuration (Section 5) ---
|
|
37
|
-
mcp:
|
|
38
|
-
enabled: true
|
|
39
|
-
config_location: ".claude/mcp.json"
|
|
40
|
-
docker_mcp:
|
|
41
|
-
enabled: true
|
|
42
|
-
gateway:
|
|
43
|
-
transport: "http"
|
|
44
|
-
url: "http://localhost:8080/mcp"
|
|
45
|
-
port: 8080
|
|
46
|
-
watch: true
|
|
47
|
-
default_preset: "minimal"
|
|
48
|
-
|
|
49
|
-
# --- CodeRabbit Secrets (Section 9 - secret portion) ---
|
|
50
|
-
coderabbit_integration:
|
|
51
|
-
installation_mode: "wsl"
|
|
52
|
-
wsl_config:
|
|
53
|
-
distribution: "Ubuntu"
|
|
54
|
-
installation_path: "~/.local/bin/coderabbit"
|
|
55
|
-
# Replace ${PROJECT_ROOT} with your actual project root (e.g., /home/user/myproject)
|
|
56
|
-
working_directory: "${PROJECT_ROOT}"
|
|
57
|
-
commands:
|
|
58
|
-
qa_pre_review_uncommitted: |
|
|
59
|
-
wsl bash -c 'cd ${PROJECT_ROOT} && ~/.local/bin/coderabbit --prompt-only -t uncommitted'
|
|
60
|
-
qa_story_review_committed: |
|
|
61
|
-
wsl bash -c 'cd ${PROJECT_ROOT} && ~/.local/bin/coderabbit --prompt-only -t committed --base main'
|
|
62
|
-
|
|
63
|
-
# --- Performance Overrides (Section 6 - local overrides) ---
|
|
64
|
-
# Uncomment to override framework defaults:
|
|
65
|
-
# performance:
|
|
66
|
-
# max_concurrent_operations: 8
|
|
67
|
-
|
|
68
|
-
# --- pvMindContext (optional per-machine override) ---
|
|
69
|
-
# Uncomment to override project-level pv_mind_context:
|
|
70
|
-
# pv_mind_context:
|
|
71
|
-
# enabled: false
|
|
1
|
+
# ============================================
|
|
2
|
+
# AIOX Local Configuration (Level 4) — TEMPLATE
|
|
3
|
+
# ============================================
|
|
4
|
+
# Machine-specific overrides and secrets.
|
|
5
|
+
# Copy this file to local-config.yaml and customize:
|
|
6
|
+
# cp .aiox-core/local-config.yaml.template .aiox-core/local-config.yaml
|
|
7
|
+
#
|
|
8
|
+
# Or run: aiox config init-local
|
|
9
|
+
#
|
|
10
|
+
# WARNING: This file contains machine-specific secrets.
|
|
11
|
+
# DO NOT commit local-config.yaml to git.
|
|
12
|
+
# (It is already in .gitignore)
|
|
13
|
+
#
|
|
14
|
+
# Level: L4 (Local)
|
|
15
|
+
# Mutability: Editable
|
|
16
|
+
# Git status: Gitignored
|
|
17
|
+
# ADR: ADR-PRO-002 — Configuration Hierarchy
|
|
18
|
+
# ============================================
|
|
19
|
+
|
|
20
|
+
# --- IDE Configuration (Section 4) ---
|
|
21
|
+
ide:
|
|
22
|
+
selected:
|
|
23
|
+
- vscode
|
|
24
|
+
- codex
|
|
25
|
+
- gemini
|
|
26
|
+
- claude-code
|
|
27
|
+
configs:
|
|
28
|
+
vscode: true
|
|
29
|
+
codex: true
|
|
30
|
+
gemini: true
|
|
31
|
+
cursor: false
|
|
32
|
+
zed: false
|
|
33
|
+
claude-desktop: false
|
|
34
|
+
claude-code: true
|
|
35
|
+
|
|
36
|
+
# --- MCP Configuration (Section 5) ---
|
|
37
|
+
mcp:
|
|
38
|
+
enabled: true
|
|
39
|
+
config_location: ".claude/mcp.json"
|
|
40
|
+
docker_mcp:
|
|
41
|
+
enabled: true
|
|
42
|
+
gateway:
|
|
43
|
+
transport: "http"
|
|
44
|
+
url: "http://localhost:8080/mcp"
|
|
45
|
+
port: 8080
|
|
46
|
+
watch: true
|
|
47
|
+
default_preset: "minimal"
|
|
48
|
+
|
|
49
|
+
# --- CodeRabbit Secrets (Section 9 - secret portion) ---
|
|
50
|
+
coderabbit_integration:
|
|
51
|
+
installation_mode: "wsl"
|
|
52
|
+
wsl_config:
|
|
53
|
+
distribution: "Ubuntu"
|
|
54
|
+
installation_path: "~/.local/bin/coderabbit"
|
|
55
|
+
# Replace ${PROJECT_ROOT} with your actual project root (e.g., /home/user/myproject)
|
|
56
|
+
working_directory: "${PROJECT_ROOT}"
|
|
57
|
+
commands:
|
|
58
|
+
qa_pre_review_uncommitted: |
|
|
59
|
+
wsl bash -c 'cd ${PROJECT_ROOT} && ~/.local/bin/coderabbit --prompt-only -t uncommitted'
|
|
60
|
+
qa_story_review_committed: |
|
|
61
|
+
wsl bash -c 'cd ${PROJECT_ROOT} && ~/.local/bin/coderabbit --prompt-only -t committed --base main'
|
|
62
|
+
|
|
63
|
+
# --- Performance Overrides (Section 6 - local overrides) ---
|
|
64
|
+
# Uncomment to override framework defaults:
|
|
65
|
+
# performance:
|
|
66
|
+
# max_concurrent_operations: 8
|
|
67
|
+
|
|
68
|
+
# --- pvMindContext (optional per-machine override) ---
|
|
69
|
+
# Uncomment to override project-level pv_mind_context:
|
|
70
|
+
# pv_mind_context:
|
|
71
|
+
# enabled: false
|
|
@@ -1 +1 @@
|
|
|
1
|
-
# AIOX Monitor Hooks Library
|
|
1
|
+
# AIOX Monitor Hooks Library
|
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
#!/usr/bin/env python3
|
|
2
|
-
"""
|
|
3
|
-
Enrich events with AIOX context (agent, story, task, etc.)
|
|
4
|
-
"""
|
|
5
|
-
|
|
6
|
-
import os
|
|
7
|
-
import re
|
|
8
|
-
from pathlib import Path
|
|
9
|
-
from typing import Any
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
def enrich_event(data: dict[str, Any]) -> dict[str, Any]:
|
|
13
|
-
"""Add AIOX context to event data."""
|
|
14
|
-
|
|
15
|
-
# Project detection
|
|
16
|
-
cwd = data.get("cwd", os.getcwd())
|
|
17
|
-
data["project"] = detect_project(cwd)
|
|
18
|
-
|
|
19
|
-
# AIOX context from environment
|
|
20
|
-
if os.environ.get("AIOX_AGENT"):
|
|
21
|
-
data["aiox_agent"] = os.environ["AIOX_AGENT"]
|
|
22
|
-
|
|
23
|
-
if os.environ.get("AIOX_STORY_ID"):
|
|
24
|
-
data["aiox_story_id"] = os.environ["AIOX_STORY_ID"]
|
|
25
|
-
|
|
26
|
-
if os.environ.get("AIOX_TASK_ID"):
|
|
27
|
-
data["aiox_task_id"] = os.environ["AIOX_TASK_ID"]
|
|
28
|
-
|
|
29
|
-
# Try to detect AIOX agent from user prompt if available
|
|
30
|
-
user_prompt = data.get("user_prompt", "")
|
|
31
|
-
if user_prompt:
|
|
32
|
-
detected_agent = detect_agent_from_prompt(user_prompt)
|
|
33
|
-
if detected_agent and not data.get("aiox_agent"):
|
|
34
|
-
data["aiox_agent"] = detected_agent
|
|
35
|
-
|
|
36
|
-
return data
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
def detect_project(cwd: str) -> str:
|
|
40
|
-
"""Detect project name from cwd."""
|
|
41
|
-
path = Path(cwd)
|
|
42
|
-
|
|
43
|
-
# Check for common project markers
|
|
44
|
-
markers = [".git", "package.json", "Cargo.toml", "go.mod", "pyproject.toml"]
|
|
45
|
-
for marker in markers:
|
|
46
|
-
if (path / marker).exists():
|
|
47
|
-
return path.name
|
|
48
|
-
|
|
49
|
-
return path.name
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
def detect_agent_from_prompt(prompt: str) -> str | None:
|
|
53
|
-
"""Detect AIOX agent activation from prompt."""
|
|
54
|
-
# Look for @agent patterns
|
|
55
|
-
match = re.search(r'@(dev|architect|qa|pm|po|sm|analyst|devops|aiox-master)', prompt.lower())
|
|
56
|
-
if match:
|
|
57
|
-
return match.group(1)
|
|
58
|
-
return None
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
Enrich events with AIOX context (agent, story, task, etc.)
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
import os
|
|
7
|
+
import re
|
|
8
|
+
from pathlib import Path
|
|
9
|
+
from typing import Any
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def enrich_event(data: dict[str, Any]) -> dict[str, Any]:
|
|
13
|
+
"""Add AIOX context to event data."""
|
|
14
|
+
|
|
15
|
+
# Project detection
|
|
16
|
+
cwd = data.get("cwd", os.getcwd())
|
|
17
|
+
data["project"] = detect_project(cwd)
|
|
18
|
+
|
|
19
|
+
# AIOX context from environment
|
|
20
|
+
if os.environ.get("AIOX_AGENT"):
|
|
21
|
+
data["aiox_agent"] = os.environ["AIOX_AGENT"]
|
|
22
|
+
|
|
23
|
+
if os.environ.get("AIOX_STORY_ID"):
|
|
24
|
+
data["aiox_story_id"] = os.environ["AIOX_STORY_ID"]
|
|
25
|
+
|
|
26
|
+
if os.environ.get("AIOX_TASK_ID"):
|
|
27
|
+
data["aiox_task_id"] = os.environ["AIOX_TASK_ID"]
|
|
28
|
+
|
|
29
|
+
# Try to detect AIOX agent from user prompt if available
|
|
30
|
+
user_prompt = data.get("user_prompt", "")
|
|
31
|
+
if user_prompt:
|
|
32
|
+
detected_agent = detect_agent_from_prompt(user_prompt)
|
|
33
|
+
if detected_agent and not data.get("aiox_agent"):
|
|
34
|
+
data["aiox_agent"] = detected_agent
|
|
35
|
+
|
|
36
|
+
return data
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def detect_project(cwd: str) -> str:
|
|
40
|
+
"""Detect project name from cwd."""
|
|
41
|
+
path = Path(cwd)
|
|
42
|
+
|
|
43
|
+
# Check for common project markers
|
|
44
|
+
markers = [".git", "package.json", "Cargo.toml", "go.mod", "pyproject.toml"]
|
|
45
|
+
for marker in markers:
|
|
46
|
+
if (path / marker).exists():
|
|
47
|
+
return path.name
|
|
48
|
+
|
|
49
|
+
return path.name
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
def detect_agent_from_prompt(prompt: str) -> str | None:
|
|
53
|
+
"""Detect AIOX agent activation from prompt."""
|
|
54
|
+
# Look for @agent patterns
|
|
55
|
+
match = re.search(r'@(dev|architect|qa|pm|po|sm|analyst|devops|aiox-master)', prompt.lower())
|
|
56
|
+
if match:
|
|
57
|
+
return match.group(1)
|
|
58
|
+
return None
|