@askexenow/exe-os 0.9.66 → 0.9.67
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/deploy/stack-manifests/v0.9.json +54 -5
- package/dist/bin/age-ontology-load.js +61 -0
- package/dist/bin/agentic-ontology-backfill.js +4708 -0
- package/dist/bin/agentic-reflection-backfill.js +4144 -0
- package/dist/bin/{exe-link.js → agentic-semantic-label.js} +1523 -2275
- package/dist/bin/backfill-conversations.js +506 -20
- package/dist/bin/backfill-responses.js +506 -20
- package/dist/bin/backfill-vectors.js +233 -20
- package/dist/bin/bulk-sync-postgres.js +4876 -0
- package/dist/bin/cleanup-stale-review-tasks.js +507 -21
- package/dist/bin/cli.js +2450 -1530
- package/dist/bin/exe-assign.js +506 -20
- package/dist/bin/exe-boot.js +410 -60
- package/dist/bin/exe-cloud.js +795 -105
- package/dist/bin/exe-dispatch.js +516 -22
- package/dist/bin/exe-doctor.js +587 -30
- package/dist/bin/exe-export-behaviors.js +518 -24
- package/dist/bin/exe-forget.js +507 -21
- package/dist/bin/exe-gateway.js +571 -25
- package/dist/bin/exe-heartbeat.js +518 -24
- package/dist/bin/exe-kill.js +507 -21
- package/dist/bin/exe-launch-agent.js +2312 -1069
- package/dist/bin/exe-new-employee.js +197 -165
- package/dist/bin/exe-pending-messages.js +507 -21
- package/dist/bin/exe-pending-notifications.js +507 -21
- package/dist/bin/exe-pending-reviews.js +507 -21
- package/dist/bin/exe-rename.js +507 -21
- package/dist/bin/exe-review.js +507 -21
- package/dist/bin/exe-search.js +518 -24
- package/dist/bin/exe-session-cleanup.js +516 -22
- package/dist/bin/exe-settings.js +4 -0
- package/dist/bin/exe-start-codex.js +682 -143
- package/dist/bin/exe-start-opencode.js +627 -79
- package/dist/bin/exe-status.js +507 -21
- package/dist/bin/exe-team.js +507 -21
- package/dist/bin/git-sweep.js +516 -22
- package/dist/bin/graph-backfill.js +558 -21
- package/dist/bin/graph-export.js +507 -21
- package/dist/bin/graph-layer-benchmark.js +109 -0
- package/dist/bin/install.js +305 -288
- package/dist/bin/intercom-check.js +516 -22
- package/dist/bin/postgres-agentic-reflection-backfill.js +187 -0
- package/dist/bin/postgres-agentic-semantic-backfill.js +237 -0
- package/dist/bin/scan-tasks.js +516 -22
- package/dist/bin/setup.js +412 -62
- package/dist/bin/shard-migrate.js +506 -20
- package/dist/gateway/index.js +569 -23
- package/dist/hooks/bug-report-worker.js +519 -25
- package/dist/hooks/codex-stop-task-finalizer.js +516 -22
- package/dist/hooks/commit-complete.js +516 -22
- package/dist/hooks/error-recall.js +518 -24
- package/dist/hooks/ingest.js +516 -22
- package/dist/hooks/instructions-loaded.js +507 -21
- package/dist/hooks/notification.js +507 -21
- package/dist/hooks/post-compact.js +507 -21
- package/dist/hooks/post-tool-combined.js +519 -25
- package/dist/hooks/pre-compact.js +516 -22
- package/dist/hooks/pre-tool-use.js +507 -21
- package/dist/hooks/prompt-submit.js +519 -25
- package/dist/hooks/session-end.js +516 -22
- package/dist/hooks/session-start.js +520 -26
- package/dist/hooks/stop.js +517 -23
- package/dist/hooks/subagent-stop.js +507 -21
- package/dist/hooks/summary-worker.js +411 -61
- package/dist/index.js +569 -23
- package/dist/lib/cloud-sync.js +391 -53
- package/dist/lib/config.js +13 -1
- package/dist/lib/consolidation.js +1 -1
- package/dist/lib/database.js +124 -0
- package/dist/lib/db.js +124 -0
- package/dist/lib/device-registry.js +124 -0
- package/dist/lib/embedder.js +13 -1
- package/dist/lib/exe-daemon.js +2184 -561
- package/dist/lib/hybrid-search.js +518 -24
- package/dist/lib/identity.js +3 -0
- package/dist/lib/keychain.js +178 -22
- package/dist/lib/messaging.js +3 -0
- package/dist/lib/reminders.js +3 -0
- package/dist/lib/schedules.js +233 -20
- package/dist/lib/skill-learning.js +16 -1
- package/dist/lib/store.js +506 -20
- package/dist/lib/tasks.js +16 -1
- package/dist/lib/tmux-routing.js +16 -1
- package/dist/lib/token-spend.js +3 -0
- package/dist/mcp/server.js +1757 -428
- package/dist/mcp/tools/complete-reminder.js +3 -0
- package/dist/mcp/tools/create-reminder.js +3 -0
- package/dist/mcp/tools/create-task.js +16 -1
- package/dist/mcp/tools/deactivate-behavior.js +3 -0
- package/dist/mcp/tools/list-reminders.js +3 -0
- package/dist/mcp/tools/list-tasks.js +3 -0
- package/dist/mcp/tools/send-message.js +3 -0
- package/dist/mcp/tools/update-task.js +16 -1
- package/dist/runtime/index.js +516 -22
- package/dist/tui/App.js +594 -29
- package/package.json +8 -5
- package/src/commands/exe/cloud.md +6 -10
- package/stack.release.json +3 -3
- package/src/commands/exe/link.md +0 -18
|
@@ -190,6 +190,10 @@ async function loadConfig() {
|
|
|
190
190
|
if (config.dbPath.startsWith("~")) {
|
|
191
191
|
config.dbPath = config.dbPath.replace(/^~/, os.homedir());
|
|
192
192
|
}
|
|
193
|
+
const envDbPath = path.join(dir, "memories.db");
|
|
194
|
+
if (process.env.EXE_OS_DIR && config.dbPath !== envDbPath && !existsSync2(config.dbPath) && existsSync2(envDbPath)) {
|
|
195
|
+
config.dbPath = envDbPath;
|
|
196
|
+
}
|
|
193
197
|
return config;
|
|
194
198
|
} catch {
|
|
195
199
|
return { ...DEFAULT_CONFIG, dbPath: path.join(dir, "memories.db") };
|
|
@@ -210,7 +214,15 @@ function loadConfigSync() {
|
|
|
210
214
|
normalizeSessionLifecycle(migratedCfg);
|
|
211
215
|
normalizeAutoUpdate(migratedCfg);
|
|
212
216
|
normalizeOrchestration(migratedCfg);
|
|
213
|
-
|
|
217
|
+
const config = { ...DEFAULT_CONFIG, dbPath: path.join(dir, "memories.db"), ...migratedCfg };
|
|
218
|
+
if (config.dbPath.startsWith("~")) {
|
|
219
|
+
config.dbPath = config.dbPath.replace(/^~/, os.homedir());
|
|
220
|
+
}
|
|
221
|
+
const envDbPath = path.join(dir, "memories.db");
|
|
222
|
+
if (process.env.EXE_OS_DIR && config.dbPath !== envDbPath && !existsSync2(config.dbPath) && existsSync2(envDbPath)) {
|
|
223
|
+
config.dbPath = envDbPath;
|
|
224
|
+
}
|
|
225
|
+
return config;
|
|
214
226
|
} catch {
|
|
215
227
|
return { ...DEFAULT_CONFIG, dbPath: path.join(dir, "memories.db") };
|
|
216
228
|
}
|
|
@@ -740,6 +752,9 @@ function getClient() {
|
|
|
740
752
|
if (_daemonClient && _daemonClient._isDaemonActive()) {
|
|
741
753
|
return _daemonClient;
|
|
742
754
|
}
|
|
755
|
+
if (!_resilientClient) {
|
|
756
|
+
return _adapterClient;
|
|
757
|
+
}
|
|
743
758
|
return _resilientClient;
|
|
744
759
|
}
|
|
745
760
|
var _resilientClient, _daemonClient, _adapterClient;
|
|
@@ -212,6 +212,9 @@ function getClient() {
|
|
|
212
212
|
if (_daemonClient && _daemonClient._isDaemonActive()) {
|
|
213
213
|
return _daemonClient;
|
|
214
214
|
}
|
|
215
|
+
if (!_resilientClient) {
|
|
216
|
+
return _adapterClient;
|
|
217
|
+
}
|
|
215
218
|
return _resilientClient;
|
|
216
219
|
}
|
|
217
220
|
var _resilientClient, _daemonClient, _adapterClient;
|
|
@@ -223,6 +223,9 @@ function getClient() {
|
|
|
223
223
|
if (_daemonClient && _daemonClient._isDaemonActive()) {
|
|
224
224
|
return _daemonClient;
|
|
225
225
|
}
|
|
226
|
+
if (!_resilientClient) {
|
|
227
|
+
return _adapterClient;
|
|
228
|
+
}
|
|
226
229
|
return _resilientClient;
|
|
227
230
|
}
|
|
228
231
|
var _resilientClient, _daemonClient, _adapterClient;
|
|
@@ -190,6 +190,10 @@ async function loadConfig() {
|
|
|
190
190
|
if (config.dbPath.startsWith("~")) {
|
|
191
191
|
config.dbPath = config.dbPath.replace(/^~/, os.homedir());
|
|
192
192
|
}
|
|
193
|
+
const envDbPath = path.join(dir, "memories.db");
|
|
194
|
+
if (process.env.EXE_OS_DIR && config.dbPath !== envDbPath && !existsSync2(config.dbPath) && existsSync2(envDbPath)) {
|
|
195
|
+
config.dbPath = envDbPath;
|
|
196
|
+
}
|
|
193
197
|
return config;
|
|
194
198
|
} catch {
|
|
195
199
|
return { ...DEFAULT_CONFIG, dbPath: path.join(dir, "memories.db") };
|
|
@@ -210,7 +214,15 @@ function loadConfigSync() {
|
|
|
210
214
|
normalizeSessionLifecycle(migratedCfg);
|
|
211
215
|
normalizeAutoUpdate(migratedCfg);
|
|
212
216
|
normalizeOrchestration(migratedCfg);
|
|
213
|
-
|
|
217
|
+
const config = { ...DEFAULT_CONFIG, dbPath: path.join(dir, "memories.db"), ...migratedCfg };
|
|
218
|
+
if (config.dbPath.startsWith("~")) {
|
|
219
|
+
config.dbPath = config.dbPath.replace(/^~/, os.homedir());
|
|
220
|
+
}
|
|
221
|
+
const envDbPath = path.join(dir, "memories.db");
|
|
222
|
+
if (process.env.EXE_OS_DIR && config.dbPath !== envDbPath && !existsSync2(config.dbPath) && existsSync2(envDbPath)) {
|
|
223
|
+
config.dbPath = envDbPath;
|
|
224
|
+
}
|
|
225
|
+
return config;
|
|
214
226
|
} catch {
|
|
215
227
|
return { ...DEFAULT_CONFIG, dbPath: path.join(dir, "memories.db") };
|
|
216
228
|
}
|
|
@@ -441,6 +453,9 @@ function getClient() {
|
|
|
441
453
|
if (_daemonClient && _daemonClient._isDaemonActive()) {
|
|
442
454
|
return _daemonClient;
|
|
443
455
|
}
|
|
456
|
+
if (!_resilientClient) {
|
|
457
|
+
return _adapterClient;
|
|
458
|
+
}
|
|
444
459
|
return _resilientClient;
|
|
445
460
|
}
|
|
446
461
|
var _resilientClient, _daemonClient, _adapterClient;
|