@askexenow/exe-os 0.9.86 → 0.9.87
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/agentic-ontology-backfill.js +18 -0
- package/dist/bin/agentic-reflection-backfill.js +18 -0
- package/dist/bin/agentic-semantic-label.js +18 -0
- package/dist/bin/backfill-conversations.js +18 -0
- package/dist/bin/backfill-responses.js +18 -0
- package/dist/bin/backfill-vectors.js +18 -0
- package/dist/bin/bulk-sync-postgres.js +18 -0
- package/dist/bin/cleanup-stale-review-tasks.js +18 -0
- package/dist/bin/cli.js +187 -4
- package/dist/bin/exe-agent.js +18 -0
- package/dist/bin/exe-assign.js +18 -0
- package/dist/bin/exe-boot.js +18 -0
- package/dist/bin/exe-call.js +18 -0
- package/dist/bin/exe-cloud.js +18 -0
- package/dist/bin/exe-dispatch.js +18 -0
- package/dist/bin/exe-doctor.js +18 -0
- package/dist/bin/exe-export-behaviors.js +18 -0
- package/dist/bin/exe-forget.js +18 -0
- package/dist/bin/exe-gateway.js +18 -0
- package/dist/bin/exe-heartbeat.js +18 -0
- package/dist/bin/exe-kill.js +18 -0
- package/dist/bin/exe-launch-agent.js +18 -0
- package/dist/bin/exe-new-employee.js +33 -2
- package/dist/bin/exe-pending-messages.js +18 -0
- package/dist/bin/exe-pending-notifications.js +18 -0
- package/dist/bin/exe-pending-reviews.js +18 -0
- package/dist/bin/exe-rename.js +18 -0
- package/dist/bin/exe-review.js +18 -0
- package/dist/bin/exe-search.js +18 -0
- package/dist/bin/exe-session-cleanup.js +18 -0
- package/dist/bin/exe-start-codex.js +18 -0
- package/dist/bin/exe-start-opencode.js +18 -0
- package/dist/bin/exe-status.js +18 -0
- package/dist/bin/exe-team.js +18 -0
- package/dist/bin/git-sweep.js +18 -0
- package/dist/bin/graph-backfill.js +18 -0
- package/dist/bin/graph-export.js +18 -0
- package/dist/bin/install.js +9 -0
- package/dist/bin/intercom-check.js +18 -0
- package/dist/bin/scan-tasks.js +18 -0
- package/dist/bin/setup.js +24 -2
- package/dist/bin/shard-migrate.js +18 -0
- package/dist/gateway/index.js +18 -0
- package/dist/hooks/bug-report-worker.js +18 -0
- package/dist/hooks/codex-stop-task-finalizer.js +18 -0
- package/dist/hooks/commit-complete.js +18 -0
- package/dist/hooks/error-recall.js +18 -0
- package/dist/hooks/ingest.js +18 -0
- package/dist/hooks/instructions-loaded.js +18 -0
- package/dist/hooks/notification.js +18 -0
- package/dist/hooks/post-compact.js +18 -0
- package/dist/hooks/post-tool-combined.js +18 -0
- package/dist/hooks/pre-compact.js +18 -0
- package/dist/hooks/pre-tool-use.js +18 -0
- package/dist/hooks/prompt-submit.js +18 -0
- package/dist/hooks/session-end.js +18 -0
- package/dist/hooks/session-start.js +18 -0
- package/dist/hooks/stop.js +18 -0
- package/dist/hooks/subagent-stop.js +18 -0
- package/dist/hooks/summary-worker.js +18 -0
- package/dist/index.js +18 -0
- package/dist/lib/employee-templates.js +18 -0
- package/dist/lib/exe-daemon.js +712 -169
- package/dist/lib/hybrid-search.js +18 -0
- package/dist/lib/identity-templates.js +6 -2
- package/dist/lib/schedules.js +18 -0
- package/dist/lib/store.js +18 -0
- package/dist/mcp/server.js +670 -143
- package/dist/mcp/tools/create-task.js +6 -2
- package/dist/runtime/index.js +18 -0
- package/dist/tui/App.js +18 -0
- package/package.json +1 -1
|
@@ -5143,12 +5143,14 @@ On EVERY new conversation, before doing anything else:
|
|
|
5143
5143
|
1. **Memory scan**: Run recall_my_memory with broad queries \u2014 "project", "client", "pipeline", "campaign", "deal", "decision", "blocker". Summarize what you find.
|
|
5144
5144
|
2. **Task scan**: Run list_tasks to see what's open, in progress, blocked, or needs review across all employees.
|
|
5145
5145
|
3. **Team check**: Run ask_team_memory for recent activity from CTO/CMO/engineers.
|
|
5146
|
-
4. **
|
|
5146
|
+
4. **Bug fix check** (one-time, never repeat): Call list_my_bug_reports to see if AskExe has fixed any previously filed bugs. If any have status "fixed" with a fixed_version, tell the founder: "\u{1F527} N bug fix(es) available \u2014 run \`exe-os update\` to get version X.Y.Z." Skip silently if none or if the call fails.
|
|
5147
|
+
5. **Present the brief**: Give the founder a concise status report:
|
|
5147
5148
|
- What's active and progressing
|
|
5148
5149
|
- What's blocked and needs attention
|
|
5149
5150
|
- What decisions are pending
|
|
5151
|
+
- Available bug fixes (from step 4, if any)
|
|
5150
5152
|
- What you recommend doing next
|
|
5151
|
-
|
|
5153
|
+
6. Then ask: "What's the priority?"
|
|
5152
5154
|
|
|
5153
5155
|
If this is your FIRST ever conversation (few or no prior memories):
|
|
5154
5156
|
- Search more broadly: "product", "SEO", "meeting", "strategy", "revenue"
|
|
@@ -5168,6 +5170,8 @@ Never say "I have no memories" without first searching broadly. Your memory may
|
|
|
5168
5170
|
- **get_identity** \u2014 read any agent's identity for coordination
|
|
5169
5171
|
- **set_agent_config** \u2014 view or change which tool (Claude Code, Codex, OpenCode) and model each agent uses. Call with no args to show all agents' current settings. Call with agent_id + runtime + model to change.
|
|
5170
5172
|
- **send_message** \u2014 direct intercom to employees
|
|
5173
|
+
- **create_bug_report** \u2014 file a bug when you encounter an Exe OS platform issue
|
|
5174
|
+
- **list_my_bug_reports** \u2014 check status of filed bugs (boot check: surface available fixes to founder)
|
|
5171
5175
|
${PLAN_MODE_COMPAT}
|
|
5172
5176
|
## Completion Workflow
|
|
5173
5177
|
|
package/dist/runtime/index.js
CHANGED
|
@@ -7977,6 +7977,24 @@ var init_platform_procedures = __esm({
|
|
|
7977
7977
|
priority: "p0",
|
|
7978
7978
|
content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. If upstream delivery fails, call support_test (MCP) and include its result in the local report so AskExe can distinguish customer setup, license provisioning, and server intake issues; only ask the founder to run `exe-os support test` if MCP is disconnected/unavailable. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
|
|
7979
7979
|
},
|
|
7980
|
+
{
|
|
7981
|
+
title: "Bug report status check \u2014 surface available fixes on boot",
|
|
7982
|
+
domain: "support",
|
|
7983
|
+
priority: "p1",
|
|
7984
|
+
content: "Once per session (COO boot only, never repeat), call list_my_bug_reports to check if any previously filed bug reports have been fixed by AskExe. If any report has status 'fixed' with a fixed_version, surface it to the founder immediately: '\u{1F527} N bug fix(es) available \u2014 run exe-os update to get version X.Y.Z'. This is a one-time check at boot, not a recurring poll. If no reports exist or none are fixed, skip silently. If the MCP tool is unavailable or the network call fails, skip silently \u2014 this is informational, not blocking."
|
|
7985
|
+
},
|
|
7986
|
+
{
|
|
7987
|
+
title: "Feature request triage \u2014 upstream feature vs local customization",
|
|
7988
|
+
domain: "support",
|
|
7989
|
+
priority: "p0",
|
|
7990
|
+
content: "When an agent or founder identifies a desired capability that exe-os does not yet provide, the COO (or equivalent coordinator) must decide: is this a local customization (identity, behavior, procedure, config, branding, workflow preference that can be configured in customer-owned layers) or an upstream feature request (a platform capability that requires changes to exe-os code, shipped via npm update)? Local customizations: implement immediately using store_behavior, update_identity, company_procedure, or config changes. Upstream features: use create_feature_request to submit to AskExe. Include use case, business impact, and current workaround. Do NOT ask the founder for permission to file a feature request \u2014 file it proactively when the need is clear."
|
|
7991
|
+
},
|
|
7992
|
+
{
|
|
7993
|
+
title: "Feature request status check \u2014 surface shipped features on boot",
|
|
7994
|
+
domain: "support",
|
|
7995
|
+
priority: "p1",
|
|
7996
|
+
content: "Once per session (COO boot only, never repeat), call list_my_feature_requests to check if any previously filed feature requests have been shipped by AskExe. If any request has status 'shipped' with a shipped_version, surface it to the founder immediately: '\u{1F680} N feature(s) shipped \u2014 run exe-os update to get version X.Y.Z'. This is a one-time check at boot, not a recurring poll. If no requests exist or none are shipped, skip silently. If the MCP tool is unavailable or the network call fails, skip silently \u2014 this is informational, not blocking."
|
|
7997
|
+
},
|
|
7980
7998
|
// --- Operations ---
|
|
7981
7999
|
{
|
|
7982
8000
|
title: "Managers must supervise deployed workers",
|
package/dist/tui/App.js
CHANGED
|
@@ -8949,6 +8949,24 @@ var init_platform_procedures = __esm({
|
|
|
8949
8949
|
priority: "p0",
|
|
8950
8950
|
content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. If upstream delivery fails, call support_test (MCP) and include its result in the local report so AskExe can distinguish customer setup, license provisioning, and server intake issues; only ask the founder to run `exe-os support test` if MCP is disconnected/unavailable. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
|
|
8951
8951
|
},
|
|
8952
|
+
{
|
|
8953
|
+
title: "Bug report status check \u2014 surface available fixes on boot",
|
|
8954
|
+
domain: "support",
|
|
8955
|
+
priority: "p1",
|
|
8956
|
+
content: "Once per session (COO boot only, never repeat), call list_my_bug_reports to check if any previously filed bug reports have been fixed by AskExe. If any report has status 'fixed' with a fixed_version, surface it to the founder immediately: '\u{1F527} N bug fix(es) available \u2014 run exe-os update to get version X.Y.Z'. This is a one-time check at boot, not a recurring poll. If no reports exist or none are fixed, skip silently. If the MCP tool is unavailable or the network call fails, skip silently \u2014 this is informational, not blocking."
|
|
8957
|
+
},
|
|
8958
|
+
{
|
|
8959
|
+
title: "Feature request triage \u2014 upstream feature vs local customization",
|
|
8960
|
+
domain: "support",
|
|
8961
|
+
priority: "p0",
|
|
8962
|
+
content: "When an agent or founder identifies a desired capability that exe-os does not yet provide, the COO (or equivalent coordinator) must decide: is this a local customization (identity, behavior, procedure, config, branding, workflow preference that can be configured in customer-owned layers) or an upstream feature request (a platform capability that requires changes to exe-os code, shipped via npm update)? Local customizations: implement immediately using store_behavior, update_identity, company_procedure, or config changes. Upstream features: use create_feature_request to submit to AskExe. Include use case, business impact, and current workaround. Do NOT ask the founder for permission to file a feature request \u2014 file it proactively when the need is clear."
|
|
8963
|
+
},
|
|
8964
|
+
{
|
|
8965
|
+
title: "Feature request status check \u2014 surface shipped features on boot",
|
|
8966
|
+
domain: "support",
|
|
8967
|
+
priority: "p1",
|
|
8968
|
+
content: "Once per session (COO boot only, never repeat), call list_my_feature_requests to check if any previously filed feature requests have been shipped by AskExe. If any request has status 'shipped' with a shipped_version, surface it to the founder immediately: '\u{1F680} N feature(s) shipped \u2014 run exe-os update to get version X.Y.Z'. This is a one-time check at boot, not a recurring poll. If no requests exist or none are shipped, skip silently. If the MCP tool is unavailable or the network call fails, skip silently \u2014 this is informational, not blocking."
|
|
8969
|
+
},
|
|
8952
8970
|
// --- Operations ---
|
|
8953
8971
|
{
|
|
8954
8972
|
title: "Managers must supervise deployed workers",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@askexenow/exe-os",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.87",
|
|
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",
|