Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.murmur.dev/llms.txt

Use this file to discover all available pages before exploring further.

Discards all queued follow-up messages for an agent without delivering them. Returns the number of entries cleared. Equivalent to murmur queue clear in the CLI. This does not affect the agent’s current turn. Use interrupt if you also want to stop the in-progress turn.

Parameters

NameTypeRequiredDescription
slugstringnoAgent task slug. Empty means self. Use an absolute path like /w/workspace/u/account/slug to target an agent outside your own path.
workspacestringnoWorkspace name. Overrides the session default.

Response

Returns a JSON object with the number of cleared entries.
FieldTypeDescription
clearedintegerNumber of follow-up messages discarded.

Examples

Clear own queue

{}
Response:
{
  "cleared": 3
}

Clear another agent’s queue

{
  "slug": "fix-auth"
}
Response:
{
  "cleared": 1
}

Errors

CodeMeaningWhat to do
NOT_FOUNDNo agent with that slug exists.Check the slug. Use ls to see running agents.
UNAUTHENTICATEDIdentity token is missing or expired.Check credentials.