@askexenow/exe-os 0.9.65 → 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} +1532 -2173
- package/dist/bin/backfill-conversations.js +528 -20
- package/dist/bin/backfill-responses.js +528 -20
- package/dist/bin/backfill-vectors.js +255 -20
- package/dist/bin/bulk-sync-postgres.js +4876 -0
- package/dist/bin/cleanup-stale-review-tasks.js +529 -21
- package/dist/bin/cli.js +3471 -1491
- package/dist/bin/exe-agent-config.js +4 -0
- package/dist/bin/exe-agent.js +16 -0
- package/dist/bin/exe-assign.js +528 -20
- package/dist/bin/exe-boot.js +492 -54
- package/dist/bin/exe-call.js +16 -0
- package/dist/bin/exe-cloud.js +7415 -518
- package/dist/bin/exe-dispatch.js +540 -22
- package/dist/bin/exe-doctor.js +3404 -1225
- package/dist/bin/exe-export-behaviors.js +542 -24
- package/dist/bin/exe-forget.js +529 -21
- package/dist/bin/exe-gateway.js +595 -25
- package/dist/bin/exe-heartbeat.js +541 -24
- package/dist/bin/exe-kill.js +529 -21
- package/dist/bin/exe-launch-agent.js +2334 -1067
- package/dist/bin/exe-new-employee.js +324 -166
- package/dist/bin/exe-pending-messages.js +529 -21
- package/dist/bin/exe-pending-notifications.js +529 -21
- package/dist/bin/exe-pending-reviews.js +529 -21
- package/dist/bin/exe-rename.js +529 -21
- package/dist/bin/exe-review.js +529 -21
- package/dist/bin/exe-search.js +542 -24
- package/dist/bin/exe-session-cleanup.js +540 -22
- package/dist/bin/exe-settings.js +14 -0
- package/dist/bin/exe-start-codex.js +817 -144
- package/dist/bin/exe-start-opencode.js +776 -80
- package/dist/bin/exe-status.js +529 -21
- package/dist/bin/exe-team.js +529 -21
- package/dist/bin/git-sweep.js +540 -22
- package/dist/bin/graph-backfill.js +580 -21
- package/dist/bin/graph-export.js +529 -21
- package/dist/bin/graph-layer-benchmark.js +109 -0
- package/dist/bin/install.js +420 -289
- package/dist/bin/intercom-check.js +540 -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 +540 -22
- package/dist/bin/setup.js +790 -206
- package/dist/bin/shard-migrate.js +528 -20
- package/dist/bin/update.js +4 -0
- package/dist/gateway/index.js +593 -23
- package/dist/hooks/bug-report-worker.js +651 -64
- package/dist/hooks/codex-stop-task-finalizer.js +540 -22
- package/dist/hooks/commit-complete.js +540 -22
- package/dist/hooks/error-recall.js +542 -24
- package/dist/hooks/exe-heartbeat-hook.js +4 -0
- package/dist/hooks/ingest-worker.js +4 -0
- package/dist/hooks/ingest.js +539 -22
- package/dist/hooks/instructions-loaded.js +529 -21
- package/dist/hooks/notification.js +529 -21
- package/dist/hooks/post-compact.js +529 -21
- package/dist/hooks/post-tool-combined.js +543 -25
- package/dist/hooks/pre-compact.js +772 -127
- package/dist/hooks/pre-tool-use.js +529 -21
- package/dist/hooks/prompt-submit.js +543 -25
- package/dist/hooks/session-end.js +673 -140
- package/dist/hooks/session-start.js +662 -26
- package/dist/hooks/stop.js +540 -23
- package/dist/hooks/subagent-stop.js +529 -21
- package/dist/hooks/summary-worker.js +571 -126
- package/dist/index.js +593 -23
- package/dist/lib/agent-config.js +4 -0
- package/dist/lib/cloud-sync.js +408 -47
- package/dist/lib/config.js +25 -1
- package/dist/lib/consolidation.js +5 -1
- package/dist/lib/database.js +128 -0
- package/dist/lib/db-daemon-client.js +4 -0
- package/dist/lib/db.js +128 -0
- package/dist/lib/device-registry.js +128 -0
- package/dist/lib/embedder.js +25 -1
- package/dist/lib/employee-templates.js +16 -0
- package/dist/lib/employees.js +4 -0
- package/dist/lib/exe-daemon-client.js +4 -0
- package/dist/lib/exe-daemon.js +3158 -930
- package/dist/lib/hybrid-search.js +542 -24
- package/dist/lib/identity.js +7 -0
- package/dist/lib/keychain.js +178 -22
- package/dist/lib/license.js +4 -0
- package/dist/lib/messaging.js +7 -0
- package/dist/lib/reminders.js +7 -0
- package/dist/lib/schedules.js +255 -20
- package/dist/lib/skill-learning.js +28 -1
- package/dist/lib/status-brief.js +39 -0
- package/dist/lib/store.js +528 -20
- package/dist/lib/task-router.js +4 -0
- package/dist/lib/tasks.js +28 -1
- package/dist/lib/tmux-routing.js +28 -1
- package/dist/lib/token-spend.js +7 -0
- package/dist/mcp/server.js +2739 -813
- package/dist/mcp/tools/complete-reminder.js +7 -0
- package/dist/mcp/tools/create-reminder.js +7 -0
- package/dist/mcp/tools/create-task.js +28 -1
- package/dist/mcp/tools/deactivate-behavior.js +7 -0
- package/dist/mcp/tools/list-reminders.js +7 -0
- package/dist/mcp/tools/list-tasks.js +7 -0
- package/dist/mcp/tools/send-message.js +7 -0
- package/dist/mcp/tools/update-task.js +28 -1
- package/dist/runtime/index.js +540 -22
- package/dist/tui/App.js +618 -29
- package/package.json +9 -5
- package/src/commands/exe/cloud.md +11 -8
- package/stack.release.json +3 -3
- package/src/commands/exe/link.md +0 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@askexenow/exe-os",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.67",
|
|
4
4
|
"description": "AI employee operating system — persistent memory, task management, and multi-agent coordination for Claude Code.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"type": "module",
|
|
@@ -45,7 +45,9 @@
|
|
|
45
45
|
"customer-readiness": "./dist/bin/customer-readiness.js",
|
|
46
46
|
"exe-healthcheck": "./dist/bin/exe-healthcheck.js",
|
|
47
47
|
"exe-doctor": "./dist/bin/exe-doctor.js",
|
|
48
|
-
"exe-stack-update": "./dist/bin/stack-update.js"
|
|
48
|
+
"exe-stack-update": "./dist/bin/stack-update.js",
|
|
49
|
+
"exe-cloud": "./dist/bin/exe-cloud.js",
|
|
50
|
+
"exe-os-bulk-sync-postgres": "./dist/bin/bulk-sync-postgres.js"
|
|
49
51
|
},
|
|
50
52
|
"files": [
|
|
51
53
|
"dist",
|
|
@@ -87,6 +89,7 @@
|
|
|
87
89
|
},
|
|
88
90
|
"dependencies": {
|
|
89
91
|
"@anthropic-ai/sdk": "^0.95.1",
|
|
92
|
+
"@aws-sdk/client-s3": "^3.800.0",
|
|
90
93
|
"@discordjs/voice": "^0.19.2",
|
|
91
94
|
"@libsql/client": "^0.14.0",
|
|
92
95
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
@@ -104,19 +107,20 @@
|
|
|
104
107
|
"ink": "^6.8.0",
|
|
105
108
|
"ink-text-input": "^6.0.0",
|
|
106
109
|
"jose": "^6.2.2",
|
|
110
|
+
"node-llama-cpp": "^3.18.0",
|
|
107
111
|
"nodemailer": "^8.0.5",
|
|
108
112
|
"openai": "^6.33.0",
|
|
113
|
+
"pg": "^8.20.0",
|
|
109
114
|
"react": "^19.2.4",
|
|
110
115
|
"typescript": "^5.0.0",
|
|
111
116
|
"ws": "^8.20.0",
|
|
112
117
|
"yjs": "^13.6.30",
|
|
113
|
-
"zod": "^4.3.6"
|
|
114
|
-
"@aws-sdk/client-s3": "^3.800.0",
|
|
115
|
-
"node-llama-cpp": "^3.18.0"
|
|
118
|
+
"zod": "^4.3.6"
|
|
116
119
|
},
|
|
117
120
|
"devDependencies": {
|
|
118
121
|
"@types/node": "^22.0.0",
|
|
119
122
|
"@types/nodemailer": "^8.0.0",
|
|
123
|
+
"@types/pg": "^8.20.0",
|
|
120
124
|
"tsup": "^8.5.1",
|
|
121
125
|
"tsx": "^4.0.0",
|
|
122
126
|
"typescript": "^5.0.0",
|
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: Set up cloud sync
|
|
2
|
+
description: Set up cloud sync, link a device, or run Exe Cloud sync
|
|
3
3
|
allowed-tools: Bash
|
|
4
|
-
argument-hint: [sync|
|
|
4
|
+
argument-hint: [link|status|sync|reupload]
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
-
One command
|
|
7
|
+
One customer-facing command family for Exe Cloud.
|
|
8
8
|
|
|
9
|
-
- `/exe-cloud` — full interactive setup
|
|
10
|
-
- `/exe-cloud
|
|
11
|
-
- `/exe-cloud
|
|
9
|
+
- `/exe-cloud` — full interactive setup: import/create key if needed, configure cloud API, register device, and start syncing.
|
|
10
|
+
- `/exe-cloud status` — read-only check of key/cloud status and endpoint.
|
|
11
|
+
- `/exe-cloud link` — link another device: shows masked recovery phrase + cloud info. To reveal the full phrase, the user must run `exe-os cloud link --show-full` directly in their local Terminal.
|
|
12
|
+
- `/exe-cloud sync` — manual “sync now”: pull + push memories, tasks, roster, behaviors, docs, and graph data.
|
|
13
|
+
- `/exe-cloud reupload` — guided post-key-rotation cloud repair: confirm phrase backup and re-upload local DB as source of truth.
|
|
14
|
+
- `/exe-cloud reupload --dry-run` — show the re-upload checklist without changing anything.
|
|
12
15
|
|
|
13
16
|
```bash
|
|
14
|
-
|
|
17
|
+
exe-os cloud $ARGUMENTS
|
|
15
18
|
```
|
|
16
19
|
|
|
17
|
-
|
|
20
|
+
Terminal-only safety rule: agents must not reveal full recovery phrases in chat. If the user needs the full phrase, tell them to run `exe-os cloud link --show-full` directly in their local Terminal.
|
package/stack.release.json
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
"repo": "AskExe/exe-os",
|
|
5
5
|
"service": "exed",
|
|
6
6
|
"packageName": "@askexenow/exe-os",
|
|
7
|
-
"version": "0.9.
|
|
8
|
-
"image": "ghcr.io/askexe/exed:v0.9.
|
|
7
|
+
"version": "0.9.2",
|
|
8
|
+
"image": "ghcr.io/askexe/exed:v0.9.2",
|
|
9
9
|
"imageEnv": "EXED_IMAGE_TAG",
|
|
10
10
|
"stackParticipation": {
|
|
11
11
|
"required": true,
|
|
@@ -42,6 +42,6 @@
|
|
|
42
42
|
"breakingChanges": [],
|
|
43
43
|
"dataSovereignty": "Customer-local memory/tasks/behaviors stay in SQLCipher/local storage. Updates must not overwrite roster, identity, behavior, or local memory files.",
|
|
44
44
|
"releaseLine": "v0.9 private/customer pilot; v1.0 is public-beta stable.",
|
|
45
|
-
"highGhostStack": "0.9.
|
|
45
|
+
"highGhostStack": "0.9.2"
|
|
46
46
|
}
|
|
47
47
|
}
|
package/src/commands/exe/link.md
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: Link another device by exporting or importing your encryption key
|
|
3
|
-
allowed-tools: Bash
|
|
4
|
-
argument-hint: [export|import]
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
**Deprecated:** Use `/exe-cloud` instead — it handles key import AND cloud sync in one step.
|
|
8
|
-
|
|
9
|
-
- `/exe-cloud` — full setup (key + cloud)
|
|
10
|
-
- `/exe-cloud sync` — export everything for a new device
|
|
11
|
-
- `/exe-cloud status` — check sync status
|
|
12
|
-
|
|
13
|
-
Legacy command still works:
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
node "$(npm root -g)/@askexenow/exe-os/dist/bin/exe-link.js" $ARGUMENTS
|
|
17
|
-
```
|