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.
- package/.aios-core/.session/current-session.json +14 -0
- package/.aios-core/core/registry/registry-schema.json +166 -166
- package/.aios-core/core/registry/service-registry.json +6585 -6585
- package/.aios-core/data/entity-registry.yaml +208 -8
- package/.aios-core/data/registry-update-log.jsonl +165 -0
- package/.aios-core/development/scripts/approval-workflow.js +642 -642
- package/.aios-core/development/scripts/backup-manager.js +606 -606
- package/.aios-core/development/scripts/branch-manager.js +389 -389
- package/.aios-core/development/scripts/code-quality-improver.js +1311 -1311
- package/.aios-core/development/scripts/commit-message-generator.js +849 -849
- package/.aios-core/development/scripts/conflict-resolver.js +674 -674
- package/.aios-core/development/scripts/dependency-analyzer.js +637 -637
- package/.aios-core/development/scripts/diff-generator.js +351 -351
- package/.aios-core/development/scripts/elicitation-engine.js +384 -384
- package/.aios-core/development/scripts/elicitation-session-manager.js +299 -299
- package/.aios-core/development/scripts/git-wrapper.js +461 -461
- package/.aios-core/development/scripts/manifest-preview.js +244 -244
- package/.aios-core/development/scripts/metrics-tracker.js +775 -775
- package/.aios-core/development/scripts/modification-validator.js +554 -554
- package/.aios-core/development/scripts/pattern-learner.js +1224 -1224
- package/.aios-core/development/scripts/performance-analyzer.js +757 -757
- package/.aios-core/development/scripts/refactoring-suggester.js +1138 -1138
- package/.aios-core/development/scripts/rollback-handler.js +530 -530
- package/.aios-core/development/scripts/security-checker.js +358 -358
- package/.aios-core/development/scripts/template-engine.js +239 -239
- package/.aios-core/development/scripts/template-validator.js +278 -278
- package/.aios-core/development/scripts/test-generator.js +843 -843
- package/.aios-core/development/scripts/transaction-manager.js +589 -589
- package/.aios-core/development/scripts/usage-tracker.js +673 -673
- package/.aios-core/development/scripts/validate-filenames.js +226 -226
- package/.aios-core/development/scripts/version-tracker.js +526 -526
- package/.aios-core/development/scripts/yaml-validator.js +396 -396
- package/.aios-core/development/tasks/validate-next-story.md +99 -2
- package/.aios-core/development/templates/service-template/README.md.hbs +158 -158
- package/.aios-core/development/templates/service-template/__tests__/index.test.ts.hbs +237 -237
- package/.aios-core/development/templates/service-template/client.ts.hbs +403 -403
- package/.aios-core/development/templates/service-template/errors.ts.hbs +182 -182
- package/.aios-core/development/templates/service-template/index.ts.hbs +120 -120
- package/.aios-core/development/templates/service-template/package.json.hbs +87 -87
- package/.aios-core/development/templates/service-template/types.ts.hbs +145 -145
- package/.aios-core/development/templates/squad-template/LICENSE +21 -21
- package/.aios-core/docs/SHARD-TRANSLATION-GUIDE.md +335 -0
- package/.aios-core/docs/component-creation-guide.md +458 -0
- package/.aios-core/docs/session-update-pattern.md +307 -0
- package/.aios-core/docs/standards/AIOS-FRAMEWORK-MASTER.md +1963 -0
- package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO-V2.1-SUMMARY.md +1190 -0
- package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO-V2.1.md +439 -0
- package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO.md +5398 -0
- package/.aios-core/docs/standards/V3-ARCHITECTURAL-DECISIONS.md +523 -0
- package/.aios-core/docs/template-syntax.md +267 -0
- package/.aios-core/docs/troubleshooting-guide.md +625 -0
- package/.aios-core/infrastructure/templates/aios-sync.yaml.template +193 -193
- package/.aios-core/infrastructure/templates/coderabbit.yaml.template +279 -279
- package/.aios-core/infrastructure/templates/github-workflows/ci.yml.template +169 -169
- package/.aios-core/infrastructure/templates/github-workflows/pr-automation.yml.template +330 -330
- package/.aios-core/infrastructure/templates/github-workflows/release.yml.template +196 -196
- package/.aios-core/infrastructure/templates/gitignore/gitignore-aios-base.tmpl +63 -63
- package/.aios-core/infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl +18 -18
- package/.aios-core/infrastructure/templates/gitignore/gitignore-node.tmpl +85 -85
- package/.aios-core/infrastructure/templates/gitignore/gitignore-python.tmpl +145 -145
- package/.aios-core/infrastructure/tests/utilities-audit-results.json +501 -0
- package/.aios-core/install-manifest.yaml +101 -101
- package/.aios-core/local-config.yaml.template +70 -70
- package/.aios-core/manifests/agents.csv +29 -0
- package/.aios-core/manifests/schema/manifest-schema.json +190 -190
- package/.aios-core/manifests/tasks.csv +198 -0
- package/.aios-core/manifests/workers.csv +204 -0
- package/.aios-core/monitor/hooks/lib/__init__.py +1 -1
- package/.aios-core/monitor/hooks/lib/enrich.py +58 -58
- package/.aios-core/monitor/hooks/lib/send_event.py +47 -47
- package/.aios-core/monitor/hooks/notification.py +29 -29
- package/.aios-core/monitor/hooks/post_tool_use.py +45 -45
- package/.aios-core/monitor/hooks/pre_compact.py +29 -29
- package/.aios-core/monitor/hooks/pre_tool_use.py +40 -40
- package/.aios-core/monitor/hooks/stop.py +29 -29
- package/.aios-core/monitor/hooks/subagent_stop.py +29 -29
- package/.aios-core/monitor/hooks/user_prompt_submit.py +38 -38
- package/.aios-core/product/templates/adr.hbs +125 -125
- package/.aios-core/product/templates/component-react-tmpl.tsx +98 -98
- package/.aios-core/product/templates/dbdr.hbs +241 -241
- package/.aios-core/product/templates/engine/schemas/adr.schema.json +102 -102
- package/.aios-core/product/templates/engine/schemas/dbdr.schema.json +205 -205
- package/.aios-core/product/templates/engine/schemas/epic.schema.json +175 -175
- package/.aios-core/product/templates/engine/schemas/pmdr.schema.json +175 -175
- package/.aios-core/product/templates/engine/schemas/prd-v2.schema.json +300 -300
- package/.aios-core/product/templates/engine/schemas/prd.schema.json +152 -152
- package/.aios-core/product/templates/engine/schemas/story.schema.json +222 -222
- package/.aios-core/product/templates/engine/schemas/task.schema.json +154 -154
- package/.aios-core/product/templates/epic.hbs +212 -212
- package/.aios-core/product/templates/eslintrc-security.json +32 -32
- package/.aios-core/product/templates/github-actions-cd.yml +212 -212
- package/.aios-core/product/templates/github-actions-ci.yml +172 -172
- package/.aios-core/product/templates/pmdr.hbs +186 -186
- package/.aios-core/product/templates/prd-v2.0.hbs +216 -216
- package/.aios-core/product/templates/prd.hbs +201 -201
- package/.aios-core/product/templates/shock-report-tmpl.html +502 -502
- package/.aios-core/product/templates/story.hbs +263 -263
- package/.aios-core/product/templates/task.hbs +170 -170
- package/.aios-core/product/templates/tmpl-comment-on-examples.sql +158 -158
- package/.aios-core/product/templates/tmpl-migration-script.sql +91 -91
- package/.aios-core/product/templates/tmpl-rls-granular-policies.sql +104 -104
- package/.aios-core/product/templates/tmpl-rls-kiss-policy.sql +10 -10
- package/.aios-core/product/templates/tmpl-rls-roles.sql +135 -135
- package/.aios-core/product/templates/tmpl-rls-simple.sql +77 -77
- package/.aios-core/product/templates/tmpl-rls-tenant.sql +152 -152
- package/.aios-core/product/templates/tmpl-rollback-script.sql +77 -77
- package/.aios-core/product/templates/tmpl-seed-data.sql +140 -140
- package/.aios-core/product/templates/tmpl-smoke-test.sql +16 -16
- package/.aios-core/product/templates/tmpl-staging-copy-merge.sql +139 -139
- package/.aios-core/product/templates/tmpl-stored-proc.sql +140 -140
- package/.aios-core/product/templates/tmpl-trigger.sql +152 -152
- package/.aios-core/product/templates/tmpl-view-materialized.sql +133 -133
- package/.aios-core/product/templates/tmpl-view.sql +177 -177
- package/.aios-core/product/templates/token-exports-css-tmpl.css +240 -240
- package/.aios-core/quality/schemas/quality-metrics.schema.json +233 -233
- package/.aios-core/scripts/migrate-framework-docs.sh +300 -300
- package/.aios-core/scripts/pm.sh +0 -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/.claude/rules/agent-authority.md +105 -0
- package/.claude/rules/coderabbit-integration.md +93 -0
- package/.claude/rules/ids-principles.md +112 -0
- package/.claude/rules/story-lifecycle.md +139 -0
- package/.claude/rules/workflow-execution.md +150 -0
- package/LICENSE +48 -48
- package/bin/aios-minimal.js +0 -0
- package/bin/aios.js +0 -0
- package/package.json +1 -1
- package/packages/aios-install/bin/aios-install.js +0 -0
- package/packages/aios-install/bin/edmcp.js +0 -0
- package/packages/aios-pro-cli/bin/aios-pro.js +0 -0
- package/packages/installer/src/wizard/pro-setup.js +433 -49
- package/scripts/check-markdown-links.py +352 -352
- package/scripts/code-intel-health-check.js +343 -0
- 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/.aios-core/lib/build.json +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
metadata:
|
|
2
2
|
version: 1.0.0
|
|
3
|
-
lastUpdated: '2026-02-
|
|
4
|
-
entityCount:
|
|
3
|
+
lastUpdated: '2026-02-15T23:35:00.000Z'
|
|
4
|
+
entityCount: 498
|
|
5
5
|
checksumAlgorithm: sha256
|
|
6
6
|
entities:
|
|
7
7
|
tasks:
|
|
@@ -1641,7 +1641,8 @@ entities:
|
|
|
1641
1641
|
- quality
|
|
1642
1642
|
- gate
|
|
1643
1643
|
- pre-push-quality-gate.md
|
|
1644
|
-
usedBy:
|
|
1644
|
+
usedBy:
|
|
1645
|
+
- publish-npm
|
|
1645
1646
|
dependencies:
|
|
1646
1647
|
- repository-detector
|
|
1647
1648
|
- N/A
|
|
@@ -2758,7 +2759,8 @@ entities:
|
|
|
2758
2759
|
- manage
|
|
2759
2760
|
- software
|
|
2760
2761
|
- releases
|
|
2761
|
-
usedBy:
|
|
2762
|
+
usedBy:
|
|
2763
|
+
- publish-npm
|
|
2762
2764
|
dependencies:
|
|
2763
2765
|
- package
|
|
2764
2766
|
- N/A
|
|
@@ -3887,6 +3889,27 @@ entities:
|
|
|
3887
3889
|
extensionPoints: []
|
|
3888
3890
|
checksum: sha256:093a9ee73e79ec5682d9161648f36710d635a0a7b074d45f4036c782bbc72bb2
|
|
3889
3891
|
lastVerified: '2026-02-10T15:31:01.205Z'
|
|
3892
|
+
publish-npm:
|
|
3893
|
+
path: .aios-core/development/tasks/publish-npm.md
|
|
3894
|
+
type: task
|
|
3895
|
+
purpose: 'Safe, validated npm publishing using a two-phase release strategy:'
|
|
3896
|
+
keywords:
|
|
3897
|
+
- publish
|
|
3898
|
+
- npm
|
|
3899
|
+
- publishing
|
|
3900
|
+
- 'pipeline:'
|
|
3901
|
+
- preview
|
|
3902
|
+
- latest
|
|
3903
|
+
usedBy: []
|
|
3904
|
+
dependencies:
|
|
3905
|
+
- release-management
|
|
3906
|
+
- github-devops-pre-push-quality-gate
|
|
3907
|
+
adaptability:
|
|
3908
|
+
score: 0.8
|
|
3909
|
+
constraints: []
|
|
3910
|
+
extensionPoints: []
|
|
3911
|
+
checksum: sha256:f7a0bb8fed5663c88ad691b8871fdf7a861b6a7c02599f0c2db3eb9393d353c8
|
|
3912
|
+
lastVerified: '2026-02-15T20:39:45.236Z'
|
|
3890
3913
|
templates:
|
|
3891
3914
|
activation-instructions-inline-greeting:
|
|
3892
3915
|
path: .aios-core/product/templates/activation-instructions-inline-greeting.yaml
|
|
@@ -5618,8 +5641,8 @@ entities:
|
|
|
5618
5641
|
score: 0.7
|
|
5619
5642
|
constraints: []
|
|
5620
5643
|
extensionPoints: []
|
|
5621
|
-
checksum: sha256:
|
|
5622
|
-
lastVerified: '2026-02-
|
|
5644
|
+
checksum: sha256:dd1ad8050ac6ea04ff634434be9b97f67239ee0a7342d669bc5618eb2b7a7f5b
|
|
5645
|
+
lastVerified: '2026-02-15T20:39:45.236Z'
|
|
5623
5646
|
usage-tracker:
|
|
5624
5647
|
path: .aios-core/development/scripts/usage-tracker.js
|
|
5625
5648
|
type: script
|
|
@@ -6506,14 +6529,15 @@ entities:
|
|
|
6506
6529
|
usedBy: []
|
|
6507
6530
|
dependencies:
|
|
6508
6531
|
- context-tracker
|
|
6532
|
+
- context-builder
|
|
6509
6533
|
- formatter
|
|
6510
6534
|
- memory-bridge
|
|
6511
6535
|
adaptability:
|
|
6512
6536
|
score: 0.4
|
|
6513
6537
|
constraints: []
|
|
6514
6538
|
extensionPoints: []
|
|
6515
|
-
checksum: sha256:
|
|
6516
|
-
lastVerified: '2026-02-
|
|
6539
|
+
checksum: sha256:65e9c48d8ba7991fcd32bb1ea0bd087ce6d709ebf7f5bc4fd4b2e947ee5ddf0f
|
|
6540
|
+
lastVerified: '2026-02-15T20:39:45.235Z'
|
|
6517
6541
|
ideation-engine:
|
|
6518
6542
|
path: .aios-core/core/ideation/ideation-engine.js
|
|
6519
6543
|
type: module
|
|
@@ -8491,6 +8515,137 @@ entities:
|
|
|
8491
8515
|
extensionPoints: []
|
|
8492
8516
|
checksum: sha256:3b927daec51d0a791f3fe4ef9aafc362773450e7cf50eb4b6d8ae9011d70df9a
|
|
8493
8517
|
lastVerified: '2026-02-12T12:53:14.532Z'
|
|
8518
|
+
consistency-collector:
|
|
8519
|
+
path: .aios-core/core/synapse/diagnostics/collectors/consistency-collector.js
|
|
8520
|
+
type: module
|
|
8521
|
+
purpose: Entity at .aios-core\core\synapse\diagnostics\collectors\consistency-collector.js
|
|
8522
|
+
keywords:
|
|
8523
|
+
- consistency
|
|
8524
|
+
- collector
|
|
8525
|
+
usedBy: []
|
|
8526
|
+
dependencies:
|
|
8527
|
+
- safe-read-json
|
|
8528
|
+
adaptability:
|
|
8529
|
+
score: 0.4
|
|
8530
|
+
constraints: []
|
|
8531
|
+
extensionPoints: []
|
|
8532
|
+
checksum: sha256:65f4255f87c9900400649dc8b9aedaac4851b5939d93e127778bd93cee99db12
|
|
8533
|
+
lastVerified: '2026-02-15T20:39:45.229Z'
|
|
8534
|
+
hook-collector:
|
|
8535
|
+
path: .aios-core/core/synapse/diagnostics/collectors/hook-collector.js
|
|
8536
|
+
type: module
|
|
8537
|
+
purpose: Entity at .aios-core\core\synapse\diagnostics\collectors\hook-collector.js
|
|
8538
|
+
keywords:
|
|
8539
|
+
- hook
|
|
8540
|
+
- collector
|
|
8541
|
+
usedBy: []
|
|
8542
|
+
dependencies: []
|
|
8543
|
+
adaptability:
|
|
8544
|
+
score: 0.4
|
|
8545
|
+
constraints: []
|
|
8546
|
+
extensionPoints: []
|
|
8547
|
+
checksum: sha256:9cd342cc0c2253296f931a977b20408370c1e1bebe02a22a757418d4d0630884
|
|
8548
|
+
lastVerified: '2026-02-15T20:39:45.231Z'
|
|
8549
|
+
output-analyzer:
|
|
8550
|
+
path: .aios-core/core/synapse/diagnostics/collectors/output-analyzer.js
|
|
8551
|
+
type: module
|
|
8552
|
+
purpose: string }>}
|
|
8553
|
+
keywords:
|
|
8554
|
+
- output
|
|
8555
|
+
- analyzer
|
|
8556
|
+
usedBy: []
|
|
8557
|
+
dependencies:
|
|
8558
|
+
- safe-read-json
|
|
8559
|
+
adaptability:
|
|
8560
|
+
score: 0.4
|
|
8561
|
+
constraints: []
|
|
8562
|
+
extensionPoints: []
|
|
8563
|
+
checksum: sha256:e6846b1aba0a6cba17c297a871861d4f8199d7500220bff296a6a3291e32493e
|
|
8564
|
+
lastVerified: '2026-02-15T20:39:45.232Z'
|
|
8565
|
+
quality-collector:
|
|
8566
|
+
path: .aios-core/core/synapse/diagnostics/collectors/quality-collector.js
|
|
8567
|
+
type: module
|
|
8568
|
+
purpose: Entity at .aios-core\core\synapse\diagnostics\collectors\quality-collector.js
|
|
8569
|
+
keywords:
|
|
8570
|
+
- quality
|
|
8571
|
+
- collector
|
|
8572
|
+
usedBy: []
|
|
8573
|
+
dependencies:
|
|
8574
|
+
- safe-read-json
|
|
8575
|
+
adaptability:
|
|
8576
|
+
score: 0.4
|
|
8577
|
+
constraints: []
|
|
8578
|
+
extensionPoints: []
|
|
8579
|
+
checksum: sha256:30ae299eab6d569d09afe3530a5b2f1ff35ef75366a1ab56a9e2a57d39d3611c
|
|
8580
|
+
lastVerified: '2026-02-15T20:39:45.232Z'
|
|
8581
|
+
relevance-matrix:
|
|
8582
|
+
path: .aios-core/core/synapse/diagnostics/collectors/relevance-matrix.js
|
|
8583
|
+
type: module
|
|
8584
|
+
purpose: Entity at .aios-core\core\synapse\diagnostics\collectors\relevance-matrix.js
|
|
8585
|
+
keywords:
|
|
8586
|
+
- relevance
|
|
8587
|
+
- matrix
|
|
8588
|
+
usedBy: []
|
|
8589
|
+
dependencies:
|
|
8590
|
+
- safe-read-json
|
|
8591
|
+
adaptability:
|
|
8592
|
+
score: 0.4
|
|
8593
|
+
constraints: []
|
|
8594
|
+
extensionPoints: []
|
|
8595
|
+
checksum: sha256:f92c4f7061dc82eed4310a27b69eade33d3015f9beb1bed688601a2dccbad22e
|
|
8596
|
+
lastVerified: '2026-02-15T20:39:45.233Z'
|
|
8597
|
+
safe-read-json:
|
|
8598
|
+
path: .aios-core/core/synapse/diagnostics/collectors/safe-read-json.js
|
|
8599
|
+
type: module
|
|
8600
|
+
purpose: Entity at .aios-core\core\synapse\diagnostics\collectors\safe-read-json.js
|
|
8601
|
+
keywords:
|
|
8602
|
+
- safe
|
|
8603
|
+
- read
|
|
8604
|
+
- json
|
|
8605
|
+
usedBy:
|
|
8606
|
+
- consistency-collector
|
|
8607
|
+
- output-analyzer
|
|
8608
|
+
- quality-collector
|
|
8609
|
+
- relevance-matrix
|
|
8610
|
+
- timing-collector
|
|
8611
|
+
dependencies: []
|
|
8612
|
+
adaptability:
|
|
8613
|
+
score: 0.4
|
|
8614
|
+
constraints: []
|
|
8615
|
+
extensionPoints: []
|
|
8616
|
+
checksum: sha256:dc7bcd13779207ad67b1c3929b7e1e0ccfa3563f3458c20cad28cb1922e9a74c
|
|
8617
|
+
lastVerified: '2026-02-15T20:39:45.233Z'
|
|
8618
|
+
timing-collector:
|
|
8619
|
+
path: .aios-core/core/synapse/diagnostics/collectors/timing-collector.js
|
|
8620
|
+
type: module
|
|
8621
|
+
purpose: Entity at .aios-core\core\synapse\diagnostics\collectors\timing-collector.js
|
|
8622
|
+
keywords:
|
|
8623
|
+
- timing
|
|
8624
|
+
- collector
|
|
8625
|
+
usedBy: []
|
|
8626
|
+
dependencies:
|
|
8627
|
+
- safe-read-json
|
|
8628
|
+
adaptability:
|
|
8629
|
+
score: 0.4
|
|
8630
|
+
constraints: []
|
|
8631
|
+
extensionPoints: []
|
|
8632
|
+
checksum: sha256:2523ce93f863a28f798d992c4f2fab041c91a09413b3186fd290e6035b391587
|
|
8633
|
+
lastVerified: '2026-02-15T20:39:45.234Z'
|
|
8634
|
+
report-formatter:
|
|
8635
|
+
path: .aios-core/core/synapse/diagnostics/report-formatter.js
|
|
8636
|
+
type: module
|
|
8637
|
+
purpose: Entity at .aios-core\core\synapse\diagnostics\report-formatter.js
|
|
8638
|
+
keywords:
|
|
8639
|
+
- report
|
|
8640
|
+
- formatter
|
|
8641
|
+
usedBy: []
|
|
8642
|
+
dependencies: []
|
|
8643
|
+
adaptability:
|
|
8644
|
+
score: 0.4
|
|
8645
|
+
constraints: []
|
|
8646
|
+
extensionPoints: []
|
|
8647
|
+
checksum: sha256:33faf5820fbe2559e425707ff6ce19ce20b046d7222814d4040e739317ff998e
|
|
8648
|
+
lastVerified: '2026-02-15T20:39:45.235Z'
|
|
8494
8649
|
agents:
|
|
8495
8650
|
aios-master:
|
|
8496
8651
|
path: .aios-core/development/agents/aios-master.md
|
|
@@ -8864,6 +9019,51 @@ entities:
|
|
|
8864
9019
|
extensionPoints: []
|
|
8865
9020
|
checksum: sha256:1a7262912c8c8e264d307f0d38a1109bdb2b9bff9ea7d8855c768835201aa59b
|
|
8866
9021
|
lastVerified: '2026-02-08T13:33:24.397Z'
|
|
9022
|
+
code-intel-health-check:
|
|
9023
|
+
path: scripts/code-intel-health-check.js
|
|
9024
|
+
type: script
|
|
9025
|
+
purpose: Health check and validation for Code Graph MCP provider. Outputs structured JSON with status, tools availability, and response time.
|
|
9026
|
+
keywords:
|
|
9027
|
+
- code-intelligence
|
|
9028
|
+
- health-check
|
|
9029
|
+
- mcp
|
|
9030
|
+
- code-graph
|
|
9031
|
+
- provider
|
|
9032
|
+
- validation
|
|
9033
|
+
usedBy:
|
|
9034
|
+
- NOG-1
|
|
9035
|
+
dependencies:
|
|
9036
|
+
- code-graph-mcp
|
|
9037
|
+
adaptability:
|
|
9038
|
+
score: 0.8
|
|
9039
|
+
constraints:
|
|
9040
|
+
- Requires code-graph-mcp pip package installed
|
|
9041
|
+
extensionPoints:
|
|
9042
|
+
- Additional provider checks can be added
|
|
9043
|
+
story: NOG-0
|
|
9044
|
+
lastVerified: '2026-02-15T23:30:00.000Z'
|
|
9045
|
+
code-graph-mcp-setup-guide:
|
|
9046
|
+
path: docs/guides/code-graph-mcp-setup.md
|
|
9047
|
+
type: guide
|
|
9048
|
+
purpose: Setup guide for Code Graph MCP installation, configuration, verification and troubleshooting.
|
|
9049
|
+
keywords:
|
|
9050
|
+
- code-graph
|
|
9051
|
+
- mcp
|
|
9052
|
+
- setup
|
|
9053
|
+
- installation
|
|
9054
|
+
- troubleshooting
|
|
9055
|
+
- guide
|
|
9056
|
+
usedBy:
|
|
9057
|
+
- NOG-0
|
|
9058
|
+
- NOG-1
|
|
9059
|
+
dependencies: []
|
|
9060
|
+
adaptability:
|
|
9061
|
+
score: 0.9
|
|
9062
|
+
constraints: []
|
|
9063
|
+
extensionPoints:
|
|
9064
|
+
- Additional provider setup guides can follow same pattern
|
|
9065
|
+
story: NOG-0
|
|
9066
|
+
lastVerified: '2026-02-15T23:30:00.000Z'
|
|
8867
9067
|
categories:
|
|
8868
9068
|
- id: tasks
|
|
8869
9069
|
description: Executable task workflows for agent operations
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
{"timestamp":"2026-02-09T01:35:50.188Z","action":"change","path":".aios-core/core/ids/registry-updater.js","trigger":"watcher"}
|
|
2
|
+
{"timestamp":"2026-02-09T01:35:51.410Z","action":"change","path":".aios-core/core/ids/registry-updater.js","trigger":"watcher"}
|
|
3
|
+
{"timestamp":"2026-02-09T01:46:55.279Z","action":"add","path":".aios-core/core/ids/registry-updater.js","trigger":"watcher"}
|
|
4
|
+
{"timestamp":"2026-02-09T01:46:55.280Z","action":"change","path":".aios-core/development/scripts/populate-entity-registry.js","trigger":"watcher"}
|
|
5
|
+
{"timestamp":"2026-02-09T01:46:55.767Z","action":"change","path":".aios-core/core/ids/registry-updater.js","trigger":"watcher"}
|
|
6
|
+
{"timestamp":"2026-02-09T12:44:21.491Z","action":"change","path":".aios-core/development/scripts/greeting-builder.js","trigger":"watcher"}
|
|
7
|
+
{"timestamp":"2026-02-09T16:37:21.100Z","action":"change","path":".aios-core/core-config.yaml","trigger":"watcher"}
|
|
8
|
+
{"timestamp":"2026-02-09T16:42:28.276Z","action":"change","path":".aios-core/core-config.yaml","trigger":"watcher"}
|
|
9
|
+
{"timestamp":"2026-02-09T19:40:00.813Z","action":"change","path":".aios-core/core/elicitation/session-manager.js","trigger":"watcher"}
|
|
10
|
+
{"timestamp":"2026-02-09T19:40:00.813Z","action":"add","path":".aios-core/core/memory/__tests__/active-modules.verify.js","trigger":"watcher"}
|
|
11
|
+
{"timestamp":"2026-02-09T19:40:00.815Z","action":"unlink","path":".aios-core/core/memory/context-snapshot.js","trigger":"watcher"}
|
|
12
|
+
{"timestamp":"2026-02-09T19:40:00.815Z","action":"unlink","path":".aios-core/core/memory/file-evolution-tracker.js","trigger":"watcher"}
|
|
13
|
+
{"timestamp":"2026-02-09T19:40:00.815Z","action":"unlink","path":".aios-core/core/memory/timeline-manager.js","trigger":"watcher"}
|
|
14
|
+
{"timestamp":"2026-02-09T20:43:07.611Z","action":"change","path":".aios-core/core/elicitation/session-manager.js","trigger":"watcher"}
|
|
15
|
+
{"timestamp":"2026-02-09T20:43:07.612Z","action":"add","path":".aios-core/core/memory/__tests__/active-modules.verify.js","trigger":"watcher"}
|
|
16
|
+
{"timestamp":"2026-02-09T20:43:07.613Z","action":"unlink","path":".aios-core/core/memory/context-snapshot.js","trigger":"watcher"}
|
|
17
|
+
{"timestamp":"2026-02-09T20:43:07.613Z","action":"unlink","path":".aios-core/core/memory/file-evolution-tracker.js","trigger":"watcher"}
|
|
18
|
+
{"timestamp":"2026-02-09T20:43:07.613Z","action":"unlink","path":".aios-core/core/memory/timeline-manager.js","trigger":"watcher"}
|
|
19
|
+
{"timestamp":"2026-02-10T10:56:07.232Z","action":"unlink","path":".aios-core/core/memory/__tests__/gaps-implementation.verify.js","trigger":"watcher"}
|
|
20
|
+
{"timestamp":"2026-02-10T10:56:13.032Z","action":"unlink","path":".aios-core/core/memory/__tests__/gaps-implementation.verify.js","trigger":"watcher"}
|
|
21
|
+
{"timestamp":"2026-02-10T11:16:46.663Z","action":"change","path":".aios-core/development/scripts/unified-activation-pipeline.js","trigger":"watcher"}
|
|
22
|
+
{"timestamp":"2026-02-10T11:53:27.333Z","action":"change","path":".aios-core/development/scripts/unified-activation-pipeline.js","trigger":"watcher"}
|
|
23
|
+
{"timestamp":"2026-02-10T14:51:55.741Z","action":"change","path":".aios-core/development/scripts/unified-activation-pipeline.js","trigger":"watcher"}
|
|
24
|
+
{"timestamp":"2026-02-10T15:31:01.198Z","action":"add","path":".aios-core/core/ids/circuit-breaker.js","trigger":"watcher"}
|
|
25
|
+
{"timestamp":"2026-02-10T15:31:01.199Z","action":"add","path":".aios-core/core/ids/framework-governor.js","trigger":"watcher"}
|
|
26
|
+
{"timestamp":"2026-02-10T15:31:01.199Z","action":"add","path":".aios-core/core/ids/gates/g1-epic-creation.js","trigger":"watcher"}
|
|
27
|
+
{"timestamp":"2026-02-10T15:31:01.200Z","action":"add","path":".aios-core/core/ids/gates/g2-story-creation.js","trigger":"watcher"}
|
|
28
|
+
{"timestamp":"2026-02-10T15:31:01.200Z","action":"add","path":".aios-core/core/ids/gates/g3-story-validation.js","trigger":"watcher"}
|
|
29
|
+
{"timestamp":"2026-02-10T15:31:01.200Z","action":"add","path":".aios-core/core/ids/gates/g4-dev-context.js","trigger":"watcher"}
|
|
30
|
+
{"timestamp":"2026-02-10T15:31:01.201Z","action":"add","path":".aios-core/core/ids/index.js","trigger":"watcher"}
|
|
31
|
+
{"timestamp":"2026-02-10T15:31:01.201Z","action":"add","path":".aios-core/core/ids/registry-healer.js","trigger":"watcher"}
|
|
32
|
+
{"timestamp":"2026-02-10T15:31:01.202Z","action":"add","path":".aios-core/core/ids/verification-gate.js","trigger":"watcher"}
|
|
33
|
+
{"timestamp":"2026-02-10T15:31:01.203Z","action":"change","path":".aios-core/development/agents/aios-master.md","trigger":"watcher"}
|
|
34
|
+
{"timestamp":"2026-02-10T15:31:01.203Z","action":"change","path":".aios-core/development/tasks/create-agent.md","trigger":"watcher"}
|
|
35
|
+
{"timestamp":"2026-02-10T15:31:01.203Z","action":"change","path":".aios-core/development/tasks/create-task.md","trigger":"watcher"}
|
|
36
|
+
{"timestamp":"2026-02-10T15:31:01.204Z","action":"change","path":".aios-core/development/tasks/create-workflow.md","trigger":"watcher"}
|
|
37
|
+
{"timestamp":"2026-02-10T15:31:01.204Z","action":"add","path":".aios-core/development/tasks/ids-governor.md","trigger":"watcher"}
|
|
38
|
+
{"timestamp":"2026-02-10T15:31:01.205Z","action":"add","path":".aios-core/development/tasks/ids-health.md","trigger":"watcher"}
|
|
39
|
+
{"timestamp":"2026-02-10T15:31:01.205Z","action":"change","path":".aios-core/development/tasks/modify-agent.md","trigger":"watcher"}
|
|
40
|
+
{"timestamp":"2026-02-10T15:31:01.206Z","action":"change","path":".aios-core/development/tasks/modify-task.md","trigger":"watcher"}
|
|
41
|
+
{"timestamp":"2026-02-10T15:31:01.206Z","action":"change","path":".aios-core/development/tasks/modify-workflow.md","trigger":"watcher"}
|
|
42
|
+
{"timestamp":"2026-02-10T15:57:41.482Z","action":"change","path":".aios-core/core/ids/circuit-breaker.js","trigger":"watcher"}
|
|
43
|
+
{"timestamp":"2026-02-10T15:57:41.483Z","action":"change","path":".aios-core/core/ids/framework-governor.js","trigger":"watcher"}
|
|
44
|
+
{"timestamp":"2026-02-10T15:57:41.484Z","action":"change","path":".aios-core/core/ids/index.js","trigger":"watcher"}
|
|
45
|
+
{"timestamp":"2026-02-10T15:57:42.781Z","action":"change","path":".aios-core/core/ids/circuit-breaker.js","trigger":"watcher"}
|
|
46
|
+
{"timestamp":"2026-02-10T15:57:42.782Z","action":"change","path":".aios-core/core/ids/framework-governor.js","trigger":"watcher"}
|
|
47
|
+
{"timestamp":"2026-02-10T15:57:42.783Z","action":"change","path":".aios-core/core/ids/index.js","trigger":"watcher"}
|
|
48
|
+
{"timestamp":"2026-02-10T16:04:16.607Z","action":"change","path":".aios-core/development/agents/aios-master.md","trigger":"watcher"}
|
|
49
|
+
{"timestamp":"2026-02-10T16:04:17.828Z","action":"change","path":".aios-core/development/agents/aios-master.md","trigger":"watcher"}
|
|
50
|
+
{"timestamp":"2026-02-10T22:22:12.922Z","action":"add","path":".aios-core/core/synapse/domain/domain-loader.js","trigger":"watcher"}
|
|
51
|
+
{"timestamp":"2026-02-10T22:22:12.923Z","action":"add","path":".aios-core/core/synapse/utils/paths.js","trigger":"watcher"}
|
|
52
|
+
{"timestamp":"2026-02-10T22:23:38.291Z","action":"add","path":".aios-core/core/synapse/domain/domain-loader.js","trigger":"watcher"}
|
|
53
|
+
{"timestamp":"2026-02-10T22:23:38.292Z","action":"add","path":".aios-core/core/synapse/utils/paths.js","trigger":"watcher"}
|
|
54
|
+
{"timestamp":"2026-02-11T01:36:37.955Z","action":"add","path":".aios-core/core/synapse/session/session-manager.js","trigger":"watcher"}
|
|
55
|
+
{"timestamp":"2026-02-11T01:37:39.540Z","action":"add","path":".aios-core/core/synapse/session/session-manager.js","trigger":"watcher"}
|
|
56
|
+
{"timestamp":"2026-02-11T01:54:05.967Z","action":"change","path":".aios-core/core/synapse/session/session-manager.js","trigger":"watcher"}
|
|
57
|
+
{"timestamp":"2026-02-11T01:54:22.657Z","action":"change","path":".aios-core/core/synapse/session/session-manager.js","trigger":"watcher"}
|
|
58
|
+
{"timestamp":"2026-02-11T02:17:11.046Z","action":"add","path":".aios-core/core/synapse/context/context-tracker.js","trigger":"watcher"}
|
|
59
|
+
{"timestamp":"2026-02-11T13:16:04.321Z","action":"add","path":".aios-core/core/synapse/layers/l0-constitution.js","trigger":"watcher"}
|
|
60
|
+
{"timestamp":"2026-02-11T13:16:04.322Z","action":"add","path":".aios-core/core/synapse/layers/l1-global.js","trigger":"watcher"}
|
|
61
|
+
{"timestamp":"2026-02-11T13:16:04.323Z","action":"add","path":".aios-core/core/synapse/layers/l2-agent.js","trigger":"watcher"}
|
|
62
|
+
{"timestamp":"2026-02-11T13:16:04.323Z","action":"add","path":".aios-core/core/synapse/layers/l3-workflow.js","trigger":"watcher"}
|
|
63
|
+
{"timestamp":"2026-02-11T13:16:04.323Z","action":"add","path":".aios-core/core/synapse/layers/layer-processor.js","trigger":"watcher"}
|
|
64
|
+
{"timestamp":"2026-02-11T14:08:24.874Z","action":"add","path":".aios-core/core/synapse/engine.js","trigger":"watcher"}
|
|
65
|
+
{"timestamp":"2026-02-11T14:08:24.875Z","action":"add","path":".aios-core/core/synapse/output/formatter.js","trigger":"watcher"}
|
|
66
|
+
{"timestamp":"2026-02-11T14:11:22.116Z","action":"add","path":".aios-core/core/synapse/layers/l4-task.js","trigger":"watcher"}
|
|
67
|
+
{"timestamp":"2026-02-11T14:11:22.116Z","action":"add","path":".aios-core/core/synapse/layers/l5-squad.js","trigger":"watcher"}
|
|
68
|
+
{"timestamp":"2026-02-11T14:11:22.117Z","action":"add","path":".aios-core/core/synapse/layers/l6-keyword.js","trigger":"watcher"}
|
|
69
|
+
{"timestamp":"2026-02-11T14:11:22.117Z","action":"add","path":".aios-core/core/synapse/layers/l7-star-command.js","trigger":"watcher"}
|
|
70
|
+
{"timestamp":"2026-02-11T14:13:09.605Z","action":"add","path":".aios-core/core/synapse/layers/l4-task.js","trigger":"watcher"}
|
|
71
|
+
{"timestamp":"2026-02-11T14:13:09.606Z","action":"add","path":".aios-core/core/synapse/layers/l5-squad.js","trigger":"watcher"}
|
|
72
|
+
{"timestamp":"2026-02-11T14:13:09.607Z","action":"add","path":".aios-core/core/synapse/layers/l6-keyword.js","trigger":"watcher"}
|
|
73
|
+
{"timestamp":"2026-02-11T14:13:09.607Z","action":"add","path":".aios-core/core/synapse/layers/l7-star-command.js","trigger":"watcher"}
|
|
74
|
+
{"timestamp":"2026-02-11T15:11:05.174Z","action":"change","path":".aios-core/core/synapse/engine.js","trigger":"watcher"}
|
|
75
|
+
{"timestamp":"2026-02-11T15:11:06.501Z","action":"change","path":".aios-core/core/synapse/engine.js","trigger":"watcher"}
|
|
76
|
+
{"timestamp":"2026-02-11T15:21:56.527Z","action":"add","path":".aios-core/core/synapse/engine.js","trigger":"watcher"}
|
|
77
|
+
{"timestamp":"2026-02-11T15:21:56.528Z","action":"add","path":".aios-core/core/synapse/output/formatter.js","trigger":"watcher"}
|
|
78
|
+
{"timestamp":"2026-02-11T15:24:23.198Z","action":"change","path":".aios-core/core/synapse/engine.js","trigger":"watcher"}
|
|
79
|
+
{"timestamp":"2026-02-11T15:26:01.173Z","action":"add","path":".aios-core/core/synapse/engine.js","trigger":"watcher"}
|
|
80
|
+
{"timestamp":"2026-02-11T15:26:01.174Z","action":"add","path":".aios-core/core/synapse/layers/l4-task.js","trigger":"watcher"}
|
|
81
|
+
{"timestamp":"2026-02-11T15:26:01.175Z","action":"add","path":".aios-core/core/synapse/layers/l5-squad.js","trigger":"watcher"}
|
|
82
|
+
{"timestamp":"2026-02-11T15:26:01.175Z","action":"add","path":".aios-core/core/synapse/layers/l6-keyword.js","trigger":"watcher"}
|
|
83
|
+
{"timestamp":"2026-02-11T15:26:01.176Z","action":"add","path":".aios-core/core/synapse/layers/l7-star-command.js","trigger":"watcher"}
|
|
84
|
+
{"timestamp":"2026-02-11T15:26:01.176Z","action":"add","path":".aios-core/core/synapse/output/formatter.js","trigger":"watcher"}
|
|
85
|
+
{"timestamp":"2026-02-11T16:43:45.730Z","action":"change","path":".aios-core/core/synapse/domain/domain-loader.js","trigger":"watcher"}
|
|
86
|
+
{"timestamp":"2026-02-11T16:43:45.730Z","action":"add","path":".aios-core/core/synapse/scripts/generate-constitution.js","trigger":"watcher"}
|
|
87
|
+
{"timestamp":"2026-02-11T16:44:35.266Z","action":"change","path":".aios-core/core/synapse/domain/domain-loader.js","trigger":"watcher"}
|
|
88
|
+
{"timestamp":"2026-02-11T16:44:35.267Z","action":"add","path":".aios-core/core/synapse/scripts/generate-constitution.js","trigger":"watcher"}
|
|
89
|
+
{"timestamp":"2026-02-11T16:44:46.866Z","action":"change","path":".aios-core/core/synapse/domain/domain-loader.js","trigger":"watcher"}
|
|
90
|
+
{"timestamp":"2026-02-11T16:44:46.867Z","action":"add","path":".aios-core/core/synapse/scripts/generate-constitution.js","trigger":"watcher"}
|
|
91
|
+
{"timestamp":"2026-02-11T18:14:54.443Z","action":"change","path":".aios-core/core/synapse/domain/domain-loader.js","trigger":"watcher"}
|
|
92
|
+
{"timestamp":"2026-02-11T18:14:54.444Z","action":"add","path":".aios-core/core/synapse/scripts/generate-constitution.js","trigger":"watcher"}
|
|
93
|
+
{"timestamp":"2026-02-11T18:15:17.526Z","action":"change","path":".aios-core/core/synapse/domain/domain-loader.js","trigger":"watcher"}
|
|
94
|
+
{"timestamp":"2026-02-11T18:15:17.527Z","action":"add","path":".aios-core/core/synapse/scripts/generate-constitution.js","trigger":"watcher"}
|
|
95
|
+
{"timestamp":"2026-02-11T18:20:08.122Z","action":"change","path":".aios-core/data/aios-kb.md","trigger":"watcher"}
|
|
96
|
+
{"timestamp":"2026-02-11T18:24:33.339Z","action":"change","path":".aios-core/data/aios-kb.md","trigger":"watcher"}
|
|
97
|
+
{"timestamp":"2026-02-11T18:24:43.853Z","action":"change","path":".aios-core/data/aios-kb.md","trigger":"watcher"}
|
|
98
|
+
{"timestamp":"2026-02-11T18:28:15.241Z","action":"change","path":".aios-core/core/synapse/domain/domain-loader.js","trigger":"watcher"}
|
|
99
|
+
{"timestamp":"2026-02-11T18:28:15.242Z","action":"add","path":".aios-core/core/synapse/scripts/generate-constitution.js","trigger":"watcher"}
|
|
100
|
+
{"timestamp":"2026-02-11T18:29:03.429Z","action":"change","path":".aios-core/core/synapse/domain/domain-loader.js","trigger":"watcher"}
|
|
101
|
+
{"timestamp":"2026-02-11T18:29:03.430Z","action":"add","path":".aios-core/core/synapse/scripts/generate-constitution.js","trigger":"watcher"}
|
|
102
|
+
{"timestamp":"2026-02-11T18:29:03.430Z","action":"change","path":".aios-core/data/aios-kb.md","trigger":"watcher"}
|
|
103
|
+
{"timestamp":"2026-02-12T12:53:14.530Z","action":"change","path":".aios-core/core/synapse/engine.js","trigger":"watcher"}
|
|
104
|
+
{"timestamp":"2026-02-12T12:53:14.531Z","action":"add","path":".aios-core/core/synapse/memory/memory-bridge.js","trigger":"watcher"}
|
|
105
|
+
{"timestamp":"2026-02-12T12:53:14.531Z","action":"change","path":".aios-core/core/synapse/output/formatter.js","trigger":"watcher"}
|
|
106
|
+
{"timestamp":"2026-02-12T12:53:14.532Z","action":"add","path":".aios-core/core/synapse/utils/tokens.js","trigger":"watcher"}
|
|
107
|
+
{"timestamp":"2026-02-12T13:06:47.836Z","action":"change","path":".aios-core/core/synapse/engine.js","trigger":"watcher"}
|
|
108
|
+
{"timestamp":"2026-02-12T13:06:47.836Z","action":"change","path":".aios-core/core/synapse/memory/memory-bridge.js","trigger":"watcher"}
|
|
109
|
+
{"timestamp":"2026-02-12T13:07:01.326Z","action":"change","path":".aios-core/core/synapse/engine.js","trigger":"watcher"}
|
|
110
|
+
{"timestamp":"2026-02-12T13:07:01.327Z","action":"change","path":".aios-core/core/synapse/memory/memory-bridge.js","trigger":"watcher"}
|
|
111
|
+
{"timestamp":"2026-02-12T13:07:21.219Z","action":"change","path":".aios-core/core/synapse/engine.js","trigger":"watcher"}
|
|
112
|
+
{"timestamp":"2026-02-12T13:07:21.219Z","action":"change","path":".aios-core/core/synapse/memory/memory-bridge.js","trigger":"watcher"}
|
|
113
|
+
{"timestamp":"2026-02-13T00:49:51.580Z","action":"change","path":".aios-core/development/scripts/unified-activation-pipeline.js","trigger":"watcher"}
|
|
114
|
+
{"timestamp":"2026-02-13T16:52:52.699Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/hook-collector.js","trigger":"watcher"}
|
|
115
|
+
{"timestamp":"2026-02-13T16:52:52.700Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/manifest-collector.js","trigger":"watcher"}
|
|
116
|
+
{"timestamp":"2026-02-13T16:52:52.701Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/pipeline-collector.js","trigger":"watcher"}
|
|
117
|
+
{"timestamp":"2026-02-13T16:52:52.701Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/session-collector.js","trigger":"watcher"}
|
|
118
|
+
{"timestamp":"2026-02-13T16:52:52.701Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/uap-collector.js","trigger":"watcher"}
|
|
119
|
+
{"timestamp":"2026-02-13T16:52:52.702Z","action":"add","path":".aios-core/core/synapse/diagnostics/report-formatter.js","trigger":"watcher"}
|
|
120
|
+
{"timestamp":"2026-02-13T16:52:52.703Z","action":"add","path":".aios-core/core/synapse/diagnostics/synapse-diagnostics.js","trigger":"watcher"}
|
|
121
|
+
{"timestamp":"2026-02-13T16:52:52.703Z","action":"change","path":".aios-core/development/scripts/unified-activation-pipeline.js","trigger":"watcher"}
|
|
122
|
+
{"timestamp":"2026-02-13T17:28:09.987Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/hook-collector.js","trigger":"watcher"}
|
|
123
|
+
{"timestamp":"2026-02-13T17:28:09.987Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/manifest-collector.js","trigger":"watcher"}
|
|
124
|
+
{"timestamp":"2026-02-13T17:28:09.988Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/pipeline-collector.js","trigger":"watcher"}
|
|
125
|
+
{"timestamp":"2026-02-13T17:28:09.988Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/session-collector.js","trigger":"watcher"}
|
|
126
|
+
{"timestamp":"2026-02-13T17:28:09.989Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/uap-collector.js","trigger":"watcher"}
|
|
127
|
+
{"timestamp":"2026-02-13T17:28:09.989Z","action":"add","path":".aios-core/core/synapse/diagnostics/report-formatter.js","trigger":"watcher"}
|
|
128
|
+
{"timestamp":"2026-02-13T17:28:09.989Z","action":"add","path":".aios-core/core/synapse/diagnostics/synapse-diagnostics.js","trigger":"watcher"}
|
|
129
|
+
{"timestamp":"2026-02-13T17:28:09.990Z","action":"change","path":".aios-core/development/scripts/unified-activation-pipeline.js","trigger":"watcher"}
|
|
130
|
+
{"timestamp":"2026-02-13T18:01:27.198Z","action":"change","path":".aios-core/core/synapse/diagnostics/collectors/hook-collector.js","trigger":"watcher"}
|
|
131
|
+
{"timestamp":"2026-02-13T18:01:27.199Z","action":"change","path":".aios-core/core/synapse/diagnostics/report-formatter.js","trigger":"watcher"}
|
|
132
|
+
{"timestamp":"2026-02-13T18:01:27.199Z","action":"change","path":".aios-core/core/synapse/diagnostics/synapse-diagnostics.js","trigger":"watcher"}
|
|
133
|
+
{"timestamp":"2026-02-13T18:01:32.668Z","action":"change","path":".aios-core/core/synapse/diagnostics/collectors/hook-collector.js","trigger":"watcher"}
|
|
134
|
+
{"timestamp":"2026-02-13T18:01:32.669Z","action":"change","path":".aios-core/core/synapse/diagnostics/report-formatter.js","trigger":"watcher"}
|
|
135
|
+
{"timestamp":"2026-02-13T18:01:32.669Z","action":"change","path":".aios-core/core/synapse/diagnostics/synapse-diagnostics.js","trigger":"watcher"}
|
|
136
|
+
{"timestamp":"2026-02-13T18:10:59.619Z","action":"change","path":".aios-core/core/synapse/diagnostics/report-formatter.js","trigger":"watcher"}
|
|
137
|
+
{"timestamp":"2026-02-13T18:10:59.620Z","action":"change","path":".aios-core/core/synapse/diagnostics/synapse-diagnostics.js","trigger":"watcher"}
|
|
138
|
+
{"timestamp":"2026-02-13T18:11:06.961Z","action":"change","path":".aios-core/core/synapse/diagnostics/report-formatter.js","trigger":"watcher"}
|
|
139
|
+
{"timestamp":"2026-02-13T18:11:06.962Z","action":"change","path":".aios-core/core/synapse/diagnostics/synapse-diagnostics.js","trigger":"watcher"}
|
|
140
|
+
{"timestamp":"2026-02-14T15:24:38.382Z","action":"change","path":".aios-core/core/synapse/diagnostics/synapse-diagnostics.js","trigger":"watcher"}
|
|
141
|
+
{"timestamp":"2026-02-14T15:44:26.945Z","action":"change","path":".aios-core/core/synapse/diagnostics/synapse-diagnostics.js","trigger":"watcher"}
|
|
142
|
+
{"timestamp":"2026-02-14T16:25:15.483Z","action":"change","path":".aios-core/core/ids/registry-updater.js","trigger":"watcher"}
|
|
143
|
+
{"timestamp":"2026-02-14T16:25:15.483Z","action":"change","path":".aios-core/development/scripts/unified-activation-pipeline.js","trigger":"watcher"}
|
|
144
|
+
{"timestamp":"2026-02-15T20:39:38.792Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/consistency-collector.js","trigger":"watcher"}
|
|
145
|
+
{"timestamp":"2026-02-15T20:39:38.797Z","action":"change","path":".aios-core/core/synapse/diagnostics/collectors/hook-collector.js","trigger":"watcher"}
|
|
146
|
+
{"timestamp":"2026-02-15T20:39:38.799Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/output-analyzer.js","trigger":"watcher"}
|
|
147
|
+
{"timestamp":"2026-02-15T20:39:38.800Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/quality-collector.js","trigger":"watcher"}
|
|
148
|
+
{"timestamp":"2026-02-15T20:39:38.800Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/relevance-matrix.js","trigger":"watcher"}
|
|
149
|
+
{"timestamp":"2026-02-15T20:39:38.801Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/safe-read-json.js","trigger":"watcher"}
|
|
150
|
+
{"timestamp":"2026-02-15T20:39:38.801Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/timing-collector.js","trigger":"watcher"}
|
|
151
|
+
{"timestamp":"2026-02-15T20:39:38.802Z","action":"change","path":".aios-core/core/synapse/diagnostics/report-formatter.js","trigger":"watcher"}
|
|
152
|
+
{"timestamp":"2026-02-15T20:39:38.803Z","action":"change","path":".aios-core/core/synapse/engine.js","trigger":"watcher"}
|
|
153
|
+
{"timestamp":"2026-02-15T20:39:38.803Z","action":"change","path":".aios-core/development/scripts/unified-activation-pipeline.js","trigger":"watcher"}
|
|
154
|
+
{"timestamp":"2026-02-15T20:39:38.804Z","action":"add","path":".aios-core/development/tasks/publish-npm.md","trigger":"watcher"}
|
|
155
|
+
{"timestamp":"2026-02-15T20:39:45.230Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/consistency-collector.js","trigger":"watcher"}
|
|
156
|
+
{"timestamp":"2026-02-15T20:39:45.231Z","action":"change","path":".aios-core/core/synapse/diagnostics/collectors/hook-collector.js","trigger":"watcher"}
|
|
157
|
+
{"timestamp":"2026-02-15T20:39:45.232Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/output-analyzer.js","trigger":"watcher"}
|
|
158
|
+
{"timestamp":"2026-02-15T20:39:45.232Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/quality-collector.js","trigger":"watcher"}
|
|
159
|
+
{"timestamp":"2026-02-15T20:39:45.233Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/relevance-matrix.js","trigger":"watcher"}
|
|
160
|
+
{"timestamp":"2026-02-15T20:39:45.233Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/safe-read-json.js","trigger":"watcher"}
|
|
161
|
+
{"timestamp":"2026-02-15T20:39:45.234Z","action":"add","path":".aios-core/core/synapse/diagnostics/collectors/timing-collector.js","trigger":"watcher"}
|
|
162
|
+
{"timestamp":"2026-02-15T20:39:45.235Z","action":"change","path":".aios-core/core/synapse/diagnostics/report-formatter.js","trigger":"watcher"}
|
|
163
|
+
{"timestamp":"2026-02-15T20:39:45.235Z","action":"change","path":".aios-core/core/synapse/engine.js","trigger":"watcher"}
|
|
164
|
+
{"timestamp":"2026-02-15T20:39:45.236Z","action":"change","path":".aios-core/development/scripts/unified-activation-pipeline.js","trigger":"watcher"}
|
|
165
|
+
{"timestamp":"2026-02-15T20:39:45.236Z","action":"add","path":".aios-core/development/tasks/publish-npm.md","trigger":"watcher"}
|