@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.
@@ -1572,8 +1572,8 @@ var init_license = __esm({
1572
1572
  CACHE_PATH = path6.join(EXE_AI_DIR, "license-cache.json");
1573
1573
  DEVICE_ID_PATH = path6.join(EXE_AI_DIR, "device-id");
1574
1574
  PLAN_LIMITS = {
1575
- free: { devices: 1, employees: 1, memories: 5e4 },
1576
- pro: { devices: 2, employees: 5, memories: 25e4 },
1575
+ free: { devices: 1, employees: 1, memories: 5e3 },
1576
+ pro: { devices: 3, employees: 5, memories: 1e5 },
1577
1577
  team: { devices: 10, employees: 20, memories: 1e6 },
1578
1578
  agency: { devices: 50, employees: 100, memories: 1e7 },
1579
1579
  enterprise: { devices: -1, employees: -1, memories: -1 }
package/dist/tui/App.js CHANGED
@@ -2141,8 +2141,8 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
2141
2141
  -----END PUBLIC KEY-----`;
2142
2142
  LICENSE_JWT_ALG = "ES256";
2143
2143
  PLAN_LIMITS = {
2144
- free: { devices: 1, employees: 1, memories: 5e4 },
2145
- pro: { devices: 2, employees: 5, memories: 25e4 },
2144
+ free: { devices: 1, employees: 1, memories: 5e3 },
2145
+ pro: { devices: 3, employees: 5, memories: 1e5 },
2146
2146
  team: { devices: 10, employees: 20, memories: 1e6 },
2147
2147
  agency: { devices: 50, employees: 100, memories: 1e7 },
2148
2148
  enterprise: { devices: -1, employees: -1, memories: -1 }
@@ -2154,7 +2154,7 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEeHztAMOpR/ZMh+rWuOASjEZ54CGY
2154
2154
  expiresAt: null,
2155
2155
  deviceLimit: 1,
2156
2156
  employeeLimit: 1,
2157
- memoryLimit: 5e4
2157
+ memoryLimit: 5e3
2158
2158
  };
2159
2159
  CACHE_MAX_AGE_MS = 36e5;
2160
2160
  _revalTimer = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@askexenow/exe-os",
3
- "version": "0.8.82",
3
+ "version": "0.8.83",
4
4
  "description": "AI employee operating system — persistent memory, task management, and multi-agent coordination for Claude Code.",
5
5
  "license": "CC-BY-NC-4.0",
6
6
  "type": "module",
@@ -181,7 +181,7 @@ For each subtask, call create_task with:
181
181
  **VERIFY:**
182
182
  ```bash
183
183
  SUBTASK_COUNT=$(node -e "
184
- const {getClient}=require(require('path').join(require('child_process').execSync('npm root -g',{encoding:'utf8'}).trim(),'@askexenow/exe-os/dist/lib/turso.js'));
184
+ const {getClient}=require(require('path').join(require('child_process').execSync('npm root -g',{encoding:'utf8'}).trim(),'@askexenow/exe-os/dist/lib/database.js'));
185
185
  const {initStore}=require(require('path').join(require('child_process').execSync('npm root -g',{encoding:'utf8'}).trim(),'@askexenow/exe-os/dist/lib/store.js'));
186
186
  (async()=>{await initStore();const {sessionScopeFilter}=require(require('path').join(require('child_process').execSync('npm root -g',{encoding:'utf8'}).trim(),'@askexenow/exe-os/dist/lib/task-scope.js'));const s=sessionScopeFilter();const c=getClient();const r=await c.execute({sql:\"SELECT COUNT(*) as cnt FROM tasks WHERE title LIKE 'build-adv/{slug}%' AND status != 'done'\"+s.sql,args:[...s.args]});console.log(Number(r.rows[0]?.cnt??0))})()
187
187
  " 2>/dev/null)
@@ -319,7 +319,7 @@ node -e "const f='exe/output/{slug}/build-state.json'; const s=JSON.parse(requir
319
319
  **VERIFY:**
320
320
  ```bash
321
321
  OPEN_COUNT=$(node -e "
322
- const {getClient}=require(require('path').join(require('child_process').execSync('npm root -g',{encoding:'utf8'}).trim(),'@askexenow/exe-os/dist/lib/turso.js'));
322
+ const {getClient}=require(require('path').join(require('child_process').execSync('npm root -g',{encoding:'utf8'}).trim(),'@askexenow/exe-os/dist/lib/database.js'));
323
323
  const {initStore}=require(require('path').join(require('child_process').execSync('npm root -g',{encoding:'utf8'}).trim(),'@askexenow/exe-os/dist/lib/store.js'));
324
324
  (async()=>{await initStore();const {sessionScopeFilter}=require(require('path').join(require('child_process').execSync('npm root -g',{encoding:'utf8'}).trim(),'@askexenow/exe-os/dist/lib/task-scope.js'));const s=sessionScopeFilter();const c=getClient();const r=await c.execute({sql:\"SELECT COUNT(*) as cnt FROM tasks WHERE title LIKE 'build-adv/{slug}%' AND status NOT IN ('done','cancelled')\"+s.sql,args:[...s.args]});console.log(Number(r.rows[0]?.cnt??0))})()
325
325
  " 2>/dev/null)