@askexenow/exe-os 0.9.94 → 0.9.95
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 +6 -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 +6 -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
|
@@ -4337,13 +4337,13 @@ var init_platform_procedures = __esm({
|
|
|
4337
4337
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
4338
4338
|
domain: "tool-use",
|
|
4339
4339
|
priority: "p1",
|
|
4340
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
4340
|
+
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.`
|
|
4341
4341
|
},
|
|
4342
4342
|
{
|
|
4343
4343
|
title: "MCP tools \u2014 task orchestration",
|
|
4344
4344
|
domain: "tool-use",
|
|
4345
4345
|
priority: "p1",
|
|
4346
|
-
content:
|
|
4346
|
+
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.'
|
|
4347
4347
|
},
|
|
4348
4348
|
{
|
|
4349
4349
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -4373,7 +4373,7 @@ var init_platform_procedures = __esm({
|
|
|
4373
4373
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
4374
4374
|
domain: "tool-use",
|
|
4375
4375
|
priority: "p1",
|
|
4376
|
-
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.
|
|
4376
|
+
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.'
|
|
4377
4377
|
}
|
|
4378
4378
|
];
|
|
4379
4379
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -3522,6 +3522,9 @@ function getParentExe(sessionKey) {
|
|
|
3522
3522
|
}
|
|
3523
3523
|
}
|
|
3524
3524
|
function resolveExeSession() {
|
|
3525
|
+
if (process.env.EXE_SESSION_NAME) {
|
|
3526
|
+
return extractRootExe(process.env.EXE_SESSION_NAME) ?? process.env.EXE_SESSION_NAME;
|
|
3527
|
+
}
|
|
3525
3528
|
const mySession = getMySession();
|
|
3526
3529
|
if (!mySession) return null;
|
|
3527
3530
|
const fromSessionName = extractRootExe(mySession);
|
|
@@ -4954,13 +4957,13 @@ var init_platform_procedures = __esm({
|
|
|
4954
4957
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
4955
4958
|
domain: "tool-use",
|
|
4956
4959
|
priority: "p1",
|
|
4957
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
4960
|
+
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.`
|
|
4958
4961
|
},
|
|
4959
4962
|
{
|
|
4960
4963
|
title: "MCP tools \u2014 task orchestration",
|
|
4961
4964
|
domain: "tool-use",
|
|
4962
4965
|
priority: "p1",
|
|
4963
|
-
content:
|
|
4966
|
+
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.'
|
|
4964
4967
|
},
|
|
4965
4968
|
{
|
|
4966
4969
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -4990,7 +4993,7 @@ var init_platform_procedures = __esm({
|
|
|
4990
4993
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
4991
4994
|
domain: "tool-use",
|
|
4992
4995
|
priority: "p1",
|
|
4993
|
-
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.
|
|
4996
|
+
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.'
|
|
4994
4997
|
}
|
|
4995
4998
|
];
|
|
4996
4999
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -4588,13 +4588,13 @@ var init_platform_procedures = __esm({
|
|
|
4588
4588
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
4589
4589
|
domain: "tool-use",
|
|
4590
4590
|
priority: "p1",
|
|
4591
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
4591
|
+
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.`
|
|
4592
4592
|
},
|
|
4593
4593
|
{
|
|
4594
4594
|
title: "MCP tools \u2014 task orchestration",
|
|
4595
4595
|
domain: "tool-use",
|
|
4596
4596
|
priority: "p1",
|
|
4597
|
-
content:
|
|
4597
|
+
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.'
|
|
4598
4598
|
},
|
|
4599
4599
|
{
|
|
4600
4600
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -4624,7 +4624,7 @@ var init_platform_procedures = __esm({
|
|
|
4624
4624
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
4625
4625
|
domain: "tool-use",
|
|
4626
4626
|
priority: "p1",
|
|
4627
|
-
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.
|
|
4627
|
+
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.'
|
|
4628
4628
|
}
|
|
4629
4629
|
];
|
|
4630
4630
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -8427,6 +8427,9 @@ function getParentExe(sessionKey) {
|
|
|
8427
8427
|
}
|
|
8428
8428
|
}
|
|
8429
8429
|
function resolveExeSession() {
|
|
8430
|
+
if (process.env.EXE_SESSION_NAME) {
|
|
8431
|
+
return extractRootExe(process.env.EXE_SESSION_NAME) ?? process.env.EXE_SESSION_NAME;
|
|
8432
|
+
}
|
|
8430
8433
|
const mySession = getMySession();
|
|
8431
8434
|
if (!mySession) return null;
|
|
8432
8435
|
const fromSessionName = extractRootExe(mySession);
|
|
@@ -6293,6 +6293,9 @@ function getDispatchedBy(sessionKey) {
|
|
|
6293
6293
|
}
|
|
6294
6294
|
}
|
|
6295
6295
|
function resolveExeSession() {
|
|
6296
|
+
if (process.env.EXE_SESSION_NAME) {
|
|
6297
|
+
return extractRootExe(process.env.EXE_SESSION_NAME) ?? process.env.EXE_SESSION_NAME;
|
|
6298
|
+
}
|
|
6296
6299
|
const mySession = getMySession();
|
|
6297
6300
|
if (!mySession) return null;
|
|
6298
6301
|
const fromSessionName = extractRootExe(mySession);
|
|
@@ -8149,13 +8152,13 @@ var init_platform_procedures = __esm({
|
|
|
8149
8152
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
8150
8153
|
domain: "tool-use",
|
|
8151
8154
|
priority: "p1",
|
|
8152
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
8155
|
+
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.`
|
|
8153
8156
|
},
|
|
8154
8157
|
{
|
|
8155
8158
|
title: "MCP tools \u2014 task orchestration",
|
|
8156
8159
|
domain: "tool-use",
|
|
8157
8160
|
priority: "p1",
|
|
8158
|
-
content:
|
|
8161
|
+
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.'
|
|
8159
8162
|
},
|
|
8160
8163
|
{
|
|
8161
8164
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -8185,7 +8188,7 @@ var init_platform_procedures = __esm({
|
|
|
8185
8188
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
8186
8189
|
domain: "tool-use",
|
|
8187
8190
|
priority: "p1",
|
|
8188
|
-
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.
|
|
8191
|
+
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.'
|
|
8189
8192
|
}
|
|
8190
8193
|
];
|
|
8191
8194
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -3809,6 +3809,9 @@ function getParentExe(sessionKey) {
|
|
|
3809
3809
|
}
|
|
3810
3810
|
}
|
|
3811
3811
|
function resolveExeSession() {
|
|
3812
|
+
if (process.env.EXE_SESSION_NAME) {
|
|
3813
|
+
return extractRootExe(process.env.EXE_SESSION_NAME) ?? process.env.EXE_SESSION_NAME;
|
|
3814
|
+
}
|
|
3812
3815
|
const mySession = getMySession();
|
|
3813
3816
|
if (!mySession) return null;
|
|
3814
3817
|
const fromSessionName = extractRootExe(mySession);
|
|
@@ -5285,13 +5288,13 @@ var init_platform_procedures = __esm({
|
|
|
5285
5288
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
5286
5289
|
domain: "tool-use",
|
|
5287
5290
|
priority: "p1",
|
|
5288
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
5291
|
+
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.`
|
|
5289
5292
|
},
|
|
5290
5293
|
{
|
|
5291
5294
|
title: "MCP tools \u2014 task orchestration",
|
|
5292
5295
|
domain: "tool-use",
|
|
5293
5296
|
priority: "p1",
|
|
5294
|
-
content:
|
|
5297
|
+
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.'
|
|
5295
5298
|
},
|
|
5296
5299
|
{
|
|
5297
5300
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -5321,7 +5324,7 @@ var init_platform_procedures = __esm({
|
|
|
5321
5324
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
5322
5325
|
domain: "tool-use",
|
|
5323
5326
|
priority: "p1",
|
|
5324
|
-
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.
|
|
5327
|
+
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.'
|
|
5325
5328
|
}
|
|
5326
5329
|
];
|
|
5327
5330
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -4745,13 +4745,13 @@ var init_platform_procedures = __esm({
|
|
|
4745
4745
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
4746
4746
|
domain: "tool-use",
|
|
4747
4747
|
priority: "p1",
|
|
4748
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
4748
|
+
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.`
|
|
4749
4749
|
},
|
|
4750
4750
|
{
|
|
4751
4751
|
title: "MCP tools \u2014 task orchestration",
|
|
4752
4752
|
domain: "tool-use",
|
|
4753
4753
|
priority: "p1",
|
|
4754
|
-
content:
|
|
4754
|
+
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.'
|
|
4755
4755
|
},
|
|
4756
4756
|
{
|
|
4757
4757
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -4781,7 +4781,7 @@ var init_platform_procedures = __esm({
|
|
|
4781
4781
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
4782
4782
|
domain: "tool-use",
|
|
4783
4783
|
priority: "p1",
|
|
4784
|
-
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.
|
|
4784
|
+
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.'
|
|
4785
4785
|
}
|
|
4786
4786
|
];
|
|
4787
4787
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -10023,6 +10023,9 @@ function getDispatchedBy(sessionKey) {
|
|
|
10023
10023
|
}
|
|
10024
10024
|
}
|
|
10025
10025
|
function resolveExeSession() {
|
|
10026
|
+
if (process.env.EXE_SESSION_NAME) {
|
|
10027
|
+
return extractRootExe(process.env.EXE_SESSION_NAME) ?? process.env.EXE_SESSION_NAME;
|
|
10028
|
+
}
|
|
10026
10029
|
const mySession = getMySession();
|
|
10027
10030
|
if (!mySession) return null;
|
|
10028
10031
|
const fromSessionName = extractRootExe(mySession);
|
|
@@ -6502,6 +6502,9 @@ function getDispatchedBy(sessionKey) {
|
|
|
6502
6502
|
}
|
|
6503
6503
|
}
|
|
6504
6504
|
function resolveExeSession() {
|
|
6505
|
+
if (process.env.EXE_SESSION_NAME) {
|
|
6506
|
+
return extractRootExe(process.env.EXE_SESSION_NAME) ?? process.env.EXE_SESSION_NAME;
|
|
6507
|
+
}
|
|
6505
6508
|
const mySession = getMySession();
|
|
6506
6509
|
if (!mySession) return null;
|
|
6507
6510
|
const fromSessionName = extractRootExe(mySession);
|
|
@@ -8358,13 +8361,13 @@ var init_platform_procedures = __esm({
|
|
|
8358
8361
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
8359
8362
|
domain: "tool-use",
|
|
8360
8363
|
priority: "p1",
|
|
8361
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
8364
|
+
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.`
|
|
8362
8365
|
},
|
|
8363
8366
|
{
|
|
8364
8367
|
title: "MCP tools \u2014 task orchestration",
|
|
8365
8368
|
domain: "tool-use",
|
|
8366
8369
|
priority: "p1",
|
|
8367
|
-
content:
|
|
8370
|
+
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.'
|
|
8368
8371
|
},
|
|
8369
8372
|
{
|
|
8370
8373
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -8394,7 +8397,7 @@ var init_platform_procedures = __esm({
|
|
|
8394
8397
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
8395
8398
|
domain: "tool-use",
|
|
8396
8399
|
priority: "p1",
|
|
8397
|
-
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.
|
|
8400
|
+
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.'
|
|
8398
8401
|
}
|
|
8399
8402
|
];
|
|
8400
8403
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -4745,13 +4745,13 @@ var init_platform_procedures = __esm({
|
|
|
4745
4745
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
4746
4746
|
domain: "tool-use",
|
|
4747
4747
|
priority: "p1",
|
|
4748
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
4748
|
+
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.`
|
|
4749
4749
|
},
|
|
4750
4750
|
{
|
|
4751
4751
|
title: "MCP tools \u2014 task orchestration",
|
|
4752
4752
|
domain: "tool-use",
|
|
4753
4753
|
priority: "p1",
|
|
4754
|
-
content:
|
|
4754
|
+
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.'
|
|
4755
4755
|
},
|
|
4756
4756
|
{
|
|
4757
4757
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -4781,7 +4781,7 @@ var init_platform_procedures = __esm({
|
|
|
4781
4781
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
4782
4782
|
domain: "tool-use",
|
|
4783
4783
|
priority: "p1",
|
|
4784
|
-
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.
|
|
4784
|
+
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.'
|
|
4785
4785
|
}
|
|
4786
4786
|
];
|
|
4787
4787
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -8251,6 +8251,9 @@ function getParentExe(sessionKey) {
|
|
|
8251
8251
|
}
|
|
8252
8252
|
}
|
|
8253
8253
|
function resolveExeSession() {
|
|
8254
|
+
if (process.env.EXE_SESSION_NAME) {
|
|
8255
|
+
return extractRootExe(process.env.EXE_SESSION_NAME) ?? process.env.EXE_SESSION_NAME;
|
|
8256
|
+
}
|
|
8254
8257
|
const mySession = getMySession();
|
|
8255
8258
|
if (!mySession) return null;
|
|
8256
8259
|
const fromSessionName = extractRootExe(mySession);
|
package/dist/hooks/stop.js
CHANGED
|
@@ -3557,6 +3557,9 @@ function getParentExe(sessionKey) {
|
|
|
3557
3557
|
}
|
|
3558
3558
|
}
|
|
3559
3559
|
function resolveExeSession() {
|
|
3560
|
+
if (process.env.EXE_SESSION_NAME) {
|
|
3561
|
+
return extractRootExe(process.env.EXE_SESSION_NAME) ?? process.env.EXE_SESSION_NAME;
|
|
3562
|
+
}
|
|
3560
3563
|
const mySession = getMySession();
|
|
3561
3564
|
if (!mySession) return null;
|
|
3562
3565
|
const fromSessionName = extractRootExe(mySession);
|
|
@@ -4858,13 +4861,13 @@ var init_platform_procedures = __esm({
|
|
|
4858
4861
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
4859
4862
|
domain: "tool-use",
|
|
4860
4863
|
priority: "p1",
|
|
4861
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
4864
|
+
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.`
|
|
4862
4865
|
},
|
|
4863
4866
|
{
|
|
4864
4867
|
title: "MCP tools \u2014 task orchestration",
|
|
4865
4868
|
domain: "tool-use",
|
|
4866
4869
|
priority: "p1",
|
|
4867
|
-
content:
|
|
4870
|
+
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.'
|
|
4868
4871
|
},
|
|
4869
4872
|
{
|
|
4870
4873
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -4894,7 +4897,7 @@ var init_platform_procedures = __esm({
|
|
|
4894
4897
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
4895
4898
|
domain: "tool-use",
|
|
4896
4899
|
priority: "p1",
|
|
4897
|
-
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.
|
|
4900
|
+
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.'
|
|
4898
4901
|
}
|
|
4899
4902
|
];
|
|
4900
4903
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -3529,6 +3529,9 @@ function getParentExe(sessionKey) {
|
|
|
3529
3529
|
}
|
|
3530
3530
|
}
|
|
3531
3531
|
function resolveExeSession() {
|
|
3532
|
+
if (process.env.EXE_SESSION_NAME) {
|
|
3533
|
+
return extractRootExe(process.env.EXE_SESSION_NAME) ?? process.env.EXE_SESSION_NAME;
|
|
3534
|
+
}
|
|
3532
3535
|
const mySession = getMySession();
|
|
3533
3536
|
if (!mySession) return null;
|
|
3534
3537
|
const fromSessionName = extractRootExe(mySession);
|
|
@@ -4821,13 +4824,13 @@ var init_platform_procedures = __esm({
|
|
|
4821
4824
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
4822
4825
|
domain: "tool-use",
|
|
4823
4826
|
priority: "p1",
|
|
4824
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
4827
|
+
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.`
|
|
4825
4828
|
},
|
|
4826
4829
|
{
|
|
4827
4830
|
title: "MCP tools \u2014 task orchestration",
|
|
4828
4831
|
domain: "tool-use",
|
|
4829
4832
|
priority: "p1",
|
|
4830
|
-
content:
|
|
4833
|
+
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.'
|
|
4831
4834
|
},
|
|
4832
4835
|
{
|
|
4833
4836
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -4857,7 +4860,7 @@ var init_platform_procedures = __esm({
|
|
|
4857
4860
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
4858
4861
|
domain: "tool-use",
|
|
4859
4862
|
priority: "p1",
|
|
4860
|
-
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.
|
|
4863
|
+
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.'
|
|
4861
4864
|
}
|
|
4862
4865
|
];
|
|
4863
4866
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -4381,13 +4381,13 @@ var init_platform_procedures = __esm({
|
|
|
4381
4381
|
title: "MCP tools \u2014 memory, decision, and search",
|
|
4382
4382
|
domain: "tool-use",
|
|
4383
4383
|
priority: "p1",
|
|
4384
|
-
content: `memory(action="recall") / recall_my_memory: search
|
|
4384
|
+
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.`
|
|
4385
4385
|
},
|
|
4386
4386
|
{
|
|
4387
4387
|
title: "MCP tools \u2014 task orchestration",
|
|
4388
4388
|
domain: "tool-use",
|
|
4389
4389
|
priority: "p1",
|
|
4390
|
-
content:
|
|
4390
|
+
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.'
|
|
4391
4391
|
},
|
|
4392
4392
|
{
|
|
4393
4393
|
title: "MCP tools \u2014 knowledge graph (GraphRAG)",
|
|
@@ -4417,7 +4417,7 @@ var init_platform_procedures = __esm({
|
|
|
4417
4417
|
title: "MCP tools \u2014 admin, config, and operations",
|
|
4418
4418
|
domain: "tool-use",
|
|
4419
4419
|
priority: "p1",
|
|
4420
|
-
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.
|
|
4420
|
+
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.'
|
|
4421
4421
|
}
|
|
4422
4422
|
];
|
|
4423
4423
|
PLATFORM_PROCEDURE_TITLES = new Set(
|
|
@@ -5416,6 +5416,9 @@ function getParentExe(sessionKey) {
|
|
|
5416
5416
|
}
|
|
5417
5417
|
}
|
|
5418
5418
|
function resolveExeSession() {
|
|
5419
|
+
if (process.env.EXE_SESSION_NAME) {
|
|
5420
|
+
return extractRootExe(process.env.EXE_SESSION_NAME) ?? process.env.EXE_SESSION_NAME;
|
|
5421
|
+
}
|
|
5419
5422
|
const mySession = getMySession();
|
|
5420
5423
|
if (!mySession) return null;
|
|
5421
5424
|
const fromSessionName = extractRootExe(mySession);
|