@askexenow/exe-os 0.9.34 → 0.9.36
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/backfill-conversations.js +212 -11
- package/dist/bin/backfill-responses.js +212 -11
- package/dist/bin/backfill-vectors.js +14 -3
- package/dist/bin/cleanup-stale-review-tasks.js +224 -12
- package/dist/bin/cli.js +265 -23
- package/dist/bin/exe-agent.js +1 -1
- package/dist/bin/exe-assign.js +217 -12
- package/dist/bin/exe-boot.js +25 -4
- package/dist/bin/exe-call.js +7 -5
- package/dist/bin/exe-dispatch.js +229 -13
- package/dist/bin/exe-doctor.js +14 -3
- package/dist/bin/exe-export-behaviors.js +301 -14
- package/dist/bin/exe-forget.js +245 -21
- package/dist/bin/exe-gateway.js +229 -13
- package/dist/bin/exe-heartbeat.js +224 -12
- package/dist/bin/exe-kill.js +224 -12
- package/dist/bin/exe-launch-agent.js +177 -9
- package/dist/bin/exe-link.js +8 -0
- package/dist/bin/exe-new-employee.js +26 -2
- package/dist/bin/exe-pending-messages.js +224 -12
- package/dist/bin/exe-pending-notifications.js +224 -12
- package/dist/bin/exe-pending-reviews.js +224 -12
- package/dist/bin/exe-rename.js +9 -1
- package/dist/bin/exe-review.js +224 -12
- package/dist/bin/exe-search.js +246 -21
- package/dist/bin/exe-session-cleanup.js +229 -13
- package/dist/bin/exe-start-codex.js +161 -5
- package/dist/bin/exe-start-opencode.js +172 -5
- package/dist/bin/exe-status.js +224 -12
- package/dist/bin/exe-team.js +224 -12
- package/dist/bin/git-sweep.js +229 -13
- package/dist/bin/graph-backfill.js +94 -3
- package/dist/bin/graph-export.js +224 -12
- package/dist/bin/install.js +25 -1
- package/dist/bin/intercom-check.js +229 -13
- package/dist/bin/scan-tasks.js +229 -13
- package/dist/bin/setup.js +15 -5
- package/dist/bin/shard-migrate.js +94 -3
- package/dist/gateway/index.js +229 -13
- package/dist/hooks/bug-report-worker.js +229 -13
- package/dist/hooks/codex-stop-task-finalizer.js +224 -12
- package/dist/hooks/commit-complete.js +229 -13
- package/dist/hooks/error-recall.js +246 -21
- package/dist/hooks/ingest.js +224 -12
- package/dist/hooks/instructions-loaded.js +224 -12
- package/dist/hooks/notification.js +224 -12
- package/dist/hooks/post-compact.js +224 -12
- package/dist/hooks/post-tool-combined.js +246 -21
- package/dist/hooks/pre-compact.js +229 -13
- package/dist/hooks/pre-tool-use.js +234 -18
- package/dist/hooks/prompt-submit.js +346 -23
- package/dist/hooks/session-end.js +229 -13
- package/dist/hooks/session-start.js +418 -42
- package/dist/hooks/stop.js +224 -12
- package/dist/hooks/subagent-stop.js +224 -12
- package/dist/hooks/summary-worker.js +15 -2
- package/dist/index.js +229 -13
- package/dist/lib/cloud-sync.js +8 -0
- package/dist/lib/consolidation.js +3 -1
- package/dist/lib/database.js +8 -0
- package/dist/lib/db.js +8 -0
- package/dist/lib/device-registry.js +8 -0
- package/dist/lib/employee-templates.js +7 -5
- package/dist/lib/exe-daemon.js +1776 -1433
- package/dist/lib/hybrid-search.js +246 -21
- package/dist/lib/schedules.js +14 -3
- package/dist/lib/store.js +217 -12
- package/dist/lib/tasks.js +5 -1
- package/dist/lib/tmux-routing.js +5 -1
- package/dist/mcp/server.js +331 -37
- package/dist/mcp/tools/create-task.js +5 -1
- package/dist/mcp/tools/update-task.js +5 -1
- package/dist/runtime/index.js +229 -13
- package/dist/tui/App.js +229 -13
- package/package.json +1 -1
- package/src/commands/exe/save.md +48 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# /exe-save
|
|
2
|
+
|
|
3
|
+
Save a context checkpoint — commit everything important from this session to long-term memory before context fills up or session ends.
|
|
4
|
+
|
|
5
|
+
## What to save
|
|
6
|
+
|
|
7
|
+
Store a structured memory checkpoint with ALL of the following:
|
|
8
|
+
|
|
9
|
+
1. **What you accomplished** — list every completed task, fix, or deliverable
|
|
10
|
+
2. **Decisions made** — architectural choices, trade-offs, priorities decided
|
|
11
|
+
3. **Open items** — anything unfinished, blocked, or deferred
|
|
12
|
+
4. **Key file paths** — files you created, modified, or need to revisit
|
|
13
|
+
5. **Risks or concerns** — anything that might break or needs follow-up
|
|
14
|
+
|
|
15
|
+
## How to save
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
# Use store_memory MCP tool with a structured checkpoint
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Call `store_memory` with this format:
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
CONTEXT CHECKPOINT [session-date]:
|
|
25
|
+
## Completed
|
|
26
|
+
- [list what was done]
|
|
27
|
+
|
|
28
|
+
## Decisions
|
|
29
|
+
- [list decisions and why]
|
|
30
|
+
|
|
31
|
+
## Open Items
|
|
32
|
+
- [list what's unfinished]
|
|
33
|
+
|
|
34
|
+
## Key Files
|
|
35
|
+
- [list important file paths]
|
|
36
|
+
|
|
37
|
+
## Risks
|
|
38
|
+
- [list concerns]
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Then call `store_memory` again for each major decision as a separate `decision` type memory — these survive consolidation and are always retrievable via `recall_my_memory(query, retrieval_mode="decisions_only")`.
|
|
42
|
+
|
|
43
|
+
## When to use
|
|
44
|
+
|
|
45
|
+
- Before your context window fills up
|
|
46
|
+
- At the end of a long working session
|
|
47
|
+
- Before switching to a different project
|
|
48
|
+
- When the founder says "save everything"
|