@askexenow/exe-os 0.9.69 → 0.9.71
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 +96 -16
- package/dist/bin/agentic-ontology-backfill.js +33 -0
- package/dist/bin/agentic-reflection-backfill.js +33 -0
- package/dist/bin/agentic-semantic-label.js +33 -0
- package/dist/bin/backfill-conversations.js +33 -0
- package/dist/bin/backfill-responses.js +33 -0
- package/dist/bin/backfill-vectors.js +33 -0
- package/dist/bin/bulk-sync-postgres.js +33 -0
- package/dist/bin/cleanup-stale-review-tasks.js +33 -0
- package/dist/bin/cli.js +1284 -178
- package/dist/bin/exe-agent.js +6 -0
- package/dist/bin/exe-assign.js +33 -0
- package/dist/bin/exe-boot.js +33 -0
- package/dist/bin/exe-call.js +6 -0
- package/dist/bin/exe-cloud.js +33 -0
- package/dist/bin/exe-dispatch.js +33 -0
- package/dist/bin/exe-doctor.js +33 -0
- package/dist/bin/exe-export-behaviors.js +33 -0
- package/dist/bin/exe-forget.js +33 -0
- package/dist/bin/exe-gateway.js +178 -110
- package/dist/bin/exe-heartbeat.js +33 -0
- package/dist/bin/exe-kill.js +33 -0
- package/dist/bin/exe-launch-agent.js +33 -0
- package/dist/bin/exe-new-employee.js +6 -0
- package/dist/bin/exe-pending-messages.js +33 -0
- package/dist/bin/exe-pending-notifications.js +33 -0
- package/dist/bin/exe-pending-reviews.js +33 -0
- package/dist/bin/exe-rename.js +40 -4
- package/dist/bin/exe-review.js +33 -0
- package/dist/bin/exe-search.js +33 -0
- package/dist/bin/exe-session-cleanup.js +33 -0
- package/dist/bin/exe-start-codex.js +33 -0
- package/dist/bin/exe-start-opencode.js +33 -0
- package/dist/bin/exe-status.js +33 -0
- package/dist/bin/exe-team.js +33 -0
- package/dist/bin/git-sweep.js +33 -0
- package/dist/bin/graph-backfill.js +177 -110
- package/dist/bin/graph-export.js +33 -0
- package/dist/bin/intercom-check.js +33 -0
- package/dist/bin/registry-proxy.js +207 -0
- package/dist/bin/scan-tasks.js +33 -0
- package/dist/bin/setup.js +33 -0
- package/dist/bin/shard-migrate.js +33 -0
- package/dist/bin/stack-update.js +128 -0
- package/dist/gateway/index.js +178 -110
- package/dist/hooks/bug-report-worker.js +33 -0
- package/dist/hooks/codex-stop-task-finalizer.js +33 -0
- package/dist/hooks/commit-complete.js +33 -0
- package/dist/hooks/error-recall.js +33 -0
- package/dist/hooks/ingest.js +33 -0
- package/dist/hooks/instructions-loaded.js +33 -0
- package/dist/hooks/notification.js +33 -0
- package/dist/hooks/post-compact.js +33 -0
- package/dist/hooks/post-tool-combined.js +698 -17
- package/dist/hooks/pre-compact.js +33 -0
- package/dist/hooks/pre-tool-use.js +33 -0
- package/dist/hooks/prompt-submit.js +314 -0
- package/dist/hooks/session-end.js +33 -0
- package/dist/hooks/session-start.js +33 -0
- package/dist/hooks/stop.js +279 -12
- package/dist/hooks/subagent-stop.js +33 -0
- package/dist/hooks/summary-worker.js +33 -0
- package/dist/index.js +178 -110
- package/dist/lib/cloud-sync.js +27 -0
- package/dist/lib/database.js +27 -0
- package/dist/lib/db.js +27 -0
- package/dist/lib/device-registry.js +27 -0
- package/dist/lib/employee-templates.js +6 -0
- package/dist/lib/exe-daemon.js +639 -259
- package/dist/lib/hybrid-search.js +33 -0
- package/dist/lib/registry-proxy.js +162 -0
- package/dist/lib/schedules.js +33 -0
- package/dist/lib/store.js +33 -0
- package/dist/mcp/server.js +561 -244
- package/dist/runtime/index.js +33 -0
- package/dist/tui/App.js +33 -0
- package/package.json +3 -2
- package/stack.release.json +6 -4
- package/stack.release.schema.json +89 -18
package/dist/runtime/index.js
CHANGED
|
@@ -3006,6 +3006,33 @@ async function ensureSchema() {
|
|
|
3006
3006
|
CREATE INDEX IF NOT EXISTS idx_chat_history_session
|
|
3007
3007
|
ON chat_history(session_id, id);
|
|
3008
3008
|
`);
|
|
3009
|
+
await client.executeMultiple(`
|
|
3010
|
+
CREATE TABLE IF NOT EXISTS session_events (
|
|
3011
|
+
id TEXT PRIMARY KEY,
|
|
3012
|
+
agent_id TEXT NOT NULL,
|
|
3013
|
+
agent_role TEXT NOT NULL,
|
|
3014
|
+
session_id TEXT NOT NULL,
|
|
3015
|
+
session_scope TEXT,
|
|
3016
|
+
project_name TEXT NOT NULL,
|
|
3017
|
+
event_index INTEGER NOT NULL,
|
|
3018
|
+
event_type TEXT NOT NULL,
|
|
3019
|
+
tool_name TEXT,
|
|
3020
|
+
tool_use_id TEXT,
|
|
3021
|
+
content TEXT NOT NULL,
|
|
3022
|
+
payload_json TEXT,
|
|
3023
|
+
has_error INTEGER NOT NULL DEFAULT 0,
|
|
3024
|
+
created_at TEXT NOT NULL
|
|
3025
|
+
);
|
|
3026
|
+
|
|
3027
|
+
CREATE INDEX IF NOT EXISTS idx_session_events_agent_time
|
|
3028
|
+
ON session_events(agent_id, created_at DESC);
|
|
3029
|
+
|
|
3030
|
+
CREATE INDEX IF NOT EXISTS idx_session_events_session_index
|
|
3031
|
+
ON session_events(session_id, event_index);
|
|
3032
|
+
|
|
3033
|
+
CREATE INDEX IF NOT EXISTS idx_session_events_scope_agent_time
|
|
3034
|
+
ON session_events(session_scope, agent_id, created_at DESC);
|
|
3035
|
+
`);
|
|
3009
3036
|
await client.executeMultiple(`
|
|
3010
3037
|
CREATE TABLE IF NOT EXISTS workspaces (
|
|
3011
3038
|
id TEXT PRIMARY KEY,
|
|
@@ -7948,6 +7975,12 @@ var init_platform_procedures = __esm({
|
|
|
7948
7975
|
priority: "p0",
|
|
7949
7976
|
content: "exe-build-adv is MANDATORY for ALL work touching 3+ files. Run /exe-build-adv --auto BEFORE implementation. Pipeline: Spec \u2192 AC \u2192 Tests \u2192 Evaluate \u2192 Fix. No multi-file feature ships without pipeline artifacts. No exceptions \u2014 managers reject work without them."
|
|
7950
7977
|
},
|
|
7978
|
+
{
|
|
7979
|
+
title: "Code context first for repository orientation",
|
|
7980
|
+
domain: "workflow",
|
|
7981
|
+
priority: "p1",
|
|
7982
|
+
content: "Before broad repo exploration, symbol tracing, blast-radius review, or codebase Q&A, agents should use the consolidated code_context MCP tool instead of manual grep/read loops. Use action=index or stats to refresh/check the index; action=search with query, limit, offset, languages, paths, refresh_index for fresh multi-language code/doc search; action=trace for symbol imports/dependents; action=blast_radius for impact analysis before edits. CLI parity exists via exe-os code-context init|index|status|stats|search|doctor. Keep code_context separate from durable employee memory: promote only validated decisions, procedures, or lessons into store_memory/commit_memory."
|
|
7983
|
+
},
|
|
7951
7984
|
{
|
|
7952
7985
|
title: "Commit discipline \u2014 never leave verified work floating",
|
|
7953
7986
|
domain: "workflow",
|
package/dist/tui/App.js
CHANGED
|
@@ -3258,6 +3258,33 @@ async function ensureSchema() {
|
|
|
3258
3258
|
CREATE INDEX IF NOT EXISTS idx_chat_history_session
|
|
3259
3259
|
ON chat_history(session_id, id);
|
|
3260
3260
|
`);
|
|
3261
|
+
await client.executeMultiple(`
|
|
3262
|
+
CREATE TABLE IF NOT EXISTS session_events (
|
|
3263
|
+
id TEXT PRIMARY KEY,
|
|
3264
|
+
agent_id TEXT NOT NULL,
|
|
3265
|
+
agent_role TEXT NOT NULL,
|
|
3266
|
+
session_id TEXT NOT NULL,
|
|
3267
|
+
session_scope TEXT,
|
|
3268
|
+
project_name TEXT NOT NULL,
|
|
3269
|
+
event_index INTEGER NOT NULL,
|
|
3270
|
+
event_type TEXT NOT NULL,
|
|
3271
|
+
tool_name TEXT,
|
|
3272
|
+
tool_use_id TEXT,
|
|
3273
|
+
content TEXT NOT NULL,
|
|
3274
|
+
payload_json TEXT,
|
|
3275
|
+
has_error INTEGER NOT NULL DEFAULT 0,
|
|
3276
|
+
created_at TEXT NOT NULL
|
|
3277
|
+
);
|
|
3278
|
+
|
|
3279
|
+
CREATE INDEX IF NOT EXISTS idx_session_events_agent_time
|
|
3280
|
+
ON session_events(agent_id, created_at DESC);
|
|
3281
|
+
|
|
3282
|
+
CREATE INDEX IF NOT EXISTS idx_session_events_session_index
|
|
3283
|
+
ON session_events(session_id, event_index);
|
|
3284
|
+
|
|
3285
|
+
CREATE INDEX IF NOT EXISTS idx_session_events_scope_agent_time
|
|
3286
|
+
ON session_events(session_scope, agent_id, created_at DESC);
|
|
3287
|
+
`);
|
|
3261
3288
|
await client.executeMultiple(`
|
|
3262
3289
|
CREATE TABLE IF NOT EXISTS workspaces (
|
|
3263
3290
|
id TEXT PRIMARY KEY,
|
|
@@ -8919,6 +8946,12 @@ var init_platform_procedures = __esm({
|
|
|
8919
8946
|
priority: "p0",
|
|
8920
8947
|
content: "exe-build-adv is MANDATORY for ALL work touching 3+ files. Run /exe-build-adv --auto BEFORE implementation. Pipeline: Spec \u2192 AC \u2192 Tests \u2192 Evaluate \u2192 Fix. No multi-file feature ships without pipeline artifacts. No exceptions \u2014 managers reject work without them."
|
|
8921
8948
|
},
|
|
8949
|
+
{
|
|
8950
|
+
title: "Code context first for repository orientation",
|
|
8951
|
+
domain: "workflow",
|
|
8952
|
+
priority: "p1",
|
|
8953
|
+
content: "Before broad repo exploration, symbol tracing, blast-radius review, or codebase Q&A, agents should use the consolidated code_context MCP tool instead of manual grep/read loops. Use action=index or stats to refresh/check the index; action=search with query, limit, offset, languages, paths, refresh_index for fresh multi-language code/doc search; action=trace for symbol imports/dependents; action=blast_radius for impact analysis before edits. CLI parity exists via exe-os code-context init|index|status|stats|search|doctor. Keep code_context separate from durable employee memory: promote only validated decisions, procedures, or lessons into store_memory/commit_memory."
|
|
8954
|
+
},
|
|
8922
8955
|
{
|
|
8923
8956
|
title: "Commit discipline \u2014 never leave verified work floating",
|
|
8924
8957
|
domain: "workflow",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@askexenow/exe-os",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.71",
|
|
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",
|
|
@@ -47,7 +47,8 @@
|
|
|
47
47
|
"exe-doctor": "./dist/bin/exe-doctor.js",
|
|
48
48
|
"exe-stack-update": "./dist/bin/stack-update.js",
|
|
49
49
|
"exe-cloud": "./dist/bin/exe-cloud.js",
|
|
50
|
-
"exe-os-bulk-sync-postgres": "./dist/bin/bulk-sync-postgres.js"
|
|
50
|
+
"exe-os-bulk-sync-postgres": "./dist/bin/bulk-sync-postgres.js",
|
|
51
|
+
"exe-registry-proxy": "./dist/bin/registry-proxy.js"
|
|
51
52
|
},
|
|
52
53
|
"files": [
|
|
53
54
|
"dist",
|
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.3",
|
|
8
|
+
"image": "ghcr.io/askexe/exed:v0.9.3",
|
|
9
9
|
"imageEnv": "EXED_IMAGE_TAG",
|
|
10
10
|
"stackParticipation": {
|
|
11
11
|
"required": true,
|
|
@@ -42,6 +42,8 @@
|
|
|
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.
|
|
46
|
-
|
|
45
|
+
"highGhostStack": "0.9.3",
|
|
46
|
+
"deploymentScope": "customer"
|
|
47
|
+
},
|
|
48
|
+
"deploymentScope": "customer"
|
|
47
49
|
}
|
|
@@ -3,29 +3,100 @@
|
|
|
3
3
|
"$id": "https://updates.askexe.com/schemas/stack.release.schema.json",
|
|
4
4
|
"title": "Exe OS stack release descriptor",
|
|
5
5
|
"type": "object",
|
|
6
|
-
"required": [
|
|
6
|
+
"required": [
|
|
7
|
+
"schemaVersion",
|
|
8
|
+
"repo",
|
|
9
|
+
"service",
|
|
10
|
+
"version",
|
|
11
|
+
"stackParticipation"
|
|
12
|
+
],
|
|
7
13
|
"properties": {
|
|
8
|
-
"schemaVersion": {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
"
|
|
15
|
-
|
|
14
|
+
"schemaVersion": {
|
|
15
|
+
"const": 1
|
|
16
|
+
},
|
|
17
|
+
"repo": {
|
|
18
|
+
"type": "string"
|
|
19
|
+
},
|
|
20
|
+
"service": {
|
|
21
|
+
"type": "string"
|
|
22
|
+
},
|
|
23
|
+
"packageName": {
|
|
24
|
+
"type": "string"
|
|
25
|
+
},
|
|
26
|
+
"version": {
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
"image": {
|
|
30
|
+
"type": "string"
|
|
31
|
+
},
|
|
32
|
+
"imageEnv": {
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
35
|
+
"components": {
|
|
36
|
+
"type": "object"
|
|
37
|
+
},
|
|
16
38
|
"stackParticipation": {
|
|
17
39
|
"type": "object",
|
|
18
|
-
"required": [
|
|
40
|
+
"required": [
|
|
41
|
+
"required",
|
|
42
|
+
"compatibleStack",
|
|
43
|
+
"health",
|
|
44
|
+
"smokeTests",
|
|
45
|
+
"migrations",
|
|
46
|
+
"config",
|
|
47
|
+
"breakingChanges",
|
|
48
|
+
"dataSovereignty"
|
|
49
|
+
],
|
|
19
50
|
"properties": {
|
|
20
|
-
"required": {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"
|
|
27
|
-
|
|
51
|
+
"required": {
|
|
52
|
+
"type": "boolean"
|
|
53
|
+
},
|
|
54
|
+
"compatibleStack": {
|
|
55
|
+
"type": "string"
|
|
56
|
+
},
|
|
57
|
+
"health": {
|
|
58
|
+
"type": "array",
|
|
59
|
+
"items": {
|
|
60
|
+
"type": "object"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"smokeTests": {
|
|
64
|
+
"type": "array",
|
|
65
|
+
"items": {
|
|
66
|
+
"type": "object"
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"migrations": {
|
|
70
|
+
"type": "object"
|
|
71
|
+
},
|
|
72
|
+
"config": {
|
|
73
|
+
"type": "object"
|
|
74
|
+
},
|
|
75
|
+
"breakingChanges": {
|
|
76
|
+
"type": "array",
|
|
77
|
+
"items": {
|
|
78
|
+
"type": "object"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"dataSovereignty": {
|
|
82
|
+
"type": "string"
|
|
83
|
+
},
|
|
84
|
+
"deploymentScope": {
|
|
85
|
+
"enum": [
|
|
86
|
+
"customer",
|
|
87
|
+
"askexe-control-plane",
|
|
88
|
+
"optional-agent"
|
|
89
|
+
]
|
|
90
|
+
}
|
|
28
91
|
}
|
|
92
|
+
},
|
|
93
|
+
"deploymentScope": {
|
|
94
|
+
"enum": [
|
|
95
|
+
"customer",
|
|
96
|
+
"askexe-control-plane",
|
|
97
|
+
"optional-agent"
|
|
98
|
+
],
|
|
99
|
+
"description": "Where this service may be deployed. Customer manifests must not include askexe-control-plane services."
|
|
29
100
|
}
|
|
30
101
|
}
|
|
31
102
|
}
|