aios-core 4.0.2 → 4.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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/registry-update-log.jsonl +113 -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/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 +97 -97
- package/.aios-core/local-config.yaml.template +68 -68
- package/.aios-core/manifests/agents.csv +1 -0
- package/.aios-core/manifests/schema/manifest-schema.json +190 -190
- package/.aios-core/manifests/tasks.csv +121 -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 -0
- package/.claude/hooks/install-hooks.sh +41 -0
- package/.claude/hooks/mind-clone-governance.py +192 -0
- package/.claude/hooks/pre-commit-mmos-guard.sh +99 -0
- package/.claude/hooks/pre-commit-version-check.sh +156 -0
- package/.claude/hooks/read-protection.py +151 -0
- package/.claude/hooks/slug-validation.py +176 -0
- package/.claude/hooks/sql-governance.py +182 -0
- package/.claude/hooks/write-path-validation.py +194 -0
- 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/README.md +30 -7
- package/bin/aios-minimal.js +0 -0
- package/bin/aios.js +15 -15
- package/package.json +2 -4
- 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/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/.aios-core/lib/build.json +0 -1
|
@@ -0,0 +1,113 @@
|
|
|
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"}
|