agent-orchestrator-mcp-server 0.4.2 → 0.4.3
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
|
@@ -35,11 +35,11 @@ export const ActionSessionSchema = z.object({
|
|
|
35
35
|
const TOOL_DESCRIPTION = `Perform an action on an agent session.
|
|
36
36
|
|
|
37
37
|
**Actions:**
|
|
38
|
-
- **follow_up**: Send a follow-up prompt to
|
|
39
|
-
- **pause**: Pause a running session, transitioning it to "needs_input" status
|
|
40
|
-
- **restart**: Restart
|
|
38
|
+
- **follow_up**: Send a follow-up prompt to an idle session (requires "prompt" parameter)
|
|
39
|
+
- **pause**: Pause a running session, transitioning it to idle "needs_input" status
|
|
40
|
+
- **restart**: Restart an idle or failed session without providing new input
|
|
41
41
|
- **archive**: Archive a session (marks as completed)
|
|
42
|
-
- **unarchive**: Restore an archived session to "needs_input" status
|
|
42
|
+
- **unarchive**: Restore an archived session to idle "needs_input" status
|
|
43
43
|
- **change_mcp_servers**: Update the MCP servers for a session (requires "mcp_servers" parameter)
|
|
44
44
|
- **fork**: Fork a session from a specific transcript message (requires "message_index")
|
|
45
45
|
- **refresh**: Refresh a single session's status from the execution provider
|
|
@@ -41,7 +41,7 @@ const TOOL_DESCRIPTION = `Get detailed information about a specific agent sessio
|
|
|
41
41
|
|
|
42
42
|
**Use cases:**
|
|
43
43
|
- View detailed session information
|
|
44
|
-
- Check session status and progress
|
|
44
|
+
- Check session status and progress (use transcript to determine if a "needs_input" session has completed its task or needs follow-up)
|
|
45
45
|
- Retrieve session transcript for review
|
|
46
46
|
- Review logs for debugging
|
|
47
47
|
- Inspect subagent transcripts`;
|
|
@@ -28,14 +28,14 @@ const TOOL_DESCRIPTION = `Quick title-based search for agent sessions in the Age
|
|
|
28
28
|
- Find a specific session by ID (set id parameter)
|
|
29
29
|
- Search sessions by title keyword (set query parameter)
|
|
30
30
|
- List all sessions with optional status filter
|
|
31
|
-
- Monitor sessions
|
|
31
|
+
- Monitor sessions that have completed or need attention (status: "needs_input")
|
|
32
32
|
|
|
33
33
|
**Returns:** A list of matching sessions with their status, configuration, and metadata.
|
|
34
34
|
|
|
35
35
|
**Session statuses:**
|
|
36
36
|
- waiting: Session created, waiting to start
|
|
37
37
|
- running: Agent is actively executing
|
|
38
|
-
- needs_input: Agent
|
|
38
|
+
- needs_input: Agent has completed its current work and is idle. May indicate the task is done (most common) or that the agent needs additional input to continue. Check the session transcript to determine which case applies.
|
|
39
39
|
- failed: Session encountered an error
|
|
40
40
|
- archived: Session completed and archived`;
|
|
41
41
|
/** Maximum characters to display for prompt preview */
|