message-agent
Send a follow-up message to resume an existing agent session. Continue from where it left off, including after completion, failure, or rate limiting.
Instructions
Send a follow-up message to an existing agent session. Resumes the session — the agent continues from where it left off.
Returns a NEW task_id — the original task stays terminal. Monitor the new ID for progress.
When to call: Continue a completed/failed/rate-limited agent with follow-up instructions, or resume with default "continue".
Find task_id: Read task:///all — pick a terminal task (completed, failed, rate_limited, timed_out) to resume.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cwd | No | Working directory. Auto-detected from original task if omitted. | |
| message | No | Message to send. Default: "continue" (resumes where it left off). | continue |
| task_id | Yes | Task ID to send message to. Get from resource task:///all. | |
| timeout | No | Max execution time in milliseconds. Default: inherited from original task. Max: 1 hr (3600000ms). |