{ "name": "chrome_rr", "description": "Record/Replay management (read-mostly). list: flows + published + schedules + triggers (summaries); get: full flow definition by id or slug; delete: a flow by id (also keeps published/schedules/triggers consistent); runs: recent run history (summarized). Does not start/stop recording and never mutates internal recording state.", "parameters": { "type": "object", "properties": { "action": { "type": "string", "enum": ["list", "get", "delete", "runs"], "description": "list: summaries of flows/published/schedules/triggers; get: full flow by id/slug; delete: remove a flow by id; runs: recent run history." }, "id": { "type": "string", "description": "Flow id. Required for delete; used by get and to filter runs." }, "slug": { "type": "string", "description": "Flow slug (alternative to id for action=get)." }, "limit": { "type": "number", "description": "action=runs: max number of recent runs to return (default: 20)." } }, "required": ["action"] } }