@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/runtime/index.js
CHANGED
|
@@ -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:
|
|
1576
|
-
pro: { devices:
|
|
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:
|
|
2145
|
-
pro: { devices:
|
|
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:
|
|
2157
|
+
memoryLimit: 5e3
|
|
2158
2158
|
};
|
|
2159
2159
|
CACHE_MAX_AGE_MS = 36e5;
|
|
2160
2160
|
_revalTimer = null;
|
package/package.json
CHANGED
|
@@ -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/
|
|
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/
|
|
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)
|