evolcore 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/README.md +3 -3
- package/dist/agents/baseagent.js +6 -5
- package/dist/agents/claude-runner.js +1 -0
- package/dist/agents/codex-app-server-client.js +6 -2
- package/dist/agents/codex-runner.js +8 -3
- package/dist/aun/aid/control-aid.js +40 -27
- package/dist/aun/aid/domain.js +23 -0
- package/dist/channels/aun.js +26 -21
- package/dist/cli/bench.js +4 -3
- package/dist/cli/daemon-commands.js +189 -64
- package/dist/cli/data-command.js +62 -35
- package/dist/cli/init-channel.js +1 -1
- package/dist/cli/init.js +9 -13
- package/dist/cli/restart-monitor.js +102 -22
- package/dist/config/config-manager.js +34 -3
- package/dist/config/gateway-config.js +80 -35
- package/dist/config-store.js +15 -3
- package/dist/core/baseagent-loader.js +5 -3
- package/dist/core/capability/providers/codex-capability-provider.js +2 -2
- package/dist/core/channel-loader.js +10 -1
- package/dist/core/command/menu-handler.js +17 -6
- package/dist/core/data-migration.js +517 -24
- package/dist/core/protected-paths.js +12 -1
- package/dist/index.js +752 -700
- package/dist/ipc.js +2 -0
- package/dist/utils/codex-cli.js +39 -0
- package/dist/utils/cross-platform.js +147 -18
- package/dist/utils/instance-registry.js +43 -6
- package/dist/utils/process-introspect.js +7 -3
- package/kits/rules/01-overview.md +3 -2
- package/kits/schemas/_meta.json +2 -1
- package/kits/schemas/daemon.schema.4.json +132 -0
- package/package.json +1 -1
|
@@ -322,9 +322,20 @@ export function buildCodexHClassFilesystemRules(root = resolveRoot()) {
|
|
|
322
322
|
};
|
|
323
323
|
}
|
|
324
324
|
export function buildCodexProtectedFilesystemRules(root = resolveRoot()) {
|
|
325
|
+
const lClassRules = {};
|
|
326
|
+
for (const target of getExistingLClassReadOnlyTargets(root)) {
|
|
327
|
+
if (target.kind === 'directory') {
|
|
328
|
+
if (path.basename(target.path) === 'triggers')
|
|
329
|
+
lClassRules[target.path] = 'read';
|
|
330
|
+
lClassRules[path.join(target.path, '**')] = 'read';
|
|
331
|
+
}
|
|
332
|
+
else {
|
|
333
|
+
lClassRules[target.path] = 'read';
|
|
334
|
+
}
|
|
335
|
+
}
|
|
325
336
|
return {
|
|
326
337
|
...buildCodexHClassFilesystemRules(root),
|
|
327
|
-
...
|
|
338
|
+
...lClassRules,
|
|
328
339
|
};
|
|
329
340
|
}
|
|
330
341
|
export function hClassGrantIncludesProtectedPath(value, options = {}) {
|