Plain text · sha256 c712879f9958
The description, rendered
This renders the markdown inside the description, so it isn’t quite the description itself.The raw view and the plain text are the bytes as they were sent.
- Stops a running background task by its ID
- Takes a task_id parameter identifying the task to stop
- To stop an agent-team teammate, pass its agent ID ("name@team") or bare teammate name as task_id
- To stop a background agent spawned with a name, pass that name as task_id
- Returns a success or failure status
- Use this tool when you need to terminate a long-running task
What it accepts
2 parameters The JSON parameter schema sent beside this description, 415 characters of it. Name, type, then whether the client marked it required.shell_id
string
optional
Deprecated: use task_id instead
task_id
string
optional
The ID of the background task to stop. Agent-team teammates and named background agents are also accepted by agent ID or name.
sha256 b919c6648956 · the schema as the client sent it:
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"shell_id": {
"description": "Deprecated: use task_id instead",
"type": "string"
},
"task_id": {
"description": "The ID of the background task to stop. Agent-team teammates and named background agents are also accepted by agent ID or name.",
"type": "string"
}
},
"type": "object"
}