aiden-runtime 3.19.4 → 3.19.5

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/package.json CHANGED
@@ -1,266 +1,267 @@
1
- {
2
- "name": "aiden-runtime",
3
- "version": "3.19.4",
4
- "description": "Autonomous AI Operating System — Local, Private, Free. Runs on your machine with Ollama.",
5
- "author": "Taracod <hello@taracod.com>",
6
- "license": "AGPL-3.0-only",
7
- "keywords": [
8
- "ai",
9
- "autonomous-agent",
10
- "agent",
11
- "personal-ai",
12
- "ollama",
13
- "local-ai",
14
- "devos",
15
- "llm",
16
- "ai-os",
17
- "self-hosted-ai",
18
- "open-source-ai",
19
- "mistral",
20
- "qwen",
21
- "builder"
22
- ],
23
- "engines": {
24
- "node": ">=18"
25
- },
26
- "bin": {
27
- "devos-ai": "./dist/bin/npx-init.js",
28
- "aiden": "./dist-bundle/cli.js"
29
- },
30
- "main": "./dist/index.js",
31
- "files": [
32
- "dist/",
33
- "dist-bundle/cli.js",
34
- "dist-bundle/index.js",
35
- "config/",
36
- "scripts/postinstall.js",
37
- "scripts/uninstall.ps1",
38
- "README.md",
39
- "LICENSE"
40
- ],
41
- "workspaces": [
42
- "packages/*"
43
- ],
44
- "preferGlobal": true,
45
- "type": "commonjs",
46
- "scripts": {
47
- "dev": "electron electron/main.js",
48
- "build": "tsc --outDir dist && npm run build:cli && npm run build:api",
49
- "prebuild:cli": "node scripts/inject-version.js",
50
- "build:cli": "esbuild cli/aiden.ts --bundle --platform=node --target=node18 --outfile=dist-bundle/cli.js --external:electron --external:cpu-features --external:ssh2 --external:bcrypt --external:playwright --external:playwright-core",
51
- "prebuild:api": "node scripts/inject-version.js",
52
- "build:api": "esbuild api/entry.ts --bundle --platform=node --target=node18 --outfile=dist-bundle/index.js --external:electron --external:cpu-features --external:ssh2 --external:bcrypt --external:playwright --external:playwright-core",
53
- "prepublishOnly": "npm run build",
54
- "postinstall": "node scripts/postinstall.js",
55
- "start": "node dist-bundle/index.js serve",
56
- "electron": "electron electron/main.js",
57
- "dist": "node scripts/prepare-electron.js && electron-builder --win --publish never && node -e \"const fs=require('fs');const p=JSON.parse(fs.readFileSync('package.json','utf8'));p.main='./dist/index.js';fs.writeFileSync('package.json',JSON.stringify(p,null,2)+'\\n');console.log(' main restored → ./dist/index.js')\"",
58
- "dist:dir": "node scripts/prepare-electron.js && electron-builder --win --dir --publish never",
59
- "build:win": "npm run dist",
60
- "dist:linux": "node scripts/prepare-electron.js && electron-builder --linux --x64 --publish never && node -e \"const fs=require('fs');const p=JSON.parse(fs.readFileSync('package.json','utf8'));p.main='./dist/index.js';fs.writeFileSync('package.json',JSON.stringify(p,null,2)+'\\n');console.log(' main restored')\"",
61
- "test": "vitest run",
62
- "test:ui": "vitest --ui",
63
- "stress-test": "npx ts-node tests/stressTest.ts",
64
- "test:all": "npx ts-node tests/e2e/masterTestSuite.ts",
65
- "test:unit": "npx ts-node tests/e2e/masterTestSuite.ts --part1",
66
- "test:api": "npx ts-node tests/e2e/masterTestSuite.ts --part1 --part2",
67
- "test:chat": "npx ts-node tests/e2e/masterTestSuite.ts --part3",
68
- "test:reliability": "npx ts-node tests/reliability-sprint.ts",
69
- "test:full": "npx ts-node tests/full-suite.ts",
70
- "test:audit": "npx ts-node scripts/test-suite.ts",
71
- "test:audit:full": "npx ts-node scripts/test-suite.ts --full",
72
- "test:audit:api": "npx ts-node scripts/test-suite.ts --api",
73
- "test:audit:behavioral": "npx ts-node scripts/test-suite/behavioral.ts",
74
- "test:helper:clean": "npx ts-node scripts/test-suite/manual-helpers.ts clean",
75
- "test:helper:status": "npx ts-node scripts/test-suite/manual-helpers.ts status",
76
- "test:helper:memory": "npx ts-node scripts/test-suite/manual-helpers.ts memory",
77
- "cli": "npx ts-node cli/aiden.ts",
78
- "uninstall": "powershell -ExecutionPolicy Bypass -File scripts\\uninstall.ps1",
79
- "livepulse": "powershell -ExecutionPolicy Bypass -File scripts\\livepulse.ps1",
80
- "obfuscate": "javascript-obfuscator dist/ --output dist/ --compact true --string-array true --rotate-string-array true --string-array-threshold 0.75",
81
- "release": "node scripts/release.js"
82
- },
83
- "build": {
84
- "appId": "com.taracod.aiden",
85
- "productName": "Aiden",
86
- "copyright": "© 2026 Taracod",
87
- "publish": [
88
- {
89
- "provider": "github",
90
- "owner": "taracodlabs",
91
- "repo": "aiden-releases",
92
- "releaseType": "release"
93
- }
94
- ],
95
- "directories": {
96
- "output": "release"
97
- },
98
- "win": {
99
- "target": "nsis",
100
- "icon": "assets/icon.ico"
101
- },
102
- "nsis": {
103
- "oneClick": false,
104
- "allowToChangeInstallationDirectory": false,
105
- "createDesktopShortcut": true,
106
- "createStartMenuShortcut": true,
107
- "shortcutName": "Aiden",
108
- "installerIcon": "assets/icon.ico",
109
- "uninstallerIcon": "assets/icon.ico",
110
- "installerHeaderIcon": "assets/icon.ico",
111
- "deleteAppDataOnUninstall": false,
112
- "include": "build/installer.nsh"
113
- },
114
- "linux": {
115
- "target": [
116
- {
117
- "target": "AppImage",
118
- "arch": [
119
- "x64"
120
- ]
121
- },
122
- {
123
- "target": "deb",
124
- "arch": [
125
- "x64"
126
- ]
127
- }
128
- ],
129
- "category": "Development",
130
- "synopsis": "Local-first AI operating system",
131
- "description": "DevOS — Aiden is a local-first AI operating system with 69+ skills, 80+ tools, and self-healing provider routing across 13 LLM providers.",
132
- "maintainer": "Taracod Labs <contact@taracod.com>",
133
- "vendor": "Taracod Labs",
134
- "desktop": {
135
- "entry": {
136
- "Name": "DevOS — Aiden",
137
- "Comment": "Local-first AI operating system",
138
- "Categories": "Development;Utility;"
139
- }
140
- },
141
- "icon": "assets/icon.png"
142
- },
143
- "files": [
144
- "electron/**/*",
145
- "assets/**/*",
146
- "package.json"
147
- ],
148
- "extraResources": [
149
- {
150
- "from": "bin",
151
- "to": "bin",
152
- "filter": [
153
- "**/*"
154
- ]
155
- },
156
- {
157
- "from": "dist-bundle",
158
- "to": "dist",
159
- "filter": [
160
- "**/*"
161
- ]
162
- },
163
- {
164
- "from": "native-modules",
165
- "to": "node_modules",
166
- "filter": [
167
- "**/*"
168
- ]
169
- },
170
- {
171
- "from": "dashboard-next/.next/standalone/node_modules",
172
- "to": "dashboard/standalone/node_modules",
173
- "filter": [
174
- "**/*"
175
- ]
176
- },
177
- {
178
- "from": "dashboard-next/.next/standalone",
179
- "to": "dashboard/standalone",
180
- "filter": [
181
- "**/*"
182
- ]
183
- },
184
- {
185
- "from": "config",
186
- "to": "config",
187
- "filter": [
188
- "devos.config.json",
189
- "model-selection.json",
190
- "hardware.json"
191
- ]
192
- },
193
- {
194
- "from": "workspace-templates",
195
- "to": "workspace-templates",
196
- "filter": [
197
- "**/*"
198
- ]
199
- }
200
- ],
201
- "asar": true,
202
- "npmRebuild": false,
203
- "buildDependenciesFromSource": false,
204
- "asarUnpack": []
205
- },
206
- "dependencies": {
207
- "@inquirer/core": "^11.1.9",
208
- "@inquirer/prompts": "^8.4.2",
209
- "@modelcontextprotocol/sdk": "^1.27.1",
210
- "@slack/bolt": "^4.6.0",
211
- "@slack/web-api": "^7.15.0",
212
- "@types/archiver": "^7.0.0",
213
- "@types/bcrypt": "^6.0.0",
214
- "@types/sql.js": "^1.4.9",
215
- "@types/twilio": "^3.19.2",
216
- "@types/ws": "^8.18.1",
217
- "archiver": "^7.0.1",
218
- "axios": "^1.13.5",
219
- "bcrypt": "^6.0.0",
220
- "chalk": "^5.6.2",
221
- "cors": "^2.8.5",
222
- "discord.js": "^14.25.1",
223
- "dockerode": "^4.0.9",
224
- "dotenv": "^17.3.1",
225
- "electron-updater": "^6.8.3",
226
- "epub2": "^3.0.2",
227
- "execa": "^8.0.1",
228
- "express": "^4.18.2",
229
- "imap-simple": "^5.1.0",
230
- "multer": "^1.4.5-lts.2",
231
- "nodemailer": "^8.0.3",
232
- "open": "^11.0.0",
233
- "ora": "^9.3.0",
234
- "pdf-parse": "^1.1.1",
235
- "playwright": "^1.58.2",
236
- "puppeteer": "^24.39.1",
237
- "qrcode-terminal": "^0.12.0",
238
- "screenshot-desktop": "^1.15.3",
239
- "sql.js": "^1.14.1",
240
- "stripe": "^20.4.1",
241
- "tar-stream": "^3.1.8",
242
- "twilio": "^5.13.1",
243
- "uuid": "^9.0.0",
244
- "whatsapp-web.js": "^1.26.0",
245
- "ws": "^8.20.0"
246
- },
247
- "devDependencies": {
248
- "@types/dockerode": "^4.0.1",
249
- "@types/js-yaml": "^4.0.9",
250
- "@types/multer": "^1.4.12",
251
- "@types/node": "^25.3.0",
252
- "@types/nodemailer": "^7.0.11",
253
- "@types/pdf-parse": "^1.1.4",
254
- "@types/qrcode-terminal": "^0.12.2",
255
- "@types/tar-stream": "^3.1.4",
256
- "@types/uuid": "^9.0.0",
257
- "@vitest/ui": "^4.1.5",
258
- "electron": "^41.1.1",
259
- "electron-builder": "^26.8.1",
260
- "esbuild": "^0.28.0",
261
- "javascript-obfuscator": "^5.4.1",
262
- "ts-node": "^10.9.2",
263
- "typescript": "^5.9.3",
264
- "vitest": "^4.1.5"
265
- }
266
- }
1
+ {
2
+ "name": "aiden-runtime",
3
+ "version": "3.19.5",
4
+ "description": "Autonomous AI Operating System — Local, Private, Free. Runs on your machine with Ollama.",
5
+ "author": "Taracod <hello@taracod.com>",
6
+ "license": "AGPL-3.0-only",
7
+ "keywords": [
8
+ "ai",
9
+ "autonomous-agent",
10
+ "agent",
11
+ "personal-ai",
12
+ "ollama",
13
+ "local-ai",
14
+ "devos",
15
+ "llm",
16
+ "ai-os",
17
+ "self-hosted-ai",
18
+ "open-source-ai",
19
+ "mistral",
20
+ "qwen",
21
+ "builder"
22
+ ],
23
+ "engines": {
24
+ "node": ">=18"
25
+ },
26
+ "bin": {
27
+ "devos-ai": "./dist/bin/npx-init.js",
28
+ "aiden": "./dist-bundle/cli.js"
29
+ },
30
+ "main": "./dist/index.js",
31
+ "files": [
32
+ "dist/",
33
+ "dist-bundle/cli.js",
34
+ "dist-bundle/index.js",
35
+ "config/",
36
+ "scripts/postinstall.js",
37
+ "scripts/uninstall.ps1",
38
+ "README.md",
39
+ "LICENSE"
40
+ ],
41
+ "workspaces": [
42
+ "packages/*"
43
+ ],
44
+ "preferGlobal": true,
45
+ "type": "commonjs",
46
+ "scripts": {
47
+ "dev": "electron electron/main.js",
48
+ "build": "tsc --outDir dist && npm run build:cli && npm run build:api",
49
+ "prebuild:cli": "node scripts/inject-version.js",
50
+ "build:cli": "esbuild cli/aiden.ts --bundle --platform=node --target=node18 --outfile=dist-bundle/cli.js --external:electron --external:cpu-features --external:ssh2 --external:bcrypt --external:playwright --external:playwright-core",
51
+ "prebuild:api": "node scripts/inject-version.js",
52
+ "build:api": "esbuild api/entry.ts --bundle --platform=node --target=node18 --outfile=dist-bundle/index.js --external:electron --external:cpu-features --external:ssh2 --external:bcrypt --external:playwright --external:playwright-core",
53
+ "prepublishOnly": "npm run build",
54
+ "postinstall": "node scripts/postinstall.js",
55
+ "start": "node dist-bundle/index.js serve",
56
+ "electron": "electron electron/main.js",
57
+ "dist": "node scripts/prepare-electron.js && electron-builder --win --publish never && node -e \"const fs=require('fs');const p=JSON.parse(fs.readFileSync('package.json','utf8'));p.main='./dist/index.js';fs.writeFileSync('package.json',JSON.stringify(p,null,2)+'\\n');console.log(' main restored → ./dist/index.js')\"",
58
+ "dist:dir": "node scripts/prepare-electron.js && electron-builder --win --dir --publish never",
59
+ "build:win": "npm run dist",
60
+ "dist:linux": "node scripts/prepare-electron.js && electron-builder --linux --x64 --publish never && node -e \"const fs=require('fs');const p=JSON.parse(fs.readFileSync('package.json','utf8'));p.main='./dist/index.js';fs.writeFileSync('package.json',JSON.stringify(p,null,2)+'\\n');console.log(' main restored')\"",
61
+ "test": "vitest run",
62
+ "test:ui": "vitest --ui",
63
+ "stress-test": "npx ts-node tests/stressTest.ts",
64
+ "test:all": "npx ts-node tests/e2e/masterTestSuite.ts",
65
+ "test:unit": "npx ts-node tests/e2e/masterTestSuite.ts --part1",
66
+ "test:api": "npx ts-node tests/e2e/masterTestSuite.ts --part1 --part2",
67
+ "test:chat": "npx ts-node tests/e2e/masterTestSuite.ts --part3",
68
+ "test:reliability": "npx ts-node tests/reliability-sprint.ts",
69
+ "test:full": "npx ts-node tests/full-suite.ts",
70
+ "test:audit": "npx ts-node scripts/test-suite.ts",
71
+ "test:audit:full": "npx ts-node scripts/test-suite.ts --full",
72
+ "test:audit:api": "npx ts-node scripts/test-suite.ts --api",
73
+ "test:audit:behavioral": "npx ts-node scripts/test-suite/behavioral.ts",
74
+ "test:helper:clean": "npx ts-node scripts/test-suite/manual-helpers.ts clean",
75
+ "test:helper:status": "npx ts-node scripts/test-suite/manual-helpers.ts status",
76
+ "test:helper:memory": "npx ts-node scripts/test-suite/manual-helpers.ts memory",
77
+ "cli": "npx ts-node cli/aiden.ts",
78
+ "uninstall": "powershell -ExecutionPolicy Bypass -File scripts\\uninstall.ps1",
79
+ "livepulse": "powershell -ExecutionPolicy Bypass -File scripts\\livepulse.ps1",
80
+ "obfuscate": "javascript-obfuscator dist/ --output dist/ --compact true --string-array true --rotate-string-array true --string-array-threshold 0.75",
81
+ "release": "node scripts/release.js",
82
+ "release:npm": "powershell -ExecutionPolicy Bypass -File scripts/release-npm.ps1"
83
+ },
84
+ "build": {
85
+ "appId": "com.taracod.aiden",
86
+ "productName": "Aiden",
87
+ "copyright": "© 2026 Taracod",
88
+ "publish": [
89
+ {
90
+ "provider": "github",
91
+ "owner": "taracodlabs",
92
+ "repo": "aiden-releases",
93
+ "releaseType": "release"
94
+ }
95
+ ],
96
+ "directories": {
97
+ "output": "release"
98
+ },
99
+ "win": {
100
+ "target": "nsis",
101
+ "icon": "assets/icon.ico"
102
+ },
103
+ "nsis": {
104
+ "oneClick": false,
105
+ "allowToChangeInstallationDirectory": false,
106
+ "createDesktopShortcut": true,
107
+ "createStartMenuShortcut": true,
108
+ "shortcutName": "Aiden",
109
+ "installerIcon": "assets/icon.ico",
110
+ "uninstallerIcon": "assets/icon.ico",
111
+ "installerHeaderIcon": "assets/icon.ico",
112
+ "deleteAppDataOnUninstall": false,
113
+ "include": "build/installer.nsh"
114
+ },
115
+ "linux": {
116
+ "target": [
117
+ {
118
+ "target": "AppImage",
119
+ "arch": [
120
+ "x64"
121
+ ]
122
+ },
123
+ {
124
+ "target": "deb",
125
+ "arch": [
126
+ "x64"
127
+ ]
128
+ }
129
+ ],
130
+ "category": "Development",
131
+ "synopsis": "Local-first AI operating system",
132
+ "description": "DevOS Aiden is a local-first AI operating system with 69+ skills, 80+ tools, and self-healing provider routing across 13 LLM providers.",
133
+ "maintainer": "Taracod Labs <contact@taracod.com>",
134
+ "vendor": "Taracod Labs",
135
+ "desktop": {
136
+ "entry": {
137
+ "Name": "DevOS Aiden",
138
+ "Comment": "Local-first AI operating system",
139
+ "Categories": "Development;Utility;"
140
+ }
141
+ },
142
+ "icon": "assets/icon.png"
143
+ },
144
+ "files": [
145
+ "electron/**/*",
146
+ "assets/**/*",
147
+ "package.json"
148
+ ],
149
+ "extraResources": [
150
+ {
151
+ "from": "bin",
152
+ "to": "bin",
153
+ "filter": [
154
+ "**/*"
155
+ ]
156
+ },
157
+ {
158
+ "from": "dist-bundle",
159
+ "to": "dist",
160
+ "filter": [
161
+ "**/*"
162
+ ]
163
+ },
164
+ {
165
+ "from": "native-modules",
166
+ "to": "node_modules",
167
+ "filter": [
168
+ "**/*"
169
+ ]
170
+ },
171
+ {
172
+ "from": "dashboard-next/.next/standalone/node_modules",
173
+ "to": "dashboard/standalone/node_modules",
174
+ "filter": [
175
+ "**/*"
176
+ ]
177
+ },
178
+ {
179
+ "from": "dashboard-next/.next/standalone",
180
+ "to": "dashboard/standalone",
181
+ "filter": [
182
+ "**/*"
183
+ ]
184
+ },
185
+ {
186
+ "from": "config",
187
+ "to": "config",
188
+ "filter": [
189
+ "devos.config.json",
190
+ "model-selection.json",
191
+ "hardware.json"
192
+ ]
193
+ },
194
+ {
195
+ "from": "workspace-templates",
196
+ "to": "workspace-templates",
197
+ "filter": [
198
+ "**/*"
199
+ ]
200
+ }
201
+ ],
202
+ "asar": true,
203
+ "npmRebuild": false,
204
+ "buildDependenciesFromSource": false,
205
+ "asarUnpack": []
206
+ },
207
+ "dependencies": {
208
+ "@inquirer/core": "^11.1.9",
209
+ "@inquirer/prompts": "^8.4.2",
210
+ "@modelcontextprotocol/sdk": "^1.27.1",
211
+ "@slack/bolt": "^4.6.0",
212
+ "@slack/web-api": "^7.15.0",
213
+ "@types/archiver": "^7.0.0",
214
+ "@types/bcrypt": "^6.0.0",
215
+ "@types/sql.js": "^1.4.9",
216
+ "@types/twilio": "^3.19.2",
217
+ "@types/ws": "^8.18.1",
218
+ "archiver": "^7.0.1",
219
+ "axios": "^1.13.5",
220
+ "bcrypt": "^6.0.0",
221
+ "chalk": "^5.6.2",
222
+ "cors": "^2.8.5",
223
+ "discord.js": "^14.25.1",
224
+ "dockerode": "^4.0.9",
225
+ "dotenv": "^17.3.1",
226
+ "electron-updater": "^6.8.3",
227
+ "epub2": "^3.0.2",
228
+ "execa": "^8.0.1",
229
+ "express": "^4.18.2",
230
+ "imap-simple": "^5.1.0",
231
+ "multer": "^1.4.5-lts.2",
232
+ "nodemailer": "^8.0.3",
233
+ "open": "^11.0.0",
234
+ "ora": "^9.3.0",
235
+ "pdf-parse": "^1.1.1",
236
+ "playwright": "^1.58.2",
237
+ "puppeteer": "^24.39.1",
238
+ "qrcode-terminal": "^0.12.0",
239
+ "screenshot-desktop": "^1.15.3",
240
+ "sql.js": "^1.14.1",
241
+ "stripe": "^20.4.1",
242
+ "tar-stream": "^3.1.8",
243
+ "twilio": "^5.13.1",
244
+ "uuid": "^9.0.0",
245
+ "whatsapp-web.js": "^1.26.0",
246
+ "ws": "^8.20.0"
247
+ },
248
+ "devDependencies": {
249
+ "@types/dockerode": "^4.0.1",
250
+ "@types/js-yaml": "^4.0.9",
251
+ "@types/multer": "^1.4.12",
252
+ "@types/node": "^25.3.0",
253
+ "@types/nodemailer": "^7.0.11",
254
+ "@types/pdf-parse": "^1.1.4",
255
+ "@types/qrcode-terminal": "^0.12.2",
256
+ "@types/tar-stream": "^3.1.4",
257
+ "@types/uuid": "^9.0.0",
258
+ "@vitest/ui": "^4.1.5",
259
+ "electron": "^41.1.1",
260
+ "electron-builder": "^26.8.1",
261
+ "esbuild": "^0.28.0",
262
+ "javascript-obfuscator": "^5.4.1",
263
+ "ts-node": "^10.9.2",
264
+ "typescript": "^5.9.3",
265
+ "vitest": "^4.1.5"
266
+ }
267
+ }