@askexenow/exe-os 0.9.68 → 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.
- package/deploy/stack-manifests/v0.9.json +96 -16
- package/dist/bin/agentic-ontology-backfill.js +6 -0
- package/dist/bin/agentic-reflection-backfill.js +6 -0
- package/dist/bin/agentic-semantic-label.js +6 -0
- package/dist/bin/backfill-conversations.js +6 -0
- package/dist/bin/backfill-responses.js +6 -0
- package/dist/bin/backfill-vectors.js +6 -0
- package/dist/bin/bulk-sync-postgres.js +6 -0
- package/dist/bin/cc-doctor.js +293 -30
- package/dist/bin/cleanup-stale-review-tasks.js +6 -0
- package/dist/bin/cli.js +1257 -178
- package/dist/bin/exe-agent.js +6 -0
- package/dist/bin/exe-assign.js +6 -0
- package/dist/bin/exe-boot.js +6 -0
- package/dist/bin/exe-call.js +6 -0
- package/dist/bin/exe-cloud.js +6 -0
- package/dist/bin/exe-dispatch.js +6 -0
- package/dist/bin/exe-doctor.js +6 -0
- package/dist/bin/exe-export-behaviors.js +6 -0
- package/dist/bin/exe-forget.js +6 -0
- package/dist/bin/exe-gateway.js +151 -110
- package/dist/bin/exe-healthcheck.js +293 -30
- package/dist/bin/exe-heartbeat.js +6 -0
- package/dist/bin/exe-kill.js +6 -0
- package/dist/bin/exe-launch-agent.js +6 -0
- package/dist/bin/exe-new-employee.js +6 -0
- package/dist/bin/exe-pending-messages.js +6 -0
- package/dist/bin/exe-pending-notifications.js +6 -0
- package/dist/bin/exe-pending-reviews.js +6 -0
- package/dist/bin/exe-rename.js +13 -4
- package/dist/bin/exe-review.js +6 -0
- package/dist/bin/exe-search.js +6 -0
- package/dist/bin/exe-session-cleanup.js +6 -0
- package/dist/bin/exe-start-codex.js +6 -0
- package/dist/bin/exe-start-opencode.js +6 -0
- package/dist/bin/exe-status.js +6 -0
- package/dist/bin/exe-team.js +6 -0
- package/dist/bin/git-sweep.js +6 -0
- package/dist/bin/graph-backfill.js +150 -110
- package/dist/bin/graph-export.js +6 -0
- package/dist/bin/intercom-check.js +6 -0
- package/dist/bin/registry-proxy.js +207 -0
- package/dist/bin/scan-tasks.js +6 -0
- package/dist/bin/setup.js +6 -0
- package/dist/bin/shard-migrate.js +6 -0
- package/dist/bin/stack-update.js +128 -0
- package/dist/gateway/index.js +151 -110
- package/dist/hooks/bug-report-worker.js +6 -0
- package/dist/hooks/codex-stop-task-finalizer.js +6 -0
- package/dist/hooks/commit-complete.js +6 -0
- package/dist/hooks/error-recall.js +6 -0
- package/dist/hooks/ingest.js +6 -0
- package/dist/hooks/instructions-loaded.js +6 -0
- package/dist/hooks/notification.js +6 -0
- package/dist/hooks/post-compact.js +6 -0
- package/dist/hooks/post-tool-combined.js +6 -0
- package/dist/hooks/pre-compact.js +6 -0
- package/dist/hooks/pre-tool-use.js +6 -0
- package/dist/hooks/prompt-submit.js +6 -0
- package/dist/hooks/session-end.js +6 -0
- package/dist/hooks/session-start.js +6 -0
- package/dist/hooks/stop.js +6 -0
- package/dist/hooks/subagent-stop.js +6 -0
- package/dist/hooks/summary-worker.js +6 -0
- package/dist/index.js +151 -110
- package/dist/lib/employee-templates.js +6 -0
- package/dist/lib/exe-daemon.js +1556 -1085
- package/dist/lib/hybrid-search.js +6 -0
- package/dist/lib/registry-proxy.js +162 -0
- package/dist/lib/schedules.js +6 -0
- package/dist/lib/store.js +6 -0
- package/dist/mcp/server.js +1040 -746
- package/dist/runtime/index.js +6 -0
- package/dist/tui/App.js +6 -0
- package/package.json +3 -2
- package/stack.release.json +6 -4
- package/stack.release.schema.json +89 -18
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"latest": "0.9.
|
|
3
|
+
"latest": "0.9.3",
|
|
4
4
|
"stacks": {
|
|
5
5
|
"0.9.0": {
|
|
6
6
|
"version": "0.9.0",
|
|
@@ -20,26 +20,31 @@
|
|
|
20
20
|
"crm": {
|
|
21
21
|
"env": "CRM_IMAGE_TAG",
|
|
22
22
|
"image": "ghcr.io/askexe/exe-crm:v0.9.0",
|
|
23
|
-
"healthUrl": "http://127.0.0.1:3000/healthz"
|
|
23
|
+
"healthUrl": "http://127.0.0.1:3000/healthz",
|
|
24
|
+
"deploymentScope": "customer"
|
|
24
25
|
},
|
|
25
26
|
"wiki": {
|
|
26
27
|
"env": "WIKI_IMAGE_TAG",
|
|
27
28
|
"image": "ghcr.io/askexe/exe-wiki:v0.9.0",
|
|
28
|
-
"healthUrl": "http://127.0.0.1:3001/api/ping"
|
|
29
|
+
"healthUrl": "http://127.0.0.1:3001/api/ping",
|
|
30
|
+
"deploymentScope": "customer"
|
|
29
31
|
},
|
|
30
32
|
"exed": {
|
|
31
33
|
"env": "EXED_IMAGE_TAG",
|
|
32
34
|
"image": "ghcr.io/askexe/exed:v0.9.66",
|
|
33
|
-
"healthUrl": "http://127.0.0.1:8765/health"
|
|
35
|
+
"healthUrl": "http://127.0.0.1:8765/health",
|
|
36
|
+
"deploymentScope": "customer"
|
|
34
37
|
},
|
|
35
38
|
"gateway": {
|
|
36
39
|
"env": "GATEWAY_IMAGE_TAG",
|
|
37
40
|
"image": "ghcr.io/askexe/exe-gateway:v0.9.0",
|
|
38
|
-
"healthUrl": "http://127.0.0.1:3100/health"
|
|
41
|
+
"healthUrl": "http://127.0.0.1:3100/health",
|
|
42
|
+
"deploymentScope": "customer"
|
|
39
43
|
},
|
|
40
44
|
"monitorAgent": {
|
|
41
45
|
"env": "MONITOR_AGENT_IMAGE_TAG",
|
|
42
|
-
"image": "ghcr.io/askexe/exe-monitor-agent:v0.9.0"
|
|
46
|
+
"image": "ghcr.io/askexe/exe-monitor-agent:v0.9.0",
|
|
47
|
+
"deploymentScope": "customer"
|
|
43
48
|
}
|
|
44
49
|
},
|
|
45
50
|
"releaseDescriptors": {
|
|
@@ -69,26 +74,31 @@
|
|
|
69
74
|
"crm": {
|
|
70
75
|
"env": "CRM_IMAGE_TAG",
|
|
71
76
|
"image": "ghcr.io/askexe/exe-crm:v0.9.1",
|
|
72
|
-
"healthUrl": "http://127.0.0.1:3000/healthz"
|
|
77
|
+
"healthUrl": "http://127.0.0.1:3000/healthz",
|
|
78
|
+
"deploymentScope": "customer"
|
|
73
79
|
},
|
|
74
80
|
"wiki": {
|
|
75
81
|
"env": "WIKI_IMAGE_TAG",
|
|
76
82
|
"image": "ghcr.io/askexe/exe-wiki:v0.9.1",
|
|
77
|
-
"healthUrl": "http://127.0.0.1:3001/api/ping"
|
|
83
|
+
"healthUrl": "http://127.0.0.1:3001/api/ping",
|
|
84
|
+
"deploymentScope": "customer"
|
|
78
85
|
},
|
|
79
86
|
"exed": {
|
|
80
87
|
"env": "EXED_IMAGE_TAG",
|
|
81
88
|
"image": "ghcr.io/askexe/exed:v0.9.66",
|
|
82
|
-
"healthUrl": "http://127.0.0.1:8765/health"
|
|
89
|
+
"healthUrl": "http://127.0.0.1:8765/health",
|
|
90
|
+
"deploymentScope": "customer"
|
|
83
91
|
},
|
|
84
92
|
"gateway": {
|
|
85
93
|
"env": "GATEWAY_IMAGE_TAG",
|
|
86
94
|
"image": "ghcr.io/askexe/exe-gateway:v0.9.1",
|
|
87
|
-
"healthUrl": "http://127.0.0.1:3100/health"
|
|
95
|
+
"healthUrl": "http://127.0.0.1:3100/health",
|
|
96
|
+
"deploymentScope": "customer"
|
|
88
97
|
},
|
|
89
98
|
"monitorAgent": {
|
|
90
99
|
"env": "MONITOR_AGENT_IMAGE_TAG",
|
|
91
|
-
"image": "ghcr.io/askexe/exe-monitor-agent:v0.9.1"
|
|
100
|
+
"image": "ghcr.io/askexe/exe-monitor-agent:v0.9.1",
|
|
101
|
+
"deploymentScope": "customer"
|
|
92
102
|
}
|
|
93
103
|
},
|
|
94
104
|
"releaseDescriptors": {
|
|
@@ -118,26 +128,31 @@
|
|
|
118
128
|
"crm": {
|
|
119
129
|
"env": "CRM_IMAGE_TAG",
|
|
120
130
|
"image": "ghcr.io/askexe/exe-crm:v0.9.2",
|
|
121
|
-
"healthUrl": "http://127.0.0.1:3000/healthz"
|
|
131
|
+
"healthUrl": "http://127.0.0.1:3000/healthz",
|
|
132
|
+
"deploymentScope": "customer"
|
|
122
133
|
},
|
|
123
134
|
"wiki": {
|
|
124
135
|
"env": "WIKI_IMAGE_TAG",
|
|
125
136
|
"image": "ghcr.io/askexe/exe-wiki:v0.9.2",
|
|
126
|
-
"healthUrl": "http://127.0.0.1:3001/api/ping"
|
|
137
|
+
"healthUrl": "http://127.0.0.1:3001/api/ping",
|
|
138
|
+
"deploymentScope": "customer"
|
|
127
139
|
},
|
|
128
140
|
"exed": {
|
|
129
141
|
"env": "EXED_IMAGE_TAG",
|
|
130
142
|
"image": "ghcr.io/askexe/exed:v0.9.2",
|
|
131
|
-
"healthUrl": "http://127.0.0.1:8765/health"
|
|
143
|
+
"healthUrl": "http://127.0.0.1:8765/health",
|
|
144
|
+
"deploymentScope": "customer"
|
|
132
145
|
},
|
|
133
146
|
"gateway": {
|
|
134
147
|
"env": "GATEWAY_IMAGE_TAG",
|
|
135
148
|
"image": "ghcr.io/askexe/exe-gateway:v0.9.2",
|
|
136
|
-
"healthUrl": "http://127.0.0.1:3100/health"
|
|
149
|
+
"healthUrl": "http://127.0.0.1:3100/health",
|
|
150
|
+
"deploymentScope": "customer"
|
|
137
151
|
},
|
|
138
152
|
"monitorAgent": {
|
|
139
153
|
"env": "MONITOR_AGENT_IMAGE_TAG",
|
|
140
|
-
"image": "ghcr.io/askexe/exe-monitor-agent:v0.9.2"
|
|
154
|
+
"image": "ghcr.io/askexe/exe-monitor-agent:v0.9.2",
|
|
155
|
+
"deploymentScope": "customer"
|
|
141
156
|
}
|
|
142
157
|
},
|
|
143
158
|
"releaseDescriptors": {
|
|
@@ -148,6 +163,71 @@
|
|
|
148
163
|
"db": "AskExe/exe-db@0.9.2:stack.release.json",
|
|
149
164
|
"monitorAgent": "AskExe/exe-monitor@0.9.2:stack.release.json"
|
|
150
165
|
}
|
|
166
|
+
},
|
|
167
|
+
"0.9.3": {
|
|
168
|
+
"version": "0.9.3",
|
|
169
|
+
"releasedAt": "2026-05-12T00:00:00Z",
|
|
170
|
+
"notes": "Hygo fresh customer stack release. Rebuilds all Hygo deployable images from latest approved repo heads after deployment-boundary/doc hardening and exe-monitor live monitoring updates.",
|
|
171
|
+
"breakingChanges": [
|
|
172
|
+
{
|
|
173
|
+
"id": "whatsapp_relink_required",
|
|
174
|
+
"title": "WhatsApp QR re-link required for Baileys v7",
|
|
175
|
+
"description": "exe-gateway uses Baileys v7. Existing WhatsApp 6.x linked-device auth state must be backed up and re-linked once with a new QR code.",
|
|
176
|
+
"requiredAction": "Open https://<gateway-domain>/pair/default?token=<admin-token> and scan from WhatsApp \u2192 Linked Devices after the update.",
|
|
177
|
+
"expectedDowntimeMinutes": "2-5",
|
|
178
|
+
"requiresConfirmation": true
|
|
179
|
+
}
|
|
180
|
+
],
|
|
181
|
+
"services": {
|
|
182
|
+
"crm": {
|
|
183
|
+
"env": "CRM_IMAGE_TAG",
|
|
184
|
+
"image": "registry.askexe.com/askexe/exe-crm:v0.9.3",
|
|
185
|
+
"healthUrl": "http://127.0.0.1:3000/healthz",
|
|
186
|
+
"deploymentScope": "customer"
|
|
187
|
+
},
|
|
188
|
+
"wiki": {
|
|
189
|
+
"env": "WIKI_IMAGE_TAG",
|
|
190
|
+
"image": "registry.askexe.com/askexe/exe-wiki:v0.9.3",
|
|
191
|
+
"healthUrl": "http://127.0.0.1:3001/api/ping",
|
|
192
|
+
"deploymentScope": "customer"
|
|
193
|
+
},
|
|
194
|
+
"exed": {
|
|
195
|
+
"env": "EXED_IMAGE_TAG",
|
|
196
|
+
"image": "registry.askexe.com/askexe/exed:v0.9.3",
|
|
197
|
+
"healthUrl": "http://127.0.0.1:8765/health",
|
|
198
|
+
"deploymentScope": "customer"
|
|
199
|
+
},
|
|
200
|
+
"gateway": {
|
|
201
|
+
"env": "GATEWAY_IMAGE_TAG",
|
|
202
|
+
"image": "registry.askexe.com/askexe/exe-gateway:v0.9.3",
|
|
203
|
+
"healthUrl": "http://127.0.0.1:3100/health",
|
|
204
|
+
"deploymentScope": "customer"
|
|
205
|
+
},
|
|
206
|
+
"monitorAgent": {
|
|
207
|
+
"env": "MONITOR_AGENT_IMAGE_TAG",
|
|
208
|
+
"image": "registry.askexe.com/askexe/exe-monitor-agent:v0.9.3",
|
|
209
|
+
"deploymentScope": "customer"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"releaseDescriptors": {
|
|
213
|
+
"exed": "AskExe/exe-os@0.9.3:stack.release.json",
|
|
214
|
+
"crm": "AskExe/exe-crm@0.9.3:stack.release.json",
|
|
215
|
+
"wiki": "AskExe/exe-wiki@0.9.3:stack.release.json",
|
|
216
|
+
"gateway": "AskExe/exe-gateway@0.9.3:stack.release.json",
|
|
217
|
+
"db": "AskExe/exe-db@0.9.3:stack.release.json",
|
|
218
|
+
"monitorAgent": "AskExe/exe-monitor@0.9.3:stack.release.json"
|
|
219
|
+
},
|
|
220
|
+
"componentVersions": {
|
|
221
|
+
"exe-os": {
|
|
222
|
+
"repo": "AskExe/exe-os",
|
|
223
|
+
"npmPackage": "@askexenow/exe-os",
|
|
224
|
+
"npmVersion": "0.9.69",
|
|
225
|
+
"image": "registry.askexe.com/askexe/exed:v0.9.3",
|
|
226
|
+
"imageVersion": "0.9.3",
|
|
227
|
+
"note": "npm package version and customer stack image tag are separate version tracks; Hygo pulls the exed image through registry.askexe.com, which proxies the GHCR artifact server-side.",
|
|
228
|
+
"sourceRef": "v0.9.3"
|
|
229
|
+
}
|
|
230
|
+
}
|
|
151
231
|
}
|
|
152
232
|
}
|
|
153
233
|
}
|
|
@@ -3353,6 +3353,12 @@ var init_platform_procedures = __esm({
|
|
|
3353
3353
|
priority: "p0",
|
|
3354
3354
|
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."
|
|
3355
3355
|
},
|
|
3356
|
+
{
|
|
3357
|
+
title: "Code context first for repository orientation",
|
|
3358
|
+
domain: "workflow",
|
|
3359
|
+
priority: "p1",
|
|
3360
|
+
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."
|
|
3361
|
+
},
|
|
3356
3362
|
{
|
|
3357
3363
|
title: "Commit discipline \u2014 never leave verified work floating",
|
|
3358
3364
|
domain: "workflow",
|
|
@@ -3353,6 +3353,12 @@ var init_platform_procedures = __esm({
|
|
|
3353
3353
|
priority: "p0",
|
|
3354
3354
|
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."
|
|
3355
3355
|
},
|
|
3356
|
+
{
|
|
3357
|
+
title: "Code context first for repository orientation",
|
|
3358
|
+
domain: "workflow",
|
|
3359
|
+
priority: "p1",
|
|
3360
|
+
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."
|
|
3361
|
+
},
|
|
3356
3362
|
{
|
|
3357
3363
|
title: "Commit discipline \u2014 never leave verified work floating",
|
|
3358
3364
|
domain: "workflow",
|
|
@@ -3353,6 +3353,12 @@ var init_platform_procedures = __esm({
|
|
|
3353
3353
|
priority: "p0",
|
|
3354
3354
|
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."
|
|
3355
3355
|
},
|
|
3356
|
+
{
|
|
3357
|
+
title: "Code context first for repository orientation",
|
|
3358
|
+
domain: "workflow",
|
|
3359
|
+
priority: "p1",
|
|
3360
|
+
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."
|
|
3361
|
+
},
|
|
3356
3362
|
{
|
|
3357
3363
|
title: "Commit discipline \u2014 never leave verified work floating",
|
|
3358
3364
|
domain: "workflow",
|
|
@@ -3493,6 +3493,12 @@ var init_platform_procedures = __esm({
|
|
|
3493
3493
|
priority: "p0",
|
|
3494
3494
|
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."
|
|
3495
3495
|
},
|
|
3496
|
+
{
|
|
3497
|
+
title: "Code context first for repository orientation",
|
|
3498
|
+
domain: "workflow",
|
|
3499
|
+
priority: "p1",
|
|
3500
|
+
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."
|
|
3501
|
+
},
|
|
3496
3502
|
{
|
|
3497
3503
|
title: "Commit discipline \u2014 never leave verified work floating",
|
|
3498
3504
|
domain: "workflow",
|
|
@@ -3493,6 +3493,12 @@ var init_platform_procedures = __esm({
|
|
|
3493
3493
|
priority: "p0",
|
|
3494
3494
|
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."
|
|
3495
3495
|
},
|
|
3496
|
+
{
|
|
3497
|
+
title: "Code context first for repository orientation",
|
|
3498
|
+
domain: "workflow",
|
|
3499
|
+
priority: "p1",
|
|
3500
|
+
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."
|
|
3501
|
+
},
|
|
3496
3502
|
{
|
|
3497
3503
|
title: "Commit discipline \u2014 never leave verified work floating",
|
|
3498
3504
|
domain: "workflow",
|
|
@@ -3489,6 +3489,12 @@ var init_platform_procedures = __esm({
|
|
|
3489
3489
|
priority: "p0",
|
|
3490
3490
|
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."
|
|
3491
3491
|
},
|
|
3492
|
+
{
|
|
3493
|
+
title: "Code context first for repository orientation",
|
|
3494
|
+
domain: "workflow",
|
|
3495
|
+
priority: "p1",
|
|
3496
|
+
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."
|
|
3497
|
+
},
|
|
3492
3498
|
{
|
|
3493
3499
|
title: "Commit discipline \u2014 never leave verified work floating",
|
|
3494
3500
|
domain: "workflow",
|
|
@@ -3661,6 +3661,12 @@ var init_platform_procedures = __esm({
|
|
|
3661
3661
|
priority: "p0",
|
|
3662
3662
|
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."
|
|
3663
3663
|
},
|
|
3664
|
+
{
|
|
3665
|
+
title: "Code context first for repository orientation",
|
|
3666
|
+
domain: "workflow",
|
|
3667
|
+
priority: "p1",
|
|
3668
|
+
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."
|
|
3669
|
+
},
|
|
3664
3670
|
{
|
|
3665
3671
|
title: "Commit discipline \u2014 never leave verified work floating",
|
|
3666
3672
|
domain: "workflow",
|