@askexenow/exe-os 0.8.82 → 0.8.83
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/dist/bin/cli.js +18 -15
- package/dist/bin/exe-boot.js +3 -3
- package/dist/bin/exe-cloud.js +3 -3
- package/dist/bin/exe-dispatch.js +2 -2
- package/dist/bin/exe-gateway.js +3 -3
- package/dist/bin/exe-new-employee.js +3 -3
- package/dist/bin/exe-rename.js +15 -12
- package/dist/bin/git-sweep.js +2 -2
- package/dist/bin/scan-tasks.js +2 -2
- package/dist/bin/setup.js +3 -3
- package/dist/bin/update.js +3 -3
- package/dist/gateway/index.js +2 -2
- package/dist/hooks/bug-report-worker.js +2 -2
- package/dist/hooks/commit-complete.js +2 -2
- package/dist/hooks/ingest-worker.js +3 -3
- package/dist/hooks/pre-compact.js +2 -2
- package/dist/hooks/prompt-ingest-worker.js +3 -3
- package/dist/hooks/response-ingest-worker.js +3 -3
- package/dist/hooks/summary-worker.js +3 -3
- package/dist/index.js +2 -2
- package/dist/lib/exe-daemon.js +2 -2
- package/dist/lib/license.js +3 -3
- package/dist/lib/tasks.js +2 -2
- package/dist/lib/tmux-routing.js +2 -2
- package/dist/mcp/server.js +692 -111
- package/dist/mcp/tools/create-task.js +690 -5
- package/dist/runtime/index.js +2 -2
- package/dist/tui/App.js +3 -3
- package/package.json +1 -1
- package/src/commands/exe/build-adv.md +2 -2
package/dist/bin/cli.js
CHANGED
|
@@ -2660,8 +2660,8 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
2660
2660
|
-----END PUBLIC KEY-----`;
|
|
2661
2661
|
LICENSE_JWT_ALG = "ES256";
|
|
2662
2662
|
PLAN_LIMITS = {
|
|
2663
|
-
free: { devices: 1, employees: 1, memories:
|
|
2664
|
-
pro: { devices:
|
|
2663
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
2664
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
2665
2665
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
2666
2666
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
2667
2667
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
|
@@ -2673,7 +2673,7 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
2673
2673
|
expiresAt: null,
|
|
2674
2674
|
deviceLimit: 1,
|
|
2675
2675
|
employeeLimit: 1,
|
|
2676
|
-
memoryLimit:
|
|
2676
|
+
memoryLimit: 5e3
|
|
2677
2677
|
};
|
|
2678
2678
|
CACHE_MAX_AGE_MS = 36e5;
|
|
2679
2679
|
_revalTimer = null;
|
|
@@ -6297,20 +6297,23 @@ async function renameEmployee(oldName, newName, opts = {}) {
|
|
|
6297
6297
|
return { success: false, error: validation.error };
|
|
6298
6298
|
}
|
|
6299
6299
|
const employees = await loadEmployees(rosterPath);
|
|
6300
|
-
const
|
|
6300
|
+
const oldNameLower = oldName.toLowerCase();
|
|
6301
|
+
const idx = employees.findIndex((e) => e.name.toLowerCase() === oldNameLower);
|
|
6301
6302
|
if (idx === -1) {
|
|
6302
6303
|
return { success: false, error: `Employee '${oldName}' not found` };
|
|
6303
6304
|
}
|
|
6304
|
-
|
|
6305
|
+
const newNameLower = newName.toLowerCase();
|
|
6306
|
+
if (employees.some((e) => e.name.toLowerCase() === newNameLower)) {
|
|
6305
6307
|
return { success: false, error: `Employee '${newName}' already exists` };
|
|
6306
6308
|
}
|
|
6307
6309
|
const rollbackStack = [];
|
|
6308
6310
|
const employee = employees[idx];
|
|
6311
|
+
const rosterOldName = employee.name;
|
|
6309
6312
|
try {
|
|
6310
6313
|
const originalName = employee.name;
|
|
6311
6314
|
const originalPrompt = employee.systemPrompt;
|
|
6312
6315
|
employee.name = newName;
|
|
6313
|
-
employee.systemPrompt = personalizePrompt(originalPrompt,
|
|
6316
|
+
employee.systemPrompt = personalizePrompt(originalPrompt, rosterOldName, newName);
|
|
6314
6317
|
await saveEmployees(employees, rosterPath);
|
|
6315
6318
|
rollbackStack.push({
|
|
6316
6319
|
description: "restore roster",
|
|
@@ -6320,7 +6323,7 @@ async function renameEmployee(oldName, newName, opts = {}) {
|
|
|
6320
6323
|
writeFileSync5(rosterPath, JSON.stringify(employees, null, 2) + "\n", "utf-8");
|
|
6321
6324
|
}
|
|
6322
6325
|
});
|
|
6323
|
-
const oldIdentityPath = path11.join(identityDir, `${
|
|
6326
|
+
const oldIdentityPath = path11.join(identityDir, `${rosterOldName}.md`);
|
|
6324
6327
|
const newIdentityPath = path11.join(identityDir, `${newName}.md`);
|
|
6325
6328
|
if (existsSync10(oldIdentityPath)) {
|
|
6326
6329
|
const content = readFileSync7(oldIdentityPath, "utf-8");
|
|
@@ -6340,7 +6343,7 @@ async function renameEmployee(oldName, newName, opts = {}) {
|
|
|
6340
6343
|
}
|
|
6341
6344
|
});
|
|
6342
6345
|
}
|
|
6343
|
-
const oldAgentPath = path11.join(agentsDir, `${
|
|
6346
|
+
const oldAgentPath = path11.join(agentsDir, `${rosterOldName}.md`);
|
|
6344
6347
|
const newAgentPath = path11.join(agentsDir, `${newName}.md`);
|
|
6345
6348
|
if (existsSync10(oldAgentPath)) {
|
|
6346
6349
|
const agentContent = readFileSync7(oldAgentPath, "utf-8");
|
|
@@ -6356,13 +6359,13 @@ async function renameEmployee(oldName, newName, opts = {}) {
|
|
|
6356
6359
|
});
|
|
6357
6360
|
}
|
|
6358
6361
|
if (!opts.skipSymlinks) {
|
|
6359
|
-
removeOldSymlinks(
|
|
6362
|
+
removeOldSymlinks(rosterOldName);
|
|
6360
6363
|
const bins = registerBinSymlinks(newName);
|
|
6361
6364
|
rollbackStack.push({
|
|
6362
6365
|
description: "restore symlinks",
|
|
6363
6366
|
undo: () => {
|
|
6364
6367
|
removeOldSymlinks(newName);
|
|
6365
|
-
registerBinSymlinks(
|
|
6368
|
+
registerBinSymlinks(rosterOldName);
|
|
6366
6369
|
}
|
|
6367
6370
|
});
|
|
6368
6371
|
if (bins.errors.length > 0) {
|
|
@@ -6375,23 +6378,23 @@ async function renameEmployee(oldName, newName, opts = {}) {
|
|
|
6375
6378
|
const client = getClient2();
|
|
6376
6379
|
await client.execute({
|
|
6377
6380
|
sql: "UPDATE memories SET agent_id = ? WHERE agent_id = ?",
|
|
6378
|
-
args: [newName,
|
|
6381
|
+
args: [newName, rosterOldName]
|
|
6379
6382
|
});
|
|
6380
6383
|
await client.execute({
|
|
6381
6384
|
sql: "UPDATE conversations SET agent_name = ? WHERE agent_name = ?",
|
|
6382
|
-
args: [newName,
|
|
6385
|
+
args: [newName, rosterOldName]
|
|
6383
6386
|
});
|
|
6384
6387
|
await client.execute({
|
|
6385
6388
|
sql: "UPDATE tasks SET assigned_to = ? WHERE assigned_to = ?",
|
|
6386
|
-
args: [newName,
|
|
6389
|
+
args: [newName, rosterOldName]
|
|
6387
6390
|
});
|
|
6388
6391
|
await client.execute({
|
|
6389
6392
|
sql: "UPDATE behaviors SET agent_id = ? WHERE agent_id = ?",
|
|
6390
|
-
args: [newName,
|
|
6393
|
+
args: [newName, rosterOldName]
|
|
6391
6394
|
});
|
|
6392
6395
|
await client.execute({
|
|
6393
6396
|
sql: "UPDATE identity SET agent_id = ? WHERE agent_id = ?",
|
|
6394
|
-
args: [newName,
|
|
6397
|
+
args: [newName, rosterOldName]
|
|
6395
6398
|
});
|
|
6396
6399
|
} catch (dbErr) {
|
|
6397
6400
|
console.error(`DB migration failed: ${dbErr instanceof Error ? dbErr.message : String(dbErr)}`);
|
package/dist/bin/exe-boot.js
CHANGED
|
@@ -2720,8 +2720,8 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
2720
2720
|
-----END PUBLIC KEY-----`;
|
|
2721
2721
|
LICENSE_JWT_ALG = "ES256";
|
|
2722
2722
|
PLAN_LIMITS = {
|
|
2723
|
-
free: { devices: 1, employees: 1, memories:
|
|
2724
|
-
pro: { devices:
|
|
2723
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
2724
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
2725
2725
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
2726
2726
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
2727
2727
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
|
@@ -2733,7 +2733,7 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
2733
2733
|
expiresAt: null,
|
|
2734
2734
|
deviceLimit: 1,
|
|
2735
2735
|
employeeLimit: 1,
|
|
2736
|
-
memoryLimit:
|
|
2736
|
+
memoryLimit: 5e3
|
|
2737
2737
|
};
|
|
2738
2738
|
CACHE_MAX_AGE_MS = 36e5;
|
|
2739
2739
|
_revalTimer = null;
|
package/dist/bin/exe-cloud.js
CHANGED
|
@@ -700,8 +700,8 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
700
700
|
-----END PUBLIC KEY-----`;
|
|
701
701
|
LICENSE_JWT_ALG = "ES256";
|
|
702
702
|
PLAN_LIMITS = {
|
|
703
|
-
free: { devices: 1, employees: 1, memories:
|
|
704
|
-
pro: { devices:
|
|
703
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
704
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
705
705
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
706
706
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
707
707
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
|
@@ -713,7 +713,7 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
713
713
|
expiresAt: null,
|
|
714
714
|
deviceLimit: 1,
|
|
715
715
|
employeeLimit: 1,
|
|
716
|
-
memoryLimit:
|
|
716
|
+
memoryLimit: 5e3
|
|
717
717
|
};
|
|
718
718
|
CACHE_MAX_AGE_MS = 36e5;
|
|
719
719
|
_revalTimer = null;
|
package/dist/bin/exe-dispatch.js
CHANGED
|
@@ -1509,8 +1509,8 @@ var init_license = __esm({
|
|
|
1509
1509
|
CACHE_PATH = path5.join(EXE_AI_DIR, "license-cache.json");
|
|
1510
1510
|
DEVICE_ID_PATH = path5.join(EXE_AI_DIR, "device-id");
|
|
1511
1511
|
PLAN_LIMITS = {
|
|
1512
|
-
free: { devices: 1, employees: 1, memories:
|
|
1513
|
-
pro: { devices:
|
|
1512
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
1513
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
1514
1514
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
1515
1515
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
1516
1516
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
package/dist/bin/exe-gateway.js
CHANGED
|
@@ -4551,8 +4551,8 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
4551
4551
|
-----END PUBLIC KEY-----`;
|
|
4552
4552
|
LICENSE_JWT_ALG = "ES256";
|
|
4553
4553
|
PLAN_LIMITS = {
|
|
4554
|
-
free: { devices: 1, employees: 1, memories:
|
|
4555
|
-
pro: { devices:
|
|
4554
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
4555
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
4556
4556
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
4557
4557
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
4558
4558
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
|
@@ -4564,7 +4564,7 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
4564
4564
|
expiresAt: null,
|
|
4565
4565
|
deviceLimit: 1,
|
|
4566
4566
|
employeeLimit: 1,
|
|
4567
|
-
memoryLimit:
|
|
4567
|
+
memoryLimit: 5e3
|
|
4568
4568
|
};
|
|
4569
4569
|
CACHE_MAX_AGE_MS = 36e5;
|
|
4570
4570
|
_revalTimer = null;
|
|
@@ -2105,8 +2105,8 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
2105
2105
|
-----END PUBLIC KEY-----`;
|
|
2106
2106
|
var LICENSE_JWT_ALG = "ES256";
|
|
2107
2107
|
var PLAN_LIMITS = {
|
|
2108
|
-
free: { devices: 1, employees: 1, memories:
|
|
2109
|
-
pro: { devices:
|
|
2108
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
2109
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
2110
2110
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
2111
2111
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
2112
2112
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
|
@@ -2118,7 +2118,7 @@ var FREE_LICENSE = {
|
|
|
2118
2118
|
expiresAt: null,
|
|
2119
2119
|
deviceLimit: 1,
|
|
2120
2120
|
employeeLimit: 1,
|
|
2121
|
-
memoryLimit:
|
|
2121
|
+
memoryLimit: 5e3
|
|
2122
2122
|
};
|
|
2123
2123
|
function loadDeviceId() {
|
|
2124
2124
|
const deviceJsonPath = path4.join(EXE_AI_DIR, "device.json");
|
package/dist/bin/exe-rename.js
CHANGED
|
@@ -1322,20 +1322,23 @@ async function renameEmployee(oldName, newName, opts = {}) {
|
|
|
1322
1322
|
return { success: false, error: validation.error };
|
|
1323
1323
|
}
|
|
1324
1324
|
const employees = await loadEmployees(rosterPath);
|
|
1325
|
-
const
|
|
1325
|
+
const oldNameLower = oldName.toLowerCase();
|
|
1326
|
+
const idx = employees.findIndex((e) => e.name.toLowerCase() === oldNameLower);
|
|
1326
1327
|
if (idx === -1) {
|
|
1327
1328
|
return { success: false, error: `Employee '${oldName}' not found` };
|
|
1328
1329
|
}
|
|
1329
|
-
|
|
1330
|
+
const newNameLower = newName.toLowerCase();
|
|
1331
|
+
if (employees.some((e) => e.name.toLowerCase() === newNameLower)) {
|
|
1330
1332
|
return { success: false, error: `Employee '${newName}' already exists` };
|
|
1331
1333
|
}
|
|
1332
1334
|
const rollbackStack = [];
|
|
1333
1335
|
const employee = employees[idx];
|
|
1336
|
+
const rosterOldName = employee.name;
|
|
1334
1337
|
try {
|
|
1335
1338
|
const originalName = employee.name;
|
|
1336
1339
|
const originalPrompt = employee.systemPrompt;
|
|
1337
1340
|
employee.name = newName;
|
|
1338
|
-
employee.systemPrompt = personalizePrompt(originalPrompt,
|
|
1341
|
+
employee.systemPrompt = personalizePrompt(originalPrompt, rosterOldName, newName);
|
|
1339
1342
|
await saveEmployees(employees, rosterPath);
|
|
1340
1343
|
rollbackStack.push({
|
|
1341
1344
|
description: "restore roster",
|
|
@@ -1345,7 +1348,7 @@ async function renameEmployee(oldName, newName, opts = {}) {
|
|
|
1345
1348
|
writeFileSync2(rosterPath, JSON.stringify(employees, null, 2) + "\n", "utf-8");
|
|
1346
1349
|
}
|
|
1347
1350
|
});
|
|
1348
|
-
const oldIdentityPath = path3.join(identityDir, `${
|
|
1351
|
+
const oldIdentityPath = path3.join(identityDir, `${rosterOldName}.md`);
|
|
1349
1352
|
const newIdentityPath = path3.join(identityDir, `${newName}.md`);
|
|
1350
1353
|
if (existsSync3(oldIdentityPath)) {
|
|
1351
1354
|
const content = readFileSync3(oldIdentityPath, "utf-8");
|
|
@@ -1365,7 +1368,7 @@ async function renameEmployee(oldName, newName, opts = {}) {
|
|
|
1365
1368
|
}
|
|
1366
1369
|
});
|
|
1367
1370
|
}
|
|
1368
|
-
const oldAgentPath = path3.join(agentsDir, `${
|
|
1371
|
+
const oldAgentPath = path3.join(agentsDir, `${rosterOldName}.md`);
|
|
1369
1372
|
const newAgentPath = path3.join(agentsDir, `${newName}.md`);
|
|
1370
1373
|
if (existsSync3(oldAgentPath)) {
|
|
1371
1374
|
const agentContent = readFileSync3(oldAgentPath, "utf-8");
|
|
@@ -1381,13 +1384,13 @@ async function renameEmployee(oldName, newName, opts = {}) {
|
|
|
1381
1384
|
});
|
|
1382
1385
|
}
|
|
1383
1386
|
if (!opts.skipSymlinks) {
|
|
1384
|
-
removeOldSymlinks(
|
|
1387
|
+
removeOldSymlinks(rosterOldName);
|
|
1385
1388
|
const bins = registerBinSymlinks(newName);
|
|
1386
1389
|
rollbackStack.push({
|
|
1387
1390
|
description: "restore symlinks",
|
|
1388
1391
|
undo: () => {
|
|
1389
1392
|
removeOldSymlinks(newName);
|
|
1390
|
-
registerBinSymlinks(
|
|
1393
|
+
registerBinSymlinks(rosterOldName);
|
|
1391
1394
|
}
|
|
1392
1395
|
});
|
|
1393
1396
|
if (bins.errors.length > 0) {
|
|
@@ -1400,23 +1403,23 @@ async function renameEmployee(oldName, newName, opts = {}) {
|
|
|
1400
1403
|
const client = getClient2();
|
|
1401
1404
|
await client.execute({
|
|
1402
1405
|
sql: "UPDATE memories SET agent_id = ? WHERE agent_id = ?",
|
|
1403
|
-
args: [newName,
|
|
1406
|
+
args: [newName, rosterOldName]
|
|
1404
1407
|
});
|
|
1405
1408
|
await client.execute({
|
|
1406
1409
|
sql: "UPDATE conversations SET agent_name = ? WHERE agent_name = ?",
|
|
1407
|
-
args: [newName,
|
|
1410
|
+
args: [newName, rosterOldName]
|
|
1408
1411
|
});
|
|
1409
1412
|
await client.execute({
|
|
1410
1413
|
sql: "UPDATE tasks SET assigned_to = ? WHERE assigned_to = ?",
|
|
1411
|
-
args: [newName,
|
|
1414
|
+
args: [newName, rosterOldName]
|
|
1412
1415
|
});
|
|
1413
1416
|
await client.execute({
|
|
1414
1417
|
sql: "UPDATE behaviors SET agent_id = ? WHERE agent_id = ?",
|
|
1415
|
-
args: [newName,
|
|
1418
|
+
args: [newName, rosterOldName]
|
|
1416
1419
|
});
|
|
1417
1420
|
await client.execute({
|
|
1418
1421
|
sql: "UPDATE identity SET agent_id = ? WHERE agent_id = ?",
|
|
1419
|
-
args: [newName,
|
|
1422
|
+
args: [newName, rosterOldName]
|
|
1420
1423
|
});
|
|
1421
1424
|
} catch (dbErr) {
|
|
1422
1425
|
console.error(`DB migration failed: ${dbErr instanceof Error ? dbErr.message : String(dbErr)}`);
|
package/dist/bin/git-sweep.js
CHANGED
|
@@ -1531,8 +1531,8 @@ var init_license = __esm({
|
|
|
1531
1531
|
CACHE_PATH = path5.join(EXE_AI_DIR, "license-cache.json");
|
|
1532
1532
|
DEVICE_ID_PATH = path5.join(EXE_AI_DIR, "device-id");
|
|
1533
1533
|
PLAN_LIMITS = {
|
|
1534
|
-
free: { devices: 1, employees: 1, memories:
|
|
1535
|
-
pro: { devices:
|
|
1534
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
1535
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
1536
1536
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
1537
1537
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
1538
1538
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
package/dist/bin/scan-tasks.js
CHANGED
|
@@ -1531,8 +1531,8 @@ var init_license = __esm({
|
|
|
1531
1531
|
CACHE_PATH = path5.join(EXE_AI_DIR, "license-cache.json");
|
|
1532
1532
|
DEVICE_ID_PATH = path5.join(EXE_AI_DIR, "device-id");
|
|
1533
1533
|
PLAN_LIMITS = {
|
|
1534
|
-
free: { devices: 1, employees: 1, memories:
|
|
1535
|
-
pro: { devices:
|
|
1534
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
1535
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
1536
1536
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
1537
1537
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
1538
1538
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
package/dist/bin/setup.js
CHANGED
|
@@ -1159,8 +1159,8 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
1159
1159
|
-----END PUBLIC KEY-----`;
|
|
1160
1160
|
LICENSE_JWT_ALG = "ES256";
|
|
1161
1161
|
PLAN_LIMITS = {
|
|
1162
|
-
free: { devices: 1, employees: 1, memories:
|
|
1163
|
-
pro: { devices:
|
|
1162
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
1163
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
1164
1164
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
1165
1165
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
1166
1166
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
|
@@ -1172,7 +1172,7 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
1172
1172
|
expiresAt: null,
|
|
1173
1173
|
deviceLimit: 1,
|
|
1174
1174
|
employeeLimit: 1,
|
|
1175
|
-
memoryLimit:
|
|
1175
|
+
memoryLimit: 5e3
|
|
1176
1176
|
};
|
|
1177
1177
|
CACHE_MAX_AGE_MS = 36e5;
|
|
1178
1178
|
_revalTimer = null;
|
package/dist/bin/update.js
CHANGED
|
@@ -473,8 +473,8 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
473
473
|
-----END PUBLIC KEY-----`;
|
|
474
474
|
LICENSE_JWT_ALG = "ES256";
|
|
475
475
|
PLAN_LIMITS = {
|
|
476
|
-
free: { devices: 1, employees: 1, memories:
|
|
477
|
-
pro: { devices:
|
|
476
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
477
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
478
478
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
479
479
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
480
480
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
|
@@ -486,7 +486,7 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
486
486
|
expiresAt: null,
|
|
487
487
|
deviceLimit: 1,
|
|
488
488
|
employeeLimit: 1,
|
|
489
|
-
memoryLimit:
|
|
489
|
+
memoryLimit: 5e3
|
|
490
490
|
};
|
|
491
491
|
CACHE_MAX_AGE_MS = 36e5;
|
|
492
492
|
_revalTimer = null;
|
package/dist/gateway/index.js
CHANGED
|
@@ -4543,8 +4543,8 @@ var init_license = __esm({
|
|
|
4543
4543
|
CACHE_PATH = path9.join(EXE_AI_DIR, "license-cache.json");
|
|
4544
4544
|
DEVICE_ID_PATH = path9.join(EXE_AI_DIR, "device-id");
|
|
4545
4545
|
PLAN_LIMITS = {
|
|
4546
|
-
free: { devices: 1, employees: 1, memories:
|
|
4547
|
-
pro: { devices:
|
|
4546
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
4547
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
4548
4548
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
4549
4549
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
4550
4550
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
|
@@ -2188,8 +2188,8 @@ var init_license = __esm({
|
|
|
2188
2188
|
CACHE_PATH = path8.join(EXE_AI_DIR, "license-cache.json");
|
|
2189
2189
|
DEVICE_ID_PATH = path8.join(EXE_AI_DIR, "device-id");
|
|
2190
2190
|
PLAN_LIMITS = {
|
|
2191
|
-
free: { devices: 1, employees: 1, memories:
|
|
2192
|
-
pro: { devices:
|
|
2191
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
2192
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
2193
2193
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
2194
2194
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
2195
2195
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
|
@@ -1530,8 +1530,8 @@ var init_license = __esm({
|
|
|
1530
1530
|
CACHE_PATH = path5.join(EXE_AI_DIR, "license-cache.json");
|
|
1531
1531
|
DEVICE_ID_PATH = path5.join(EXE_AI_DIR, "device-id");
|
|
1532
1532
|
PLAN_LIMITS = {
|
|
1533
|
-
free: { devices: 1, employees: 1, memories:
|
|
1534
|
-
pro: { devices:
|
|
1533
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
1534
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
1535
1535
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
1536
1536
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
1537
1537
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
|
@@ -2114,8 +2114,8 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
2114
2114
|
-----END PUBLIC KEY-----`;
|
|
2115
2115
|
LICENSE_JWT_ALG = "ES256";
|
|
2116
2116
|
PLAN_LIMITS = {
|
|
2117
|
-
free: { devices: 1, employees: 1, memories:
|
|
2118
|
-
pro: { devices:
|
|
2117
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
2118
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
2119
2119
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
2120
2120
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
2121
2121
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
|
@@ -2127,7 +2127,7 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
2127
2127
|
expiresAt: null,
|
|
2128
2128
|
deviceLimit: 1,
|
|
2129
2129
|
employeeLimit: 1,
|
|
2130
|
-
memoryLimit:
|
|
2130
|
+
memoryLimit: 5e3
|
|
2131
2131
|
};
|
|
2132
2132
|
CACHE_MAX_AGE_MS = 36e5;
|
|
2133
2133
|
}
|
|
@@ -1530,8 +1530,8 @@ var init_license = __esm({
|
|
|
1530
1530
|
CACHE_PATH = path6.join(EXE_AI_DIR, "license-cache.json");
|
|
1531
1531
|
DEVICE_ID_PATH = path6.join(EXE_AI_DIR, "device-id");
|
|
1532
1532
|
PLAN_LIMITS = {
|
|
1533
|
-
free: { devices: 1, employees: 1, memories:
|
|
1534
|
-
pro: { devices:
|
|
1533
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
1534
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
1535
1535
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
1536
1536
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
1537
1537
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
|
@@ -2545,8 +2545,8 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
2545
2545
|
-----END PUBLIC KEY-----`;
|
|
2546
2546
|
var LICENSE_JWT_ALG = "ES256";
|
|
2547
2547
|
var PLAN_LIMITS = {
|
|
2548
|
-
free: { devices: 1, employees: 1, memories:
|
|
2549
|
-
pro: { devices:
|
|
2548
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
2549
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
2550
2550
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
2551
2551
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
2552
2552
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
|
@@ -2558,7 +2558,7 @@ var FREE_LICENSE = {
|
|
|
2558
2558
|
expiresAt: null,
|
|
2559
2559
|
deviceLimit: 1,
|
|
2560
2560
|
employeeLimit: 1,
|
|
2561
|
-
memoryLimit:
|
|
2561
|
+
memoryLimit: 5e3
|
|
2562
2562
|
};
|
|
2563
2563
|
function loadDeviceId() {
|
|
2564
2564
|
const deviceJsonPath = path6.join(EXE_AI_DIR, "device.json");
|
|
@@ -2319,8 +2319,8 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
2319
2319
|
-----END PUBLIC KEY-----`;
|
|
2320
2320
|
LICENSE_JWT_ALG = "ES256";
|
|
2321
2321
|
PLAN_LIMITS = {
|
|
2322
|
-
free: { devices: 1, employees: 1, memories:
|
|
2323
|
-
pro: { devices:
|
|
2322
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
2323
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
2324
2324
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
2325
2325
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
2326
2326
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
|
@@ -2332,7 +2332,7 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
2332
2332
|
expiresAt: null,
|
|
2333
2333
|
deviceLimit: 1,
|
|
2334
2334
|
employeeLimit: 1,
|
|
2335
|
-
memoryLimit:
|
|
2335
|
+
memoryLimit: 5e3
|
|
2336
2336
|
};
|
|
2337
2337
|
CACHE_MAX_AGE_MS = 36e5;
|
|
2338
2338
|
}
|
|
@@ -2539,8 +2539,8 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
2539
2539
|
-----END PUBLIC KEY-----`;
|
|
2540
2540
|
LICENSE_JWT_ALG = "ES256";
|
|
2541
2541
|
PLAN_LIMITS = {
|
|
2542
|
-
free: { devices: 1, employees: 1, memories:
|
|
2543
|
-
pro: { devices:
|
|
2542
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
2543
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
2544
2544
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
2545
2545
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
2546
2546
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
|
@@ -2552,7 +2552,7 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
2552
2552
|
expiresAt: null,
|
|
2553
2553
|
deviceLimit: 1,
|
|
2554
2554
|
employeeLimit: 1,
|
|
2555
|
-
memoryLimit:
|
|
2555
|
+
memoryLimit: 5e3
|
|
2556
2556
|
};
|
|
2557
2557
|
CACHE_MAX_AGE_MS = 36e5;
|
|
2558
2558
|
_revalTimer = null;
|
package/dist/index.js
CHANGED
|
@@ -1776,8 +1776,8 @@ var init_license = __esm({
|
|
|
1776
1776
|
CACHE_PATH = path6.join(EXE_AI_DIR, "license-cache.json");
|
|
1777
1777
|
DEVICE_ID_PATH = path6.join(EXE_AI_DIR, "device-id");
|
|
1778
1778
|
PLAN_LIMITS = {
|
|
1779
|
-
free: { devices: 1, employees: 1, memories:
|
|
1780
|
-
pro: { devices:
|
|
1779
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
1780
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
1781
1781
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
1782
1782
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
1783
1783
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
package/dist/lib/exe-daemon.js
CHANGED
|
@@ -1714,8 +1714,8 @@ var init_license = __esm({
|
|
|
1714
1714
|
CACHE_PATH = path5.join(EXE_AI_DIR, "license-cache.json");
|
|
1715
1715
|
DEVICE_ID_PATH = path5.join(EXE_AI_DIR, "device-id");
|
|
1716
1716
|
PLAN_LIMITS = {
|
|
1717
|
-
free: { devices: 1, employees: 1, memories:
|
|
1718
|
-
pro: { devices:
|
|
1717
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
1718
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
1719
1719
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
1720
1720
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
1721
1721
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
package/dist/lib/license.js
CHANGED
|
@@ -116,8 +116,8 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
|
|
|
116
116
|
-----END PUBLIC KEY-----`;
|
|
117
117
|
var LICENSE_JWT_ALG = "ES256";
|
|
118
118
|
var PLAN_LIMITS = {
|
|
119
|
-
free: { devices: 1, employees: 1, memories:
|
|
120
|
-
pro: { devices:
|
|
119
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
120
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
121
121
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
122
122
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
123
123
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
|
@@ -129,7 +129,7 @@ var FREE_LICENSE = {
|
|
|
129
129
|
expiresAt: null,
|
|
130
130
|
deviceLimit: 1,
|
|
131
131
|
employeeLimit: 1,
|
|
132
|
-
memoryLimit:
|
|
132
|
+
memoryLimit: 5e3
|
|
133
133
|
};
|
|
134
134
|
function loadDeviceId() {
|
|
135
135
|
const deviceJsonPath = path2.join(EXE_AI_DIR, "device.json");
|
package/dist/lib/tasks.js
CHANGED
|
@@ -697,8 +697,8 @@ var init_license = __esm({
|
|
|
697
697
|
CACHE_PATH = path6.join(EXE_AI_DIR, "license-cache.json");
|
|
698
698
|
DEVICE_ID_PATH = path6.join(EXE_AI_DIR, "device-id");
|
|
699
699
|
PLAN_LIMITS = {
|
|
700
|
-
free: { devices: 1, employees: 1, memories:
|
|
701
|
-
pro: { devices:
|
|
700
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
701
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
702
702
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
703
703
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
704
704
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|
package/dist/lib/tmux-routing.js
CHANGED
|
@@ -590,8 +590,8 @@ var init_license = __esm({
|
|
|
590
590
|
CACHE_PATH = path5.join(EXE_AI_DIR, "license-cache.json");
|
|
591
591
|
DEVICE_ID_PATH = path5.join(EXE_AI_DIR, "device-id");
|
|
592
592
|
PLAN_LIMITS = {
|
|
593
|
-
free: { devices: 1, employees: 1, memories:
|
|
594
|
-
pro: { devices:
|
|
593
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
594
|
+
pro: { devices: 3, employees: 5, memories: 1e5 },
|
|
595
595
|
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
596
596
|
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
597
597
|
enterprise: { devices: -1, employees: -1, memories: -1 }
|