agent-orchestrator-mcp-server 0.7.10 → 0.7.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-orchestrator-mcp-server",
3
- "version": "0.7.10",
3
+ "version": "0.7.11",
4
4
  "description": "Local implementation of agent-orchestrator MCP server",
5
5
  "main": "build/index.js",
6
6
  "type": "module",
@@ -91,6 +91,14 @@ This tool creates a one-time AO wake-up trigger bound to the target session. The
91
91
  - Use IANA timezone names (e.g., "America/New_York", "Europe/London", "Asia/Tokyo"). Do NOT pass UTC offsets like "+05:00" in the timezone parameter.
92
92
  - If you omit timezone, wake_at is treated as UTC.
93
93
 
94
+ **Choosing wake_at — adaptive scheduling for unknown durations:**
95
+ When monitoring downstream work whose duration you can't predict (e.g., a subagent or pipeline phase), do NOT guess a long interval up front. Default to a short first wake (~5 minutes), observe progress, then extend if needed:
96
+ - If the work is nearly done (~80%+): schedule a short follow-up (a few more minutes).
97
+ - If barely started (<20%): schedule a longer follow-up (e.g., 30–45 minutes), since the underlying work clearly needs more time.
98
+ - In between: pick proportional to remaining work.
99
+
100
+ This keeps you from sleeping through work that finishes early. It does NOT apply when waking at a known wall-clock time (e.g., "9am tomorrow") — use the calculated time directly.
101
+
94
102
  **Parameters:**
95
103
  - **session_id**: The session to wake up. Works from either \`needs_input\` or \`running\` state — if you call this tool from within your own currently-running session, the sleep transition is recorded and takes effect after the current turn ends.
96
104
  - **wake_at**: ISO 8601 datetime without offset for when to wake up (e.g., "2026-04-15T14:30:00")