@askexenow/exe-os 0.9.69 → 0.9.70

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.
Files changed (75) hide show
  1. package/deploy/stack-manifests/v0.9.json +96 -16
  2. package/dist/bin/agentic-ontology-backfill.js +6 -0
  3. package/dist/bin/agentic-reflection-backfill.js +6 -0
  4. package/dist/bin/agentic-semantic-label.js +6 -0
  5. package/dist/bin/backfill-conversations.js +6 -0
  6. package/dist/bin/backfill-responses.js +6 -0
  7. package/dist/bin/backfill-vectors.js +6 -0
  8. package/dist/bin/bulk-sync-postgres.js +6 -0
  9. package/dist/bin/cleanup-stale-review-tasks.js +6 -0
  10. package/dist/bin/cli.js +1257 -178
  11. package/dist/bin/exe-agent.js +6 -0
  12. package/dist/bin/exe-assign.js +6 -0
  13. package/dist/bin/exe-boot.js +6 -0
  14. package/dist/bin/exe-call.js +6 -0
  15. package/dist/bin/exe-cloud.js +6 -0
  16. package/dist/bin/exe-dispatch.js +6 -0
  17. package/dist/bin/exe-doctor.js +6 -0
  18. package/dist/bin/exe-export-behaviors.js +6 -0
  19. package/dist/bin/exe-forget.js +6 -0
  20. package/dist/bin/exe-gateway.js +151 -110
  21. package/dist/bin/exe-heartbeat.js +6 -0
  22. package/dist/bin/exe-kill.js +6 -0
  23. package/dist/bin/exe-launch-agent.js +6 -0
  24. package/dist/bin/exe-new-employee.js +6 -0
  25. package/dist/bin/exe-pending-messages.js +6 -0
  26. package/dist/bin/exe-pending-notifications.js +6 -0
  27. package/dist/bin/exe-pending-reviews.js +6 -0
  28. package/dist/bin/exe-rename.js +13 -4
  29. package/dist/bin/exe-review.js +6 -0
  30. package/dist/bin/exe-search.js +6 -0
  31. package/dist/bin/exe-session-cleanup.js +6 -0
  32. package/dist/bin/exe-start-codex.js +6 -0
  33. package/dist/bin/exe-start-opencode.js +6 -0
  34. package/dist/bin/exe-status.js +6 -0
  35. package/dist/bin/exe-team.js +6 -0
  36. package/dist/bin/git-sweep.js +6 -0
  37. package/dist/bin/graph-backfill.js +150 -110
  38. package/dist/bin/graph-export.js +6 -0
  39. package/dist/bin/intercom-check.js +6 -0
  40. package/dist/bin/registry-proxy.js +207 -0
  41. package/dist/bin/scan-tasks.js +6 -0
  42. package/dist/bin/setup.js +6 -0
  43. package/dist/bin/shard-migrate.js +6 -0
  44. package/dist/bin/stack-update.js +128 -0
  45. package/dist/gateway/index.js +151 -110
  46. package/dist/hooks/bug-report-worker.js +6 -0
  47. package/dist/hooks/codex-stop-task-finalizer.js +6 -0
  48. package/dist/hooks/commit-complete.js +6 -0
  49. package/dist/hooks/error-recall.js +6 -0
  50. package/dist/hooks/ingest.js +6 -0
  51. package/dist/hooks/instructions-loaded.js +6 -0
  52. package/dist/hooks/notification.js +6 -0
  53. package/dist/hooks/post-compact.js +6 -0
  54. package/dist/hooks/post-tool-combined.js +6 -0
  55. package/dist/hooks/pre-compact.js +6 -0
  56. package/dist/hooks/pre-tool-use.js +6 -0
  57. package/dist/hooks/prompt-submit.js +6 -0
  58. package/dist/hooks/session-end.js +6 -0
  59. package/dist/hooks/session-start.js +6 -0
  60. package/dist/hooks/stop.js +6 -0
  61. package/dist/hooks/subagent-stop.js +6 -0
  62. package/dist/hooks/summary-worker.js +6 -0
  63. package/dist/index.js +151 -110
  64. package/dist/lib/employee-templates.js +6 -0
  65. package/dist/lib/exe-daemon.js +382 -234
  66. package/dist/lib/hybrid-search.js +6 -0
  67. package/dist/lib/registry-proxy.js +162 -0
  68. package/dist/lib/schedules.js +6 -0
  69. package/dist/lib/store.js +6 -0
  70. package/dist/mcp/server.js +318 -222
  71. package/dist/runtime/index.js +6 -0
  72. package/dist/tui/App.js +6 -0
  73. package/package.json +3 -2
  74. package/stack.release.json +6 -4
  75. package/stack.release.schema.json +89 -18
@@ -7948,6 +7948,12 @@ var init_platform_procedures = __esm({
7948
7948
  priority: "p0",
7949
7949
  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
7950
  },
7951
+ {
7952
+ title: "Code context first for repository orientation",
7953
+ domain: "workflow",
7954
+ priority: "p1",
7955
+ 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."
7956
+ },
7951
7957
  {
7952
7958
  title: "Commit discipline \u2014 never leave verified work floating",
7953
7959
  domain: "workflow",
package/dist/tui/App.js CHANGED
@@ -8919,6 +8919,12 @@ var init_platform_procedures = __esm({
8919
8919
  priority: "p0",
8920
8920
  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
8921
  },
8922
+ {
8923
+ title: "Code context first for repository orientation",
8924
+ domain: "workflow",
8925
+ priority: "p1",
8926
+ 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."
8927
+ },
8922
8928
  {
8923
8929
  title: "Commit discipline \u2014 never leave verified work floating",
8924
8930
  domain: "workflow",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@askexenow/exe-os",
3
- "version": "0.9.69",
3
+ "version": "0.9.70",
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",
@@ -4,8 +4,8 @@
4
4
  "repo": "AskExe/exe-os",
5
5
  "service": "exed",
6
6
  "packageName": "@askexenow/exe-os",
7
- "version": "0.9.2",
8
- "image": "ghcr.io/askexe/exed:v0.9.2",
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.2"
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": ["schemaVersion", "repo", "service", "version", "stackParticipation"],
6
+ "required": [
7
+ "schemaVersion",
8
+ "repo",
9
+ "service",
10
+ "version",
11
+ "stackParticipation"
12
+ ],
7
13
  "properties": {
8
- "schemaVersion": { "const": 1 },
9
- "repo": { "type": "string" },
10
- "service": { "type": "string" },
11
- "packageName": { "type": "string" },
12
- "version": { "type": "string" },
13
- "image": { "type": "string" },
14
- "imageEnv": { "type": "string" },
15
- "components": { "type": "object" },
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": ["required", "compatibleStack", "health", "smokeTests", "migrations", "config", "breakingChanges", "dataSovereignty"],
40
+ "required": [
41
+ "required",
42
+ "compatibleStack",
43
+ "health",
44
+ "smokeTests",
45
+ "migrations",
46
+ "config",
47
+ "breakingChanges",
48
+ "dataSovereignty"
49
+ ],
19
50
  "properties": {
20
- "required": { "type": "boolean" },
21
- "compatibleStack": { "type": "string" },
22
- "health": { "type": "array", "items": { "type": "object" } },
23
- "smokeTests": { "type": "array", "items": { "type": "object" } },
24
- "migrations": { "type": "object" },
25
- "config": { "type": "object" },
26
- "breakingChanges": { "type": "array", "items": { "type": "object" } },
27
- "dataSovereignty": { "type": "string" }
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
  }