aiden-runtime 3.16.2 → 3.18.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/README.md +185 -7
- package/config/devos.config.json +29 -19
- package/config/hardware.json +2 -2
- package/dist/api/dashboard.js +480 -0
- package/dist/api/server.js +150 -142
- package/dist/core/agentLoop.js +94 -13
- package/dist/core/channels/email.js +1 -1
- package/dist/core/modelRegistry.js +261 -0
- package/dist/core/permissionSystem.js +239 -0
- package/dist/core/pluginLoader.js +161 -0
- package/dist/core/skillLoader.js +6 -24
- package/dist/core/toolRegistry.js +316 -31
- package/dist/core/version.js +1 -1
- package/dist/providers/router.js +2 -1
- package/dist-bundle/cli.js +50946 -29225
- package/dist-bundle/index.js +6462 -5274
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aiden-runtime",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.18.0",
|
|
4
4
|
"description": "Autonomous AI Operating System — Local, Private, Free. Runs on your machine with Ollama.",
|
|
5
5
|
"author": "Taracod <hello@taracod.com>",
|
|
6
6
|
"license": "AGPL-3.0-only",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"devos-ai": "./dist/bin/npx-init.js",
|
|
28
28
|
"aiden": "./dist-bundle/cli.js"
|
|
29
29
|
},
|
|
30
|
-
"main": "./dist/
|
|
30
|
+
"main": "./dist/index.js",
|
|
31
31
|
"files": [
|
|
32
32
|
"dist/",
|
|
33
33
|
"dist-bundle/cli.js",
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
"test:full": "npx ts-node tests/full-suite.ts",
|
|
69
69
|
"test:audit": "npx ts-node tests/prompt_11.ts && npx ts-node tests/prompt_12.ts && npx ts-node tests/prompt_13.ts && npx ts-node tests/prompt_r1.ts && npx ts-node tests/prompt_15.ts && npx ts-node tests/prompt_15_1.ts && npx ts-node tests/prompt_14.ts && npx ts-node tests/prompt_r2.ts && npx ts-node tests/prompt_r3.ts && npx ts-node tests/prompt_16.ts && npx ts-node tests/prompt_17.ts && npx ts-node tests/prompt_18.ts && npx ts-node tests/prompt_19.ts && npx ts-node tests/prompt_20.ts && npx ts-node tests/prompt_21.ts && npx ts-node tests/prompt_22.ts && npx ts-node tests/prompt_23.ts && npx ts-node tests/prompt_release_v3_6.ts && npx ts-node tests/prompt_timer.ts && npx ts-node tests/prompt_speed.ts && npx ts-node tests/prompt_provider.ts && npx ts-node tests/prompt_streaming.ts && npx ts-node tests/prompt_cli_prod.ts",
|
|
70
70
|
"cli": "npx ts-node cli/aiden.ts",
|
|
71
|
+
"uninstall": "powershell -ExecutionPolicy Bypass -File scripts\\uninstall.ps1",
|
|
71
72
|
"livepulse": "powershell -ExecutionPolicy Bypass -File scripts\\livepulse.ps1",
|
|
72
73
|
"obfuscate": "javascript-obfuscator dist/ --output dist/ --compact true --string-array true --rotate-string-array true --string-array-threshold 0.75",
|
|
73
74
|
"release": "node scripts/release.js"
|