@askexenow/exe-os 0.8.85 → 0.8.87
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/cleanup-stale-review-tasks.js +57 -19
- package/dist/bin/cli.js +510 -340
- package/dist/bin/exe-agent-config.js +242 -0
- package/dist/bin/exe-agent.js +3 -3
- package/dist/bin/exe-boot.js +344 -346
- package/dist/bin/exe-dispatch.js +375 -250
- package/dist/bin/exe-forget.js +5 -1
- package/dist/bin/exe-gateway.js +260 -135
- package/dist/bin/exe-healthcheck.js +133 -1
- package/dist/bin/exe-heartbeat.js +72 -31
- package/dist/bin/exe-link.js +25 -2
- package/dist/bin/exe-new-employee.js +22 -0
- package/dist/bin/exe-pending-messages.js +55 -17
- package/dist/bin/exe-pending-reviews.js +57 -19
- package/dist/bin/exe-search.js +6 -2
- package/dist/bin/exe-session-cleanup.js +260 -135
- package/dist/bin/exe-start-codex.js +2598 -0
- package/dist/bin/exe-start.sh +15 -3
- package/dist/bin/exe-status.js +57 -19
- package/dist/bin/git-sweep.js +391 -266
- package/dist/bin/install.js +22 -0
- package/dist/bin/scan-tasks.js +394 -269
- package/dist/bin/setup.js +50 -5
- package/dist/gateway/index.js +257 -132
- package/dist/hooks/bug-report-worker.js +242 -117
- package/dist/hooks/commit-complete.js +389 -264
- package/dist/hooks/error-recall.js +6 -2
- package/dist/hooks/ingest-worker.js +314 -193
- package/dist/hooks/post-compact.js +84 -46
- package/dist/hooks/pre-compact.js +272 -147
- package/dist/hooks/pre-tool-use.js +104 -66
- package/dist/hooks/prompt-submit.js +126 -66
- package/dist/hooks/session-end.js +277 -152
- package/dist/hooks/session-start.js +70 -28
- package/dist/hooks/stop.js +90 -52
- package/dist/hooks/subagent-stop.js +84 -46
- package/dist/hooks/summary-worker.js +175 -114
- package/dist/index.js +296 -171
- package/dist/lib/agent-config.js +167 -0
- package/dist/lib/cloud-sync.js +25 -2
- package/dist/lib/exe-daemon.js +338 -213
- package/dist/lib/hybrid-search.js +7 -2
- package/dist/lib/messaging.js +95 -39
- package/dist/lib/runtime-table.js +16 -0
- package/dist/lib/session-wrappers.js +22 -0
- package/dist/lib/tasks.js +242 -117
- package/dist/lib/tmux-routing.js +314 -189
- package/dist/mcp/server.js +573 -274
- package/dist/mcp/tools/create-task.js +260 -135
- package/dist/mcp/tools/list-tasks.js +68 -30
- package/dist/mcp/tools/send-message.js +100 -44
- package/dist/mcp/tools/update-task.js +123 -67
- package/dist/runtime/index.js +276 -151
- package/dist/tui/App.js +479 -354
- package/package.json +1 -1
- package/src/commands/exe/agent-config.md +27 -0
- package/src/commands/exe/cc-doctor.md +10 -0
|
@@ -4076,7 +4076,7 @@ async function hybridSearch(queryText, agentId, options) {
|
|
|
4076
4076
|
process.stderr.write("[hybrid-search] Embed daemon unavailable \u2014 FTS-only mode\n");
|
|
4077
4077
|
}
|
|
4078
4078
|
let grepPromise = Promise.resolve([]);
|
|
4079
|
-
if (config.fileGrepEnabled
|
|
4079
|
+
if (config.fileGrepEnabled === true) {
|
|
4080
4080
|
try {
|
|
4081
4081
|
const { getProjectName: getProjectName2 } = await Promise.resolve().then(() => (init_project_name(), project_name_exports));
|
|
4082
4082
|
const projectRoot = process.cwd();
|
|
@@ -4342,7 +4342,7 @@ async function ftsQuery(client, matchExpr, agentId, options, limit) {
|
|
|
4342
4342
|
source_type: row.source_type ?? null
|
|
4343
4343
|
}));
|
|
4344
4344
|
}
|
|
4345
|
-
async function recentRecords(agentId, options, limit) {
|
|
4345
|
+
async function recentRecords(agentId, options, limit, textFilter) {
|
|
4346
4346
|
const client = getClient();
|
|
4347
4347
|
const statusFilter = options?.includeArchived ? "" : `
|
|
4348
4348
|
AND COALESCE(status, 'active') = 'active'`;
|
|
@@ -4382,6 +4382,10 @@ async function recentRecords(agentId, options, limit) {
|
|
|
4382
4382
|
sql += ` AND memory_type = ?`;
|
|
4383
4383
|
args.push(options.memoryType);
|
|
4384
4384
|
}
|
|
4385
|
+
if (textFilter) {
|
|
4386
|
+
sql += ` AND raw_text LIKE '%' || ? || '%'`;
|
|
4387
|
+
args.push(textFilter);
|
|
4388
|
+
}
|
|
4385
4389
|
sql += ` ORDER BY timestamp DESC LIMIT ?`;
|
|
4386
4390
|
args.push(limit);
|
|
4387
4391
|
const result = await client.execute({ sql, args });
|