@askexenow/exe-os 0.9.112 → 0.9.113
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/README.md +9 -7
- package/dist/bin/agentic-ontology-backfill.js +54 -11
- package/dist/bin/agentic-reflection-backfill.js +29 -1
- package/dist/bin/agentic-semantic-label.js +29 -1
- package/dist/bin/backfill-conversations.js +53 -10
- package/dist/bin/backfill-responses.js +54 -11
- package/dist/bin/backfill-vectors.js +29 -1
- package/dist/bin/bulk-sync-postgres.js +55 -12
- package/dist/bin/cleanup-stale-review-tasks.js +75 -15
- package/dist/bin/cli.js +293 -76
- package/dist/bin/exe-agent-config.js +7 -1
- package/dist/bin/exe-agent.js +28 -2
- package/dist/bin/exe-assign.js +54 -11
- package/dist/bin/exe-boot.js +481 -147
- package/dist/bin/exe-call.js +45 -4
- package/dist/bin/exe-cloud.js +93 -15
- package/dist/bin/exe-dispatch.js +369 -24
- package/dist/bin/exe-doctor.js +53 -10
- package/dist/bin/exe-export-behaviors.js +54 -11
- package/dist/bin/exe-forget.js +54 -11
- package/dist/bin/exe-gateway.js +128 -23
- package/dist/bin/exe-heartbeat.js +75 -15
- package/dist/bin/exe-kill.js +54 -11
- package/dist/bin/exe-launch-agent.js +70 -12
- package/dist/bin/exe-new-employee.js +175 -7
- package/dist/bin/exe-pending-messages.js +75 -15
- package/dist/bin/exe-pending-notifications.js +75 -15
- package/dist/bin/exe-pending-reviews.js +75 -15
- package/dist/bin/exe-rename.js +54 -11
- package/dist/bin/exe-review.js +54 -11
- package/dist/bin/exe-search.js +54 -11
- package/dist/bin/exe-session-cleanup.js +491 -146
- package/dist/bin/exe-settings.js +10 -4
- package/dist/bin/exe-start-codex.js +524 -245
- package/dist/bin/exe-start-opencode.js +534 -165
- package/dist/bin/exe-status.js +75 -15
- package/dist/bin/exe-support.js +1 -1
- package/dist/bin/exe-team.js +54 -11
- package/dist/bin/git-sweep.js +369 -24
- package/dist/bin/graph-backfill.js +54 -11
- package/dist/bin/graph-export.js +54 -11
- package/dist/bin/install.js +62 -4
- package/dist/bin/intercom-check.js +491 -146
- package/dist/bin/pre-publish.js +13 -1
- package/dist/bin/scan-tasks.js +369 -24
- package/dist/bin/setup.js +91 -13
- package/dist/bin/shard-migrate.js +54 -11
- package/dist/bin/stack-update.js +1 -1
- package/dist/bin/update.js +3 -3
- package/dist/gateway/index.js +128 -23
- package/dist/hooks/bug-report-worker.js +128 -23
- package/dist/hooks/codex-stop-task-finalizer.js +512 -140
- package/dist/hooks/commit-complete.js +369 -24
- package/dist/hooks/error-recall.js +54 -11
- package/dist/hooks/ingest.js +4575 -252
- package/dist/hooks/instructions-loaded.js +54 -11
- package/dist/hooks/notification.js +54 -11
- package/dist/hooks/post-compact.js +75 -15
- package/dist/hooks/post-tool-combined.js +75 -15
- package/dist/hooks/pre-compact.js +449 -104
- package/dist/hooks/pre-tool-use.js +90 -15
- package/dist/hooks/prompt-submit.js +129 -24
- package/dist/hooks/session-end.js +451 -109
- package/dist/hooks/session-start.js +104 -16
- package/dist/hooks/stop.js +74 -14
- package/dist/hooks/subagent-stop.js +75 -15
- package/dist/hooks/summary-worker.js +73 -7
- package/dist/index.js +128 -23
- package/dist/lib/agent-config.js +16 -1
- package/dist/lib/cloud-sync.js +38 -1
- package/dist/lib/consolidation.js +16 -1
- package/dist/lib/database.js +16 -0
- package/dist/lib/db.js +16 -0
- package/dist/lib/device-registry.js +16 -0
- package/dist/lib/employee-templates.js +29 -3
- package/dist/lib/employees.js +16 -1
- package/dist/lib/exe-daemon.js +268 -42
- package/dist/lib/hybrid-search.js +54 -11
- package/dist/lib/license.js +3 -3
- package/dist/lib/messaging.js +21 -4
- package/dist/lib/schedules.js +29 -1
- package/dist/lib/skill-learning.js +458 -70
- package/dist/lib/status-brief.js +14 -1
- package/dist/lib/store.js +54 -11
- package/dist/lib/tasks.js +393 -91
- package/dist/lib/tmux-routing.js +316 -14
- package/dist/mcp/server.js +169 -30
- package/dist/mcp/tools/create-task.js +75 -13
- package/dist/mcp/tools/deactivate-behavior.js +33 -24
- package/dist/mcp/tools/list-tasks.js +21 -4
- package/dist/mcp/tools/send-message.js +21 -4
- package/dist/mcp/tools/update-task.js +390 -91
- package/dist/runtime/index.js +446 -101
- package/dist/tui/App.js +208 -54
- package/package.json +1 -1
package/dist/bin/exe-settings.js
CHANGED
|
@@ -384,7 +384,7 @@ function saveAgentConfig(config) {
|
|
|
384
384
|
writeFileSync5(AGENT_CONFIG_PATH, JSON.stringify(config, null, 2) + "\n", "utf-8");
|
|
385
385
|
enforcePrivateFileSync(AGENT_CONFIG_PATH);
|
|
386
386
|
}
|
|
387
|
-
function setAgentRuntime(agentId, runtime, model, reasoning_effort) {
|
|
387
|
+
function setAgentRuntime(agentId, runtime, model, reasoning_effort, mcps) {
|
|
388
388
|
const knownModels = KNOWN_RUNTIMES[runtime];
|
|
389
389
|
if (!knownModels) {
|
|
390
390
|
return {
|
|
@@ -399,8 +399,14 @@ function setAgentRuntime(agentId, runtime, model, reasoning_effort) {
|
|
|
399
399
|
};
|
|
400
400
|
}
|
|
401
401
|
const config = loadAgentConfig();
|
|
402
|
+
const existing = config[agentId];
|
|
402
403
|
const entry = { runtime, model };
|
|
403
404
|
if (reasoning_effort) entry.reasoning_effort = reasoning_effort;
|
|
405
|
+
if (mcps !== void 0) {
|
|
406
|
+
entry.mcps = mcps.includes("exe-os") ? mcps : ["exe-os", ...mcps];
|
|
407
|
+
} else if (existing?.mcps) {
|
|
408
|
+
entry.mcps = existing.mcps;
|
|
409
|
+
}
|
|
404
410
|
config[agentId] = entry;
|
|
405
411
|
saveAgentConfig(config);
|
|
406
412
|
return { ok: true };
|
|
@@ -481,7 +487,7 @@ import { jwtVerify, importSPKI } from "jose";
|
|
|
481
487
|
var LICENSE_PATH = path4.join(EXE_AI_DIR, "license.key");
|
|
482
488
|
var CACHE_PATH = path4.join(EXE_AI_DIR, "license-cache.json");
|
|
483
489
|
var DEVICE_ID_PATH = path4.join(EXE_AI_DIR, "device-id");
|
|
484
|
-
var API_BASE = process.env.EXE_CLOUD_ENDPOINT ?? "https://askexe.com
|
|
490
|
+
var API_BASE = process.env.EXE_CLOUD_ENDPOINT ?? "https://cloud.askexe.com";
|
|
485
491
|
|
|
486
492
|
// src/lib/cloud-sync.ts
|
|
487
493
|
init_config();
|
|
@@ -786,8 +792,8 @@ async function main() {
|
|
|
786
792
|
prompt();
|
|
787
793
|
return;
|
|
788
794
|
}
|
|
789
|
-
rl.question(" Endpoint [https://askexe.com
|
|
790
|
-
const endpoint = ep.trim() || "https://askexe.com
|
|
795
|
+
rl.question(" Endpoint [https://cloud.askexe.com]: ", async (ep) => {
|
|
796
|
+
const endpoint = ep.trim() || "https://cloud.askexe.com";
|
|
791
797
|
console.log(" Validating...");
|
|
792
798
|
try {
|
|
793
799
|
assertSecureEndpoint(endpoint);
|