@askexenow/exe-os 0.9.94 → 0.9.96
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 +3 -3
- package/dist/bin/agentic-reflection-backfill.js +3 -3
- package/dist/bin/agentic-semantic-label.js +3 -3
- package/dist/bin/backfill-conversations.js +3 -3
- package/dist/bin/backfill-responses.js +3 -3
- package/dist/bin/backfill-vectors.js +3 -3
- package/dist/bin/bulk-sync-postgres.js +3 -3
- package/dist/bin/cleanup-stale-review-tasks.js +6 -3
- package/dist/bin/cli.js +6 -3
- package/dist/bin/customer-readiness.js +17 -7
- package/dist/bin/exe-agent.js +3 -3
- package/dist/bin/exe-assign.js +3 -3
- package/dist/bin/exe-boot.js +6 -3
- package/dist/bin/exe-call.js +3 -3
- package/dist/bin/exe-cloud.js +3 -3
- package/dist/bin/exe-dispatch.js +6 -3
- package/dist/bin/exe-doctor.js +3 -3
- package/dist/bin/exe-export-behaviors.js +3 -3
- package/dist/bin/exe-forget.js +3 -3
- package/dist/bin/exe-gateway.js +6 -3
- package/dist/bin/exe-heartbeat.js +6 -3
- package/dist/bin/exe-kill.js +3 -3
- package/dist/bin/exe-launch-agent.js +3 -3
- package/dist/bin/exe-new-employee.js +3 -3
- package/dist/bin/exe-pending-messages.js +6 -3
- package/dist/bin/exe-pending-notifications.js +6 -3
- package/dist/bin/exe-pending-reviews.js +6 -3
- package/dist/bin/exe-rename.js +3 -3
- package/dist/bin/exe-review.js +3 -3
- package/dist/bin/exe-search.js +3 -3
- package/dist/bin/exe-session-cleanup.js +6 -3
- package/dist/bin/exe-start-codex.js +3 -3
- package/dist/bin/exe-start-opencode.js +3 -3
- package/dist/bin/exe-status.js +6 -3
- package/dist/bin/exe-team.js +3 -3
- package/dist/bin/git-sweep.js +6 -3
- package/dist/bin/graph-backfill.js +3 -3
- package/dist/bin/graph-export.js +3 -3
- package/dist/bin/intercom-check.js +6 -3
- package/dist/bin/scan-tasks.js +6 -3
- package/dist/bin/setup.js +3 -3
- package/dist/bin/shard-migrate.js +3 -3
- package/dist/gateway/index.js +6 -3
- package/dist/hooks/bug-report-worker.js +6 -3
- package/dist/hooks/codex-stop-task-finalizer.js +6 -3
- package/dist/hooks/commit-complete.js +6 -3
- package/dist/hooks/error-recall.js +3 -3
- package/dist/hooks/ingest.js +3 -3
- package/dist/hooks/instructions-loaded.js +3 -3
- package/dist/hooks/notification.js +3 -3
- package/dist/hooks/post-compact.js +6 -3
- package/dist/hooks/post-tool-combined.js +6 -3
- package/dist/hooks/pre-compact.js +6 -3
- package/dist/hooks/pre-tool-use.js +6 -3
- package/dist/hooks/prompt-submit.js +6 -3
- package/dist/hooks/session-end.js +6 -3
- package/dist/hooks/session-start.js +6 -3
- package/dist/hooks/stop.js +6 -3
- package/dist/hooks/subagent-stop.js +6 -3
- package/dist/hooks/summary-worker.js +6 -3
- package/dist/index.js +6 -3
- package/dist/lib/employee-templates.js +3 -3
- package/dist/lib/exe-daemon.js +83 -3
- package/dist/lib/hybrid-search.js +3 -3
- package/dist/lib/messaging.js +3 -0
- package/dist/lib/schedules.js +3 -3
- package/dist/lib/store.js +3 -3
- package/dist/lib/tasks.js +3 -0
- package/dist/lib/tmux-routing.js +3 -0
- package/dist/mcp/server.js +15 -3
- package/dist/mcp/tools/create-task.js +3 -0
- package/dist/mcp/tools/list-tasks.js +3 -0
- package/dist/mcp/tools/send-message.js +3 -0
- package/dist/mcp/tools/update-task.js +3 -0
- package/dist/runtime/index.js +6 -3
- package/dist/tui/App.js +6 -3
- package/package.json +1 -1
|
@@ -3563,13 +3563,13 @@ var init_platform_procedures = __esm({
|
|
|
3563
3563
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
3564
3564
|
domain: "tool-use",
|
|
3565
3565
|
priority: "p1",
|
|
3566
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
3566
|
+
content: `memory(action="recall") / recall_my_memory: search memories (semantic + FTS). Params: as_of (bi-temporal \u2014 what did I know at time X?), kind (decision|procedure|observation|raw|conversation|behavior), retrieval_mode (all|decisions_only|procedures_only|operational|recent_high_value). memory(action="ask_team") / ask_team_memory: search a colleague's memories. memory(action="store") / store_memory: persist a memory. Params: kind, procedure_for (domain tag for procedures). memory(action="commit") / commit_memory: high-importance, survives consolidation. Requires summary. memory(action="search") / search_everything: unified search across memories, tasks, entities, conversations. memory(action="session_context") / get_session_context: temporal window. Requires session_id + target_timestamp. memory(action="get_by_id"): fetch one memory by UUID with full untruncated text. memory(action="consolidate") / consolidate_memories: merge duplicate/related memories. memory(action="cardinality") / get_memory_cardinality: count memories per agent. memory(action="supersede"): replace an old memory with a new version (old_id + new text). decision(action="store") / store_decision: record an architectural decision (domain, decision, rationale). decision(action="get") / get_decision: retrieve a past decision by domain or query.`
|
|
3567
3567
|
},
|
|
3568
3568
|
{
|
|
3569
3569
|
title: "MCP tools \u2014 task orchestration",
|
|
3570
3570
|
domain: "tool-use",
|
|
3571
3571
|
priority: "p1",
|
|
3572
|
-
content:
|
|
3572
|
+
content: 'task(action="create") / create_task: dispatch work (title, assigned_to, context). The ONLY dispatch path. Auto-spawns session. Params: blocked_by (task ID for dependency), parent_task_id (subtask hierarchy), reviewer, complexity (routine|standard|complex|critical), budget_tokens (max token cap), budget_fallback_model, spawn_runtime (override runtime: claude|codex|opencode), spawn_model (override model). task(action="list") / list_tasks: query tasks by status, assignee, project. task(action="get") / get_task: fetch full task details by task_id. task(action="update") / update_task: change status (in_progress, done, blocked, cancelled) + result summary. task(action="close") / close_task: finalize a reviewed task (COO only). task(action="checkpoint") / checkpoint_task: save progress state for crash recovery. task(action="resume") / resume_employee: re-spawn an employee session for an existing task.'
|
|
3573
3573
|
},
|
|
3574
3574
|
{
|
|
3575
3575
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -3599,7 +3599,7 @@ var init_platform_procedures = __esm({
|
|
|
3599
3599
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
3600
3600
|
domain: "tool-use",
|
|
3601
3601
|
priority: "p1",
|
|
3602
|
-
content: 'config(action="list_employees"): view roster. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query.
|
|
3602
|
+
content: 'config(action="list_employees"): view roster. config(action="set_agent_config"): view or change per-agent runtime + model. Call with no args to show all agents. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. Supports cloud_action param: status|sync|reupload. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="worker_gate"): check spawn slot availability \u2014 alive/stale/reserved counts vs max. Use before dispatching. config(action="auto_wake_status"): orphaned tasks, blocked tasks, auto-wake retry status. config(action="orchestration_phase"): view/change org phase (phase_1_coo|phase_2_executives|phase_3_parallel_org). config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="pending_work_summary"): pending reviews + messages + notifications in one call. diagnostics(action="rename_employee"): rename an agent across all systems (roster, identity, DB, symlinks). diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query. diagnostics(action="drift"): identity drift detection \u2014 score how far an agent has drifted from its role. mcp_ping(): daemon health + license status + tool usage stats.'
|
|
3603
3603
|
}
|
|
3604
3604
|
];
|
|
3605
3605
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -3563,13 +3563,13 @@ var init_platform_procedures = __esm({
|
|
|
3563
3563
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
3564
3564
|
domain: "tool-use",
|
|
3565
3565
|
priority: "p1",
|
|
3566
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
3566
|
+
content: `memory(action="recall") / recall_my_memory: search memories (semantic + FTS). Params: as_of (bi-temporal \u2014 what did I know at time X?), kind (decision|procedure|observation|raw|conversation|behavior), retrieval_mode (all|decisions_only|procedures_only|operational|recent_high_value). memory(action="ask_team") / ask_team_memory: search a colleague's memories. memory(action="store") / store_memory: persist a memory. Params: kind, procedure_for (domain tag for procedures). memory(action="commit") / commit_memory: high-importance, survives consolidation. Requires summary. memory(action="search") / search_everything: unified search across memories, tasks, entities, conversations. memory(action="session_context") / get_session_context: temporal window. Requires session_id + target_timestamp. memory(action="get_by_id"): fetch one memory by UUID with full untruncated text. memory(action="consolidate") / consolidate_memories: merge duplicate/related memories. memory(action="cardinality") / get_memory_cardinality: count memories per agent. memory(action="supersede"): replace an old memory with a new version (old_id + new text). decision(action="store") / store_decision: record an architectural decision (domain, decision, rationale). decision(action="get") / get_decision: retrieve a past decision by domain or query.`
|
|
3567
3567
|
},
|
|
3568
3568
|
{
|
|
3569
3569
|
title: "MCP tools \u2014 task orchestration",
|
|
3570
3570
|
domain: "tool-use",
|
|
3571
3571
|
priority: "p1",
|
|
3572
|
-
content:
|
|
3572
|
+
content: 'task(action="create") / create_task: dispatch work (title, assigned_to, context). The ONLY dispatch path. Auto-spawns session. Params: blocked_by (task ID for dependency), parent_task_id (subtask hierarchy), reviewer, complexity (routine|standard|complex|critical), budget_tokens (max token cap), budget_fallback_model, spawn_runtime (override runtime: claude|codex|opencode), spawn_model (override model). task(action="list") / list_tasks: query tasks by status, assignee, project. task(action="get") / get_task: fetch full task details by task_id. task(action="update") / update_task: change status (in_progress, done, blocked, cancelled) + result summary. task(action="close") / close_task: finalize a reviewed task (COO only). task(action="checkpoint") / checkpoint_task: save progress state for crash recovery. task(action="resume") / resume_employee: re-spawn an employee session for an existing task.'
|
|
3573
3573
|
},
|
|
3574
3574
|
{
|
|
3575
3575
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -3599,7 +3599,7 @@ var init_platform_procedures = __esm({
|
|
|
3599
3599
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
3600
3600
|
domain: "tool-use",
|
|
3601
3601
|
priority: "p1",
|
|
3602
|
-
content: 'config(action="list_employees"): view roster. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query.
|
|
3602
|
+
content: 'config(action="list_employees"): view roster. config(action="set_agent_config"): view or change per-agent runtime + model. Call with no args to show all agents. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. Supports cloud_action param: status|sync|reupload. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="worker_gate"): check spawn slot availability \u2014 alive/stale/reserved counts vs max. Use before dispatching. config(action="auto_wake_status"): orphaned tasks, blocked tasks, auto-wake retry status. config(action="orchestration_phase"): view/change org phase (phase_1_coo|phase_2_executives|phase_3_parallel_org). config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="pending_work_summary"): pending reviews + messages + notifications in one call. diagnostics(action="rename_employee"): rename an agent across all systems (roster, identity, DB, symlinks). diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query. diagnostics(action="drift"): identity drift detection \u2014 score how far an agent has drifted from its role. mcp_ping(): daemon health + license status + tool usage stats.'
|
|
3603
3603
|
}
|
|
3604
3604
|
];
|
|
3605
3605
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -3563,13 +3563,13 @@ var init_platform_procedures = __esm({
|
|
|
3563
3563
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
3564
3564
|
domain: "tool-use",
|
|
3565
3565
|
priority: "p1",
|
|
3566
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
3566
|
+
content: `memory(action="recall") / recall_my_memory: search memories (semantic + FTS). Params: as_of (bi-temporal \u2014 what did I know at time X?), kind (decision|procedure|observation|raw|conversation|behavior), retrieval_mode (all|decisions_only|procedures_only|operational|recent_high_value). memory(action="ask_team") / ask_team_memory: search a colleague's memories. memory(action="store") / store_memory: persist a memory. Params: kind, procedure_for (domain tag for procedures). memory(action="commit") / commit_memory: high-importance, survives consolidation. Requires summary. memory(action="search") / search_everything: unified search across memories, tasks, entities, conversations. memory(action="session_context") / get_session_context: temporal window. Requires session_id + target_timestamp. memory(action="get_by_id"): fetch one memory by UUID with full untruncated text. memory(action="consolidate") / consolidate_memories: merge duplicate/related memories. memory(action="cardinality") / get_memory_cardinality: count memories per agent. memory(action="supersede"): replace an old memory with a new version (old_id + new text). decision(action="store") / store_decision: record an architectural decision (domain, decision, rationale). decision(action="get") / get_decision: retrieve a past decision by domain or query.`
|
|
3567
3567
|
},
|
|
3568
3568
|
{
|
|
3569
3569
|
title: "MCP tools \u2014 task orchestration",
|
|
3570
3570
|
domain: "tool-use",
|
|
3571
3571
|
priority: "p1",
|
|
3572
|
-
content:
|
|
3572
|
+
content: 'task(action="create") / create_task: dispatch work (title, assigned_to, context). The ONLY dispatch path. Auto-spawns session. Params: blocked_by (task ID for dependency), parent_task_id (subtask hierarchy), reviewer, complexity (routine|standard|complex|critical), budget_tokens (max token cap), budget_fallback_model, spawn_runtime (override runtime: claude|codex|opencode), spawn_model (override model). task(action="list") / list_tasks: query tasks by status, assignee, project. task(action="get") / get_task: fetch full task details by task_id. task(action="update") / update_task: change status (in_progress, done, blocked, cancelled) + result summary. task(action="close") / close_task: finalize a reviewed task (COO only). task(action="checkpoint") / checkpoint_task: save progress state for crash recovery. task(action="resume") / resume_employee: re-spawn an employee session for an existing task.'
|
|
3573
3573
|
},
|
|
3574
3574
|
{
|
|
3575
3575
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -3599,7 +3599,7 @@ var init_platform_procedures = __esm({
|
|
|
3599
3599
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
3600
3600
|
domain: "tool-use",
|
|
3601
3601
|
priority: "p1",
|
|
3602
|
-
content: 'config(action="list_employees"): view roster. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query.
|
|
3602
|
+
content: 'config(action="list_employees"): view roster. config(action="set_agent_config"): view or change per-agent runtime + model. Call with no args to show all agents. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. Supports cloud_action param: status|sync|reupload. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="worker_gate"): check spawn slot availability \u2014 alive/stale/reserved counts vs max. Use before dispatching. config(action="auto_wake_status"): orphaned tasks, blocked tasks, auto-wake retry status. config(action="orchestration_phase"): view/change org phase (phase_1_coo|phase_2_executives|phase_3_parallel_org). config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="pending_work_summary"): pending reviews + messages + notifications in one call. diagnostics(action="rename_employee"): rename an agent across all systems (roster, identity, DB, symlinks). diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query. diagnostics(action="drift"): identity drift detection \u2014 score how far an agent has drifted from its role. mcp_ping(): daemon health + license status + tool usage stats.'
|
|
3603
3603
|
}
|
|
3604
3604
|
];
|
|
3605
3605
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -3703,13 +3703,13 @@ var init_platform_procedures = __esm({
|
|
|
3703
3703
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
3704
3704
|
domain: "tool-use",
|
|
3705
3705
|
priority: "p1",
|
|
3706
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
3706
|
+
content: `memory(action="recall") / recall_my_memory: search memories (semantic + FTS). Params: as_of (bi-temporal \u2014 what did I know at time X?), kind (decision|procedure|observation|raw|conversation|behavior), retrieval_mode (all|decisions_only|procedures_only|operational|recent_high_value). memory(action="ask_team") / ask_team_memory: search a colleague's memories. memory(action="store") / store_memory: persist a memory. Params: kind, procedure_for (domain tag for procedures). memory(action="commit") / commit_memory: high-importance, survives consolidation. Requires summary. memory(action="search") / search_everything: unified search across memories, tasks, entities, conversations. memory(action="session_context") / get_session_context: temporal window. Requires session_id + target_timestamp. memory(action="get_by_id"): fetch one memory by UUID with full untruncated text. memory(action="consolidate") / consolidate_memories: merge duplicate/related memories. memory(action="cardinality") / get_memory_cardinality: count memories per agent. memory(action="supersede"): replace an old memory with a new version (old_id + new text). decision(action="store") / store_decision: record an architectural decision (domain, decision, rationale). decision(action="get") / get_decision: retrieve a past decision by domain or query.`
|
|
3707
3707
|
},
|
|
3708
3708
|
{
|
|
3709
3709
|
title: "MCP tools \u2014 task orchestration",
|
|
3710
3710
|
domain: "tool-use",
|
|
3711
3711
|
priority: "p1",
|
|
3712
|
-
content:
|
|
3712
|
+
content: 'task(action="create") / create_task: dispatch work (title, assigned_to, context). The ONLY dispatch path. Auto-spawns session. Params: blocked_by (task ID for dependency), parent_task_id (subtask hierarchy), reviewer, complexity (routine|standard|complex|critical), budget_tokens (max token cap), budget_fallback_model, spawn_runtime (override runtime: claude|codex|opencode), spawn_model (override model). task(action="list") / list_tasks: query tasks by status, assignee, project. task(action="get") / get_task: fetch full task details by task_id. task(action="update") / update_task: change status (in_progress, done, blocked, cancelled) + result summary. task(action="close") / close_task: finalize a reviewed task (COO only). task(action="checkpoint") / checkpoint_task: save progress state for crash recovery. task(action="resume") / resume_employee: re-spawn an employee session for an existing task.'
|
|
3713
3713
|
},
|
|
3714
3714
|
{
|
|
3715
3715
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -3739,7 +3739,7 @@ var init_platform_procedures = __esm({
|
|
|
3739
3739
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
3740
3740
|
domain: "tool-use",
|
|
3741
3741
|
priority: "p1",
|
|
3742
|
-
content: 'config(action="list_employees"): view roster. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query.
|
|
3742
|
+
content: 'config(action="list_employees"): view roster. config(action="set_agent_config"): view or change per-agent runtime + model. Call with no args to show all agents. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. Supports cloud_action param: status|sync|reupload. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="worker_gate"): check spawn slot availability \u2014 alive/stale/reserved counts vs max. Use before dispatching. config(action="auto_wake_status"): orphaned tasks, blocked tasks, auto-wake retry status. config(action="orchestration_phase"): view/change org phase (phase_1_coo|phase_2_executives|phase_3_parallel_org). config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="pending_work_summary"): pending reviews + messages + notifications in one call. diagnostics(action="rename_employee"): rename an agent across all systems (roster, identity, DB, symlinks). diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query. diagnostics(action="drift"): identity drift detection \u2014 score how far an agent has drifted from its role. mcp_ping(): daemon health + license status + tool usage stats.'
|
|
3743
3743
|
}
|
|
3744
3744
|
];
|
|
3745
3745
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -3703,13 +3703,13 @@ var init_platform_procedures = __esm({
|
|
|
3703
3703
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
3704
3704
|
domain: "tool-use",
|
|
3705
3705
|
priority: "p1",
|
|
3706
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
3706
|
+
content: `memory(action="recall") / recall_my_memory: search memories (semantic + FTS). Params: as_of (bi-temporal \u2014 what did I know at time X?), kind (decision|procedure|observation|raw|conversation|behavior), retrieval_mode (all|decisions_only|procedures_only|operational|recent_high_value). memory(action="ask_team") / ask_team_memory: search a colleague's memories. memory(action="store") / store_memory: persist a memory. Params: kind, procedure_for (domain tag for procedures). memory(action="commit") / commit_memory: high-importance, survives consolidation. Requires summary. memory(action="search") / search_everything: unified search across memories, tasks, entities, conversations. memory(action="session_context") / get_session_context: temporal window. Requires session_id + target_timestamp. memory(action="get_by_id"): fetch one memory by UUID with full untruncated text. memory(action="consolidate") / consolidate_memories: merge duplicate/related memories. memory(action="cardinality") / get_memory_cardinality: count memories per agent. memory(action="supersede"): replace an old memory with a new version (old_id + new text). decision(action="store") / store_decision: record an architectural decision (domain, decision, rationale). decision(action="get") / get_decision: retrieve a past decision by domain or query.`
|
|
3707
3707
|
},
|
|
3708
3708
|
{
|
|
3709
3709
|
title: "MCP tools \u2014 task orchestration",
|
|
3710
3710
|
domain: "tool-use",
|
|
3711
3711
|
priority: "p1",
|
|
3712
|
-
content:
|
|
3712
|
+
content: 'task(action="create") / create_task: dispatch work (title, assigned_to, context). The ONLY dispatch path. Auto-spawns session. Params: blocked_by (task ID for dependency), parent_task_id (subtask hierarchy), reviewer, complexity (routine|standard|complex|critical), budget_tokens (max token cap), budget_fallback_model, spawn_runtime (override runtime: claude|codex|opencode), spawn_model (override model). task(action="list") / list_tasks: query tasks by status, assignee, project. task(action="get") / get_task: fetch full task details by task_id. task(action="update") / update_task: change status (in_progress, done, blocked, cancelled) + result summary. task(action="close") / close_task: finalize a reviewed task (COO only). task(action="checkpoint") / checkpoint_task: save progress state for crash recovery. task(action="resume") / resume_employee: re-spawn an employee session for an existing task.'
|
|
3713
3713
|
},
|
|
3714
3714
|
{
|
|
3715
3715
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -3739,7 +3739,7 @@ var init_platform_procedures = __esm({
|
|
|
3739
3739
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
3740
3740
|
domain: "tool-use",
|
|
3741
3741
|
priority: "p1",
|
|
3742
|
-
content: 'config(action="list_employees"): view roster. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query.
|
|
3742
|
+
content: 'config(action="list_employees"): view roster. config(action="set_agent_config"): view or change per-agent runtime + model. Call with no args to show all agents. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. Supports cloud_action param: status|sync|reupload. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="worker_gate"): check spawn slot availability \u2014 alive/stale/reserved counts vs max. Use before dispatching. config(action="auto_wake_status"): orphaned tasks, blocked tasks, auto-wake retry status. config(action="orchestration_phase"): view/change org phase (phase_1_coo|phase_2_executives|phase_3_parallel_org). config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="pending_work_summary"): pending reviews + messages + notifications in one call. diagnostics(action="rename_employee"): rename an agent across all systems (roster, identity, DB, symlinks). diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query. diagnostics(action="drift"): identity drift detection \u2014 score how far an agent has drifted from its role. mcp_ping(): daemon health + license status + tool usage stats.'
|
|
3743
3743
|
}
|
|
3744
3744
|
];
|
|
3745
3745
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -3699,13 +3699,13 @@ var init_platform_procedures = __esm({
|
|
|
3699
3699
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
3700
3700
|
domain: "tool-use",
|
|
3701
3701
|
priority: "p1",
|
|
3702
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
3702
|
+
content: `memory(action="recall") / recall_my_memory: search memories (semantic + FTS). Params: as_of (bi-temporal \u2014 what did I know at time X?), kind (decision|procedure|observation|raw|conversation|behavior), retrieval_mode (all|decisions_only|procedures_only|operational|recent_high_value). memory(action="ask_team") / ask_team_memory: search a colleague's memories. memory(action="store") / store_memory: persist a memory. Params: kind, procedure_for (domain tag for procedures). memory(action="commit") / commit_memory: high-importance, survives consolidation. Requires summary. memory(action="search") / search_everything: unified search across memories, tasks, entities, conversations. memory(action="session_context") / get_session_context: temporal window. Requires session_id + target_timestamp. memory(action="get_by_id"): fetch one memory by UUID with full untruncated text. memory(action="consolidate") / consolidate_memories: merge duplicate/related memories. memory(action="cardinality") / get_memory_cardinality: count memories per agent. memory(action="supersede"): replace an old memory with a new version (old_id + new text). decision(action="store") / store_decision: record an architectural decision (domain, decision, rationale). decision(action="get") / get_decision: retrieve a past decision by domain or query.`
|
|
3703
3703
|
},
|
|
3704
3704
|
{
|
|
3705
3705
|
title: "MCP tools \u2014 task orchestration",
|
|
3706
3706
|
domain: "tool-use",
|
|
3707
3707
|
priority: "p1",
|
|
3708
|
-
content:
|
|
3708
|
+
content: 'task(action="create") / create_task: dispatch work (title, assigned_to, context). The ONLY dispatch path. Auto-spawns session. Params: blocked_by (task ID for dependency), parent_task_id (subtask hierarchy), reviewer, complexity (routine|standard|complex|critical), budget_tokens (max token cap), budget_fallback_model, spawn_runtime (override runtime: claude|codex|opencode), spawn_model (override model). task(action="list") / list_tasks: query tasks by status, assignee, project. task(action="get") / get_task: fetch full task details by task_id. task(action="update") / update_task: change status (in_progress, done, blocked, cancelled) + result summary. task(action="close") / close_task: finalize a reviewed task (COO only). task(action="checkpoint") / checkpoint_task: save progress state for crash recovery. task(action="resume") / resume_employee: re-spawn an employee session for an existing task.'
|
|
3709
3709
|
},
|
|
3710
3710
|
{
|
|
3711
3711
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -3735,7 +3735,7 @@ var init_platform_procedures = __esm({
|
|
|
3735
3735
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
3736
3736
|
domain: "tool-use",
|
|
3737
3737
|
priority: "p1",
|
|
3738
|
-
content: 'config(action="list_employees"): view roster. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query.
|
|
3738
|
+
content: 'config(action="list_employees"): view roster. config(action="set_agent_config"): view or change per-agent runtime + model. Call with no args to show all agents. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. Supports cloud_action param: status|sync|reupload. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="worker_gate"): check spawn slot availability \u2014 alive/stale/reserved counts vs max. Use before dispatching. config(action="auto_wake_status"): orphaned tasks, blocked tasks, auto-wake retry status. config(action="orchestration_phase"): view/change org phase (phase_1_coo|phase_2_executives|phase_3_parallel_org). config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="pending_work_summary"): pending reviews + messages + notifications in one call. diagnostics(action="rename_employee"): rename an agent across all systems (roster, identity, DB, symlinks). diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query. diagnostics(action="drift"): identity drift detection \u2014 score how far an agent has drifted from its role. mcp_ping(): daemon health + license status + tool usage stats.'
|
|
3739
3739
|
}
|
|
3740
3740
|
];
|
|
3741
3741
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -3871,13 +3871,13 @@ var init_platform_procedures = __esm({
|
|
|
3871
3871
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
3872
3872
|
domain: "tool-use",
|
|
3873
3873
|
priority: "p1",
|
|
3874
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
3874
|
+
content: `memory(action="recall") / recall_my_memory: search memories (semantic + FTS). Params: as_of (bi-temporal \u2014 what did I know at time X?), kind (decision|procedure|observation|raw|conversation|behavior), retrieval_mode (all|decisions_only|procedures_only|operational|recent_high_value). memory(action="ask_team") / ask_team_memory: search a colleague's memories. memory(action="store") / store_memory: persist a memory. Params: kind, procedure_for (domain tag for procedures). memory(action="commit") / commit_memory: high-importance, survives consolidation. Requires summary. memory(action="search") / search_everything: unified search across memories, tasks, entities, conversations. memory(action="session_context") / get_session_context: temporal window. Requires session_id + target_timestamp. memory(action="get_by_id"): fetch one memory by UUID with full untruncated text. memory(action="consolidate") / consolidate_memories: merge duplicate/related memories. memory(action="cardinality") / get_memory_cardinality: count memories per agent. memory(action="supersede"): replace an old memory with a new version (old_id + new text). decision(action="store") / store_decision: record an architectural decision (domain, decision, rationale). decision(action="get") / get_decision: retrieve a past decision by domain or query.`
|
|
3875
3875
|
},
|
|
3876
3876
|
{
|
|
3877
3877
|
title: "MCP tools \u2014 task orchestration",
|
|
3878
3878
|
domain: "tool-use",
|
|
3879
3879
|
priority: "p1",
|
|
3880
|
-
content:
|
|
3880
|
+
content: 'task(action="create") / create_task: dispatch work (title, assigned_to, context). The ONLY dispatch path. Auto-spawns session. Params: blocked_by (task ID for dependency), parent_task_id (subtask hierarchy), reviewer, complexity (routine|standard|complex|critical), budget_tokens (max token cap), budget_fallback_model, spawn_runtime (override runtime: claude|codex|opencode), spawn_model (override model). task(action="list") / list_tasks: query tasks by status, assignee, project. task(action="get") / get_task: fetch full task details by task_id. task(action="update") / update_task: change status (in_progress, done, blocked, cancelled) + result summary. task(action="close") / close_task: finalize a reviewed task (COO only). task(action="checkpoint") / checkpoint_task: save progress state for crash recovery. task(action="resume") / resume_employee: re-spawn an employee session for an existing task.'
|
|
3881
3881
|
},
|
|
3882
3882
|
{
|
|
3883
3883
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -3907,7 +3907,7 @@ var init_platform_procedures = __esm({
|
|
|
3907
3907
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
3908
3908
|
domain: "tool-use",
|
|
3909
3909
|
priority: "p1",
|
|
3910
|
-
content: 'config(action="list_employees"): view roster. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query.
|
|
3910
|
+
content: 'config(action="list_employees"): view roster. config(action="set_agent_config"): view or change per-agent runtime + model. Call with no args to show all agents. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. Supports cloud_action param: status|sync|reupload. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="worker_gate"): check spawn slot availability \u2014 alive/stale/reserved counts vs max. Use before dispatching. config(action="auto_wake_status"): orphaned tasks, blocked tasks, auto-wake retry status. config(action="orchestration_phase"): view/change org phase (phase_1_coo|phase_2_executives|phase_3_parallel_org). config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="pending_work_summary"): pending reviews + messages + notifications in one call. diagnostics(action="rename_employee"): rename an agent across all systems (roster, identity, DB, symlinks). diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query. diagnostics(action="drift"): identity drift detection \u2014 score how far an agent has drifted from its role. mcp_ping(): daemon health + license status + tool usage stats.'
|
|
3911
3911
|
}
|
|
3912
3912
|
];
|
|
3913
3913
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -4346,13 +4346,13 @@ var init_platform_procedures = __esm({
|
|
|
4346
4346
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
4347
4347
|
domain: "tool-use",
|
|
4348
4348
|
priority: "p1",
|
|
4349
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
4349
|
+
content: `memory(action="recall") / recall_my_memory: search memories (semantic + FTS). Params: as_of (bi-temporal \u2014 what did I know at time X?), kind (decision|procedure|observation|raw|conversation|behavior), retrieval_mode (all|decisions_only|procedures_only|operational|recent_high_value). memory(action="ask_team") / ask_team_memory: search a colleague's memories. memory(action="store") / store_memory: persist a memory. Params: kind, procedure_for (domain tag for procedures). memory(action="commit") / commit_memory: high-importance, survives consolidation. Requires summary. memory(action="search") / search_everything: unified search across memories, tasks, entities, conversations. memory(action="session_context") / get_session_context: temporal window. Requires session_id + target_timestamp. memory(action="get_by_id"): fetch one memory by UUID with full untruncated text. memory(action="consolidate") / consolidate_memories: merge duplicate/related memories. memory(action="cardinality") / get_memory_cardinality: count memories per agent. memory(action="supersede"): replace an old memory with a new version (old_id + new text). decision(action="store") / store_decision: record an architectural decision (domain, decision, rationale). decision(action="get") / get_decision: retrieve a past decision by domain or query.`
|
|
4350
4350
|
},
|
|
4351
4351
|
{
|
|
4352
4352
|
title: "MCP tools \u2014 task orchestration",
|
|
4353
4353
|
domain: "tool-use",
|
|
4354
4354
|
priority: "p1",
|
|
4355
|
-
content:
|
|
4355
|
+
content: 'task(action="create") / create_task: dispatch work (title, assigned_to, context). The ONLY dispatch path. Auto-spawns session. Params: blocked_by (task ID for dependency), parent_task_id (subtask hierarchy), reviewer, complexity (routine|standard|complex|critical), budget_tokens (max token cap), budget_fallback_model, spawn_runtime (override runtime: claude|codex|opencode), spawn_model (override model). task(action="list") / list_tasks: query tasks by status, assignee, project. task(action="get") / get_task: fetch full task details by task_id. task(action="update") / update_task: change status (in_progress, done, blocked, cancelled) + result summary. task(action="close") / close_task: finalize a reviewed task (COO only). task(action="checkpoint") / checkpoint_task: save progress state for crash recovery. task(action="resume") / resume_employee: re-spawn an employee session for an existing task.'
|
|
4356
4356
|
},
|
|
4357
4357
|
{
|
|
4358
4358
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -4382,7 +4382,7 @@ var init_platform_procedures = __esm({
|
|
|
4382
4382
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
4383
4383
|
domain: "tool-use",
|
|
4384
4384
|
priority: "p1",
|
|
4385
|
-
content: 'config(action="list_employees"): view roster. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query.
|
|
4385
|
+
content: 'config(action="list_employees"): view roster. config(action="set_agent_config"): view or change per-agent runtime + model. Call with no args to show all agents. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. Supports cloud_action param: status|sync|reupload. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="worker_gate"): check spawn slot availability \u2014 alive/stale/reserved counts vs max. Use before dispatching. config(action="auto_wake_status"): orphaned tasks, blocked tasks, auto-wake retry status. config(action="orchestration_phase"): view/change org phase (phase_1_coo|phase_2_executives|phase_3_parallel_org). config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="pending_work_summary"): pending reviews + messages + notifications in one call. diagnostics(action="rename_employee"): rename an agent across all systems (roster, identity, DB, symlinks). diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query. diagnostics(action="drift"): identity drift detection \u2014 score how far an agent has drifted from its role. mcp_ping(): daemon health + license status + tool usage stats.'
|
|
4386
4386
|
}
|
|
4387
4387
|
];
|
|
4388
4388
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -5888,6 +5888,9 @@ function getParentExe(sessionKey) {
|
|
|
5888
5888
|
}
|
|
5889
5889
|
}
|
|
5890
5890
|
function resolveExeSession() {
|
|
5891
|
+
if (process.env.EXE_SESSION_NAME) {
|
|
5892
|
+
return extractRootExe(process.env.EXE_SESSION_NAME) ?? process.env.EXE_SESSION_NAME;
|
|
5893
|
+
}
|
|
5891
5894
|
const mySession = getMySession();
|
|
5892
5895
|
if (!mySession) return null;
|
|
5893
5896
|
const fromSessionName = extractRootExe(mySession);
|
package/dist/bin/cli.js
CHANGED
|
@@ -9033,13 +9033,13 @@ var init_platform_procedures = __esm({
|
|
|
9033
9033
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
9034
9034
|
domain: "tool-use",
|
|
9035
9035
|
priority: "p1",
|
|
9036
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
9036
|
+
content: `memory(action="recall") / recall_my_memory: search memories (semantic + FTS). Params: as_of (bi-temporal \u2014 what did I know at time X?), kind (decision|procedure|observation|raw|conversation|behavior), retrieval_mode (all|decisions_only|procedures_only|operational|recent_high_value). memory(action="ask_team") / ask_team_memory: search a colleague's memories. memory(action="store") / store_memory: persist a memory. Params: kind, procedure_for (domain tag for procedures). memory(action="commit") / commit_memory: high-importance, survives consolidation. Requires summary. memory(action="search") / search_everything: unified search across memories, tasks, entities, conversations. memory(action="session_context") / get_session_context: temporal window. Requires session_id + target_timestamp. memory(action="get_by_id"): fetch one memory by UUID with full untruncated text. memory(action="consolidate") / consolidate_memories: merge duplicate/related memories. memory(action="cardinality") / get_memory_cardinality: count memories per agent. memory(action="supersede"): replace an old memory with a new version (old_id + new text). decision(action="store") / store_decision: record an architectural decision (domain, decision, rationale). decision(action="get") / get_decision: retrieve a past decision by domain or query.`
|
|
9037
9037
|
},
|
|
9038
9038
|
{
|
|
9039
9039
|
title: "MCP tools \u2014 task orchestration",
|
|
9040
9040
|
domain: "tool-use",
|
|
9041
9041
|
priority: "p1",
|
|
9042
|
-
content:
|
|
9042
|
+
content: 'task(action="create") / create_task: dispatch work (title, assigned_to, context). The ONLY dispatch path. Auto-spawns session. Params: blocked_by (task ID for dependency), parent_task_id (subtask hierarchy), reviewer, complexity (routine|standard|complex|critical), budget_tokens (max token cap), budget_fallback_model, spawn_runtime (override runtime: claude|codex|opencode), spawn_model (override model). task(action="list") / list_tasks: query tasks by status, assignee, project. task(action="get") / get_task: fetch full task details by task_id. task(action="update") / update_task: change status (in_progress, done, blocked, cancelled) + result summary. task(action="close") / close_task: finalize a reviewed task (COO only). task(action="checkpoint") / checkpoint_task: save progress state for crash recovery. task(action="resume") / resume_employee: re-spawn an employee session for an existing task.'
|
|
9043
9043
|
},
|
|
9044
9044
|
{
|
|
9045
9045
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -9069,7 +9069,7 @@ var init_platform_procedures = __esm({
|
|
|
9069
9069
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
9070
9070
|
domain: "tool-use",
|
|
9071
9071
|
priority: "p1",
|
|
9072
|
-
content: 'config(action="list_employees"): view roster. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query.
|
|
9072
|
+
content: 'config(action="list_employees"): view roster. config(action="set_agent_config"): view or change per-agent runtime + model. Call with no args to show all agents. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. Supports cloud_action param: status|sync|reupload. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="worker_gate"): check spawn slot availability \u2014 alive/stale/reserved counts vs max. Use before dispatching. config(action="auto_wake_status"): orphaned tasks, blocked tasks, auto-wake retry status. config(action="orchestration_phase"): view/change org phase (phase_1_coo|phase_2_executives|phase_3_parallel_org). config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="pending_work_summary"): pending reviews + messages + notifications in one call. diagnostics(action="rename_employee"): rename an agent across all systems (roster, identity, DB, symlinks). diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query. diagnostics(action="drift"): identity drift detection \u2014 score how far an agent has drifted from its role. mcp_ping(): daemon health + license status + tool usage stats.'
|
|
9073
9073
|
}
|
|
9074
9074
|
];
|
|
9075
9075
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -16121,6 +16121,9 @@ function getDispatchedBy(sessionKey) {
|
|
|
16121
16121
|
}
|
|
16122
16122
|
}
|
|
16123
16123
|
function resolveExeSession() {
|
|
16124
|
+
if (process.env.EXE_SESSION_NAME) {
|
|
16125
|
+
return extractRootExe(process.env.EXE_SESSION_NAME) ?? process.env.EXE_SESSION_NAME;
|
|
16126
|
+
}
|
|
16124
16127
|
const mySession = getMySession();
|
|
16125
16128
|
if (!mySession) return null;
|
|
16126
16129
|
const fromSessionName = extractRootExe(mySession);
|
|
@@ -198,7 +198,7 @@ test("CLI/MCP parity \u2014 customer ops wrappers are registered", () => {
|
|
|
198
198
|
test("Platform procedures \u2014 all MCP tool actions documented", () => {
|
|
199
199
|
const procs = readSrc("src/lib/platform-procedures.ts");
|
|
200
200
|
const requiredActions = {
|
|
201
|
-
memory: ["recall", "ask_team", "store", "commit", "search", "session_context", "consolidate", "cardinality", "supersede"],
|
|
201
|
+
memory: ["recall", "ask_team", "store", "commit", "search", "session_context", "get_by_id", "consolidate", "cardinality", "supersede"],
|
|
202
202
|
task: ["create", "list", "get", "update", "close", "checkpoint", "resume"],
|
|
203
203
|
graph: ["query_relationships", "entity_neighbors", "hot_entities", "stats", "export", "merge_entities", "similar_trajectories"],
|
|
204
204
|
identity: ["get", "update"],
|
|
@@ -209,24 +209,34 @@ test("Platform procedures \u2014 all MCP tool actions documented", () => {
|
|
|
209
209
|
session: ["events", "last_response"],
|
|
210
210
|
wiki: ["list", "get"],
|
|
211
211
|
document: ["ingest", "list", "purge", "set_importance", "rerank"],
|
|
212
|
-
diagnostics: ["healthcheck", "doctor", "status_brief", "check_update", "cloud_status", "tool_search", "drift"],
|
|
213
|
-
config: ["list_employees", "agent_spend", "daemon_health", "license_status", "cloud_sync", "memory_audit", "run_consolidation", "company_procedure", "global_procedure", "create_trigger", "list_triggers", "export_orchestration", "import_orchestration"]
|
|
212
|
+
diagnostics: ["healthcheck", "doctor", "status_brief", "check_update", "cloud_status", "pending_work_summary", "rename_employee", "tool_search", "drift"],
|
|
213
|
+
config: ["list_employees", "set_agent_config", "agent_spend", "daemon_health", "license_status", "cloud_sync", "memory_audit", "run_consolidation", "worker_gate", "auto_wake_status", "orchestration_phase", "company_procedure", "global_procedure", "create_trigger", "list_triggers", "export_orchestration", "import_orchestration"]
|
|
214
214
|
};
|
|
215
215
|
const requiredParams = [
|
|
216
216
|
"as_of",
|
|
217
217
|
// bi-temporal recall
|
|
218
218
|
"kind",
|
|
219
219
|
// memory type filter
|
|
220
|
+
"retrieval_mode",
|
|
221
|
+
// typed retrieval filtering
|
|
220
222
|
"procedure_for",
|
|
221
223
|
// procedure domain tag
|
|
222
224
|
"spawn_runtime",
|
|
223
225
|
// per-task runtime override
|
|
224
226
|
"spawn_model",
|
|
225
227
|
// per-task model override
|
|
226
|
-
"
|
|
227
|
-
//
|
|
228
|
-
"
|
|
229
|
-
//
|
|
228
|
+
"blocked_by",
|
|
229
|
+
// task dependency
|
|
230
|
+
"parent_task_id",
|
|
231
|
+
// subtask hierarchy
|
|
232
|
+
"complexity",
|
|
233
|
+
// task complexity level
|
|
234
|
+
"budget_tokens",
|
|
235
|
+
// token budget cap
|
|
236
|
+
"worker_gate",
|
|
237
|
+
// spawn slot check
|
|
238
|
+
"cloud_action"
|
|
239
|
+
// nested cloud sync actions
|
|
230
240
|
];
|
|
231
241
|
const missing = [];
|
|
232
242
|
for (const [domain, actions] of Object.entries(requiredActions)) {
|
package/dist/bin/exe-agent.js
CHANGED
|
@@ -1511,13 +1511,13 @@ var PLATFORM_PROCEDURES = [
|
|
|
1511
1511
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
1512
1512
|
domain: "tool-use",
|
|
1513
1513
|
priority: "p1",
|
|
1514
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
1514
|
+
content: `memory(action="recall") / recall_my_memory: search memories (semantic + FTS). Params: as_of (bi-temporal \u2014 what did I know at time X?), kind (decision|procedure|observation|raw|conversation|behavior), retrieval_mode (all|decisions_only|procedures_only|operational|recent_high_value). memory(action="ask_team") / ask_team_memory: search a colleague's memories. memory(action="store") / store_memory: persist a memory. Params: kind, procedure_for (domain tag for procedures). memory(action="commit") / commit_memory: high-importance, survives consolidation. Requires summary. memory(action="search") / search_everything: unified search across memories, tasks, entities, conversations. memory(action="session_context") / get_session_context: temporal window. Requires session_id + target_timestamp. memory(action="get_by_id"): fetch one memory by UUID with full untruncated text. memory(action="consolidate") / consolidate_memories: merge duplicate/related memories. memory(action="cardinality") / get_memory_cardinality: count memories per agent. memory(action="supersede"): replace an old memory with a new version (old_id + new text). decision(action="store") / store_decision: record an architectural decision (domain, decision, rationale). decision(action="get") / get_decision: retrieve a past decision by domain or query.`
|
|
1515
1515
|
},
|
|
1516
1516
|
{
|
|
1517
1517
|
title: "MCP tools \u2014 task orchestration",
|
|
1518
1518
|
domain: "tool-use",
|
|
1519
1519
|
priority: "p1",
|
|
1520
|
-
content:
|
|
1520
|
+
content: 'task(action="create") / create_task: dispatch work (title, assigned_to, context). The ONLY dispatch path. Auto-spawns session. Params: blocked_by (task ID for dependency), parent_task_id (subtask hierarchy), reviewer, complexity (routine|standard|complex|critical), budget_tokens (max token cap), budget_fallback_model, spawn_runtime (override runtime: claude|codex|opencode), spawn_model (override model). task(action="list") / list_tasks: query tasks by status, assignee, project. task(action="get") / get_task: fetch full task details by task_id. task(action="update") / update_task: change status (in_progress, done, blocked, cancelled) + result summary. task(action="close") / close_task: finalize a reviewed task (COO only). task(action="checkpoint") / checkpoint_task: save progress state for crash recovery. task(action="resume") / resume_employee: re-spawn an employee session for an existing task.'
|
|
1521
1521
|
},
|
|
1522
1522
|
{
|
|
1523
1523
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -1547,7 +1547,7 @@ var PLATFORM_PROCEDURES = [
|
|
|
1547
1547
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
1548
1548
|
domain: "tool-use",
|
|
1549
1549
|
priority: "p1",
|
|
1550
|
-
content: 'config(action="list_employees"): view roster. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query.
|
|
1550
|
+
content: 'config(action="list_employees"): view roster. config(action="set_agent_config"): view or change per-agent runtime + model. Call with no args to show all agents. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. Supports cloud_action param: status|sync|reupload. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="worker_gate"): check spawn slot availability \u2014 alive/stale/reserved counts vs max. Use before dispatching. config(action="auto_wake_status"): orphaned tasks, blocked tasks, auto-wake retry status. config(action="orchestration_phase"): view/change org phase (phase_1_coo|phase_2_executives|phase_3_parallel_org). config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="pending_work_summary"): pending reviews + messages + notifications in one call. diagnostics(action="rename_employee"): rename an agent across all systems (roster, identity, DB, symlinks). diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query. diagnostics(action="drift"): identity drift detection \u2014 score how far an agent has drifted from its role. mcp_ping(): daemon health + license status + tool usage stats.'
|
|
1551
1551
|
}
|
|
1552
1552
|
];
|
|
1553
1553
|
var PLATFORM_PROCEDURE_TITLES = new Set(
|
package/dist/bin/exe-assign.js
CHANGED
|
@@ -3713,13 +3713,13 @@ var init_platform_procedures = __esm({
|
|
|
3713
3713
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
3714
3714
|
domain: "tool-use",
|
|
3715
3715
|
priority: "p1",
|
|
3716
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
3716
|
+
content: `memory(action="recall") / recall_my_memory: search memories (semantic + FTS). Params: as_of (bi-temporal \u2014 what did I know at time X?), kind (decision|procedure|observation|raw|conversation|behavior), retrieval_mode (all|decisions_only|procedures_only|operational|recent_high_value). memory(action="ask_team") / ask_team_memory: search a colleague's memories. memory(action="store") / store_memory: persist a memory. Params: kind, procedure_for (domain tag for procedures). memory(action="commit") / commit_memory: high-importance, survives consolidation. Requires summary. memory(action="search") / search_everything: unified search across memories, tasks, entities, conversations. memory(action="session_context") / get_session_context: temporal window. Requires session_id + target_timestamp. memory(action="get_by_id"): fetch one memory by UUID with full untruncated text. memory(action="consolidate") / consolidate_memories: merge duplicate/related memories. memory(action="cardinality") / get_memory_cardinality: count memories per agent. memory(action="supersede"): replace an old memory with a new version (old_id + new text). decision(action="store") / store_decision: record an architectural decision (domain, decision, rationale). decision(action="get") / get_decision: retrieve a past decision by domain or query.`
|
|
3717
3717
|
},
|
|
3718
3718
|
{
|
|
3719
3719
|
title: "MCP tools \u2014 task orchestration",
|
|
3720
3720
|
domain: "tool-use",
|
|
3721
3721
|
priority: "p1",
|
|
3722
|
-
content:
|
|
3722
|
+
content: 'task(action="create") / create_task: dispatch work (title, assigned_to, context). The ONLY dispatch path. Auto-spawns session. Params: blocked_by (task ID for dependency), parent_task_id (subtask hierarchy), reviewer, complexity (routine|standard|complex|critical), budget_tokens (max token cap), budget_fallback_model, spawn_runtime (override runtime: claude|codex|opencode), spawn_model (override model). task(action="list") / list_tasks: query tasks by status, assignee, project. task(action="get") / get_task: fetch full task details by task_id. task(action="update") / update_task: change status (in_progress, done, blocked, cancelled) + result summary. task(action="close") / close_task: finalize a reviewed task (COO only). task(action="checkpoint") / checkpoint_task: save progress state for crash recovery. task(action="resume") / resume_employee: re-spawn an employee session for an existing task.'
|
|
3723
3723
|
},
|
|
3724
3724
|
{
|
|
3725
3725
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -3749,7 +3749,7 @@ var init_platform_procedures = __esm({
|
|
|
3749
3749
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
3750
3750
|
domain: "tool-use",
|
|
3751
3751
|
priority: "p1",
|
|
3752
|
-
content: 'config(action="list_employees"): view roster. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query.
|
|
3752
|
+
content: 'config(action="list_employees"): view roster. config(action="set_agent_config"): view or change per-agent runtime + model. Call with no args to show all agents. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. Supports cloud_action param: status|sync|reupload. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="worker_gate"): check spawn slot availability \u2014 alive/stale/reserved counts vs max. Use before dispatching. config(action="auto_wake_status"): orphaned tasks, blocked tasks, auto-wake retry status. config(action="orchestration_phase"): view/change org phase (phase_1_coo|phase_2_executives|phase_3_parallel_org). config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="pending_work_summary"): pending reviews + messages + notifications in one call. diagnostics(action="rename_employee"): rename an agent across all systems (roster, identity, DB, symlinks). diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query. diagnostics(action="drift"): identity drift detection \u2014 score how far an agent has drifted from its role. mcp_ping(): daemon health + license status + tool usage stats.'
|
|
3753
3753
|
}
|
|
3754
3754
|
];
|
|
3755
3755
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
package/dist/bin/exe-boot.js
CHANGED
|
@@ -3450,13 +3450,13 @@ var init_platform_procedures = __esm({
|
|
|
3450
3450
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
3451
3451
|
domain: "tool-use",
|
|
3452
3452
|
priority: "p1",
|
|
3453
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
3453
|
+
content: `memory(action="recall") / recall_my_memory: search memories (semantic + FTS). Params: as_of (bi-temporal \u2014 what did I know at time X?), kind (decision|procedure|observation|raw|conversation|behavior), retrieval_mode (all|decisions_only|procedures_only|operational|recent_high_value). memory(action="ask_team") / ask_team_memory: search a colleague's memories. memory(action="store") / store_memory: persist a memory. Params: kind, procedure_for (domain tag for procedures). memory(action="commit") / commit_memory: high-importance, survives consolidation. Requires summary. memory(action="search") / search_everything: unified search across memories, tasks, entities, conversations. memory(action="session_context") / get_session_context: temporal window. Requires session_id + target_timestamp. memory(action="get_by_id"): fetch one memory by UUID with full untruncated text. memory(action="consolidate") / consolidate_memories: merge duplicate/related memories. memory(action="cardinality") / get_memory_cardinality: count memories per agent. memory(action="supersede"): replace an old memory with a new version (old_id + new text). decision(action="store") / store_decision: record an architectural decision (domain, decision, rationale). decision(action="get") / get_decision: retrieve a past decision by domain or query.`
|
|
3454
3454
|
},
|
|
3455
3455
|
{
|
|
3456
3456
|
title: "MCP tools \u2014 task orchestration",
|
|
3457
3457
|
domain: "tool-use",
|
|
3458
3458
|
priority: "p1",
|
|
3459
|
-
content:
|
|
3459
|
+
content: 'task(action="create") / create_task: dispatch work (title, assigned_to, context). The ONLY dispatch path. Auto-spawns session. Params: blocked_by (task ID for dependency), parent_task_id (subtask hierarchy), reviewer, complexity (routine|standard|complex|critical), budget_tokens (max token cap), budget_fallback_model, spawn_runtime (override runtime: claude|codex|opencode), spawn_model (override model). task(action="list") / list_tasks: query tasks by status, assignee, project. task(action="get") / get_task: fetch full task details by task_id. task(action="update") / update_task: change status (in_progress, done, blocked, cancelled) + result summary. task(action="close") / close_task: finalize a reviewed task (COO only). task(action="checkpoint") / checkpoint_task: save progress state for crash recovery. task(action="resume") / resume_employee: re-spawn an employee session for an existing task.'
|
|
3460
3460
|
},
|
|
3461
3461
|
{
|
|
3462
3462
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -3486,7 +3486,7 @@ var init_platform_procedures = __esm({
|
|
|
3486
3486
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
3487
3487
|
domain: "tool-use",
|
|
3488
3488
|
priority: "p1",
|
|
3489
|
-
content: 'config(action="list_employees"): view roster. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query.
|
|
3489
|
+
content: 'config(action="list_employees"): view roster. config(action="set_agent_config"): view or change per-agent runtime + model. Call with no args to show all agents. config(action="agent_spend"): token usage per agent. config(action="daemon_health"): check exed status. config(action="license_status"): check license. config(action="cloud_sync"): force sync. Supports cloud_action param: status|sync|reupload. config(action="memory_audit"): health check (dupes, null vectors). config(action="run_consolidation"): trigger memory consolidation. config(action="worker_gate"): check spawn slot availability \u2014 alive/stale/reserved counts vs max. Use before dispatching. config(action="auto_wake_status"): orphaned tasks, blocked tasks, auto-wake retry status. config(action="orchestration_phase"): view/change org phase (phase_1_coo|phase_2_executives|phase_3_parallel_org). config(action="company_procedure", subaction="store|list|deactivate"): manage company procedures. config(action="global_procedure"): list all procedures (platform + company). config(action="create_trigger|list_triggers"): scheduled agent jobs. config(action="export_orchestration|import_orchestration"): portable org state. diagnostics(action="healthcheck|doctor|status_brief|check_update|cloud_status"): system diagnostics. diagnostics(action="pending_work_summary"): pending reviews + messages + notifications in one call. diagnostics(action="rename_employee"): rename an agent across all systems (roster, identity, DB, symlinks). diagnostics(action="tool_search"): semantic tool discovery \u2014 find relevant MCP tools by natural language query. diagnostics(action="drift"): identity drift detection \u2014 score how far an agent has drifted from its role. mcp_ping(): daemon health + license status + tool usage stats.'
|
|
3490
3490
|
}
|
|
3491
3491
|
];
|
|
3492
3492
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -8285,6 +8285,9 @@ function getDispatchedBy(sessionKey) {
|
|
|
8285
8285
|
}
|
|
8286
8286
|
}
|
|
8287
8287
|
function resolveExeSession() {
|
|
8288
|
+
if (process.env.EXE_SESSION_NAME) {
|
|
8289
|
+
return extractRootExe(process.env.EXE_SESSION_NAME) ?? process.env.EXE_SESSION_NAME;
|
|
8290
|
+
}
|
|
8288
8291
|
const mySession = getMySession();
|
|
8289
8292
|
if (!mySession) return null;
|
|
8290
8293
|
const fromSessionName = extractRootExe(mySession);
|