Stream Agent Spec execution updates (WebSocket)
WebSocket endpoint for real-time execution updates. Streams per-node status changes and execution events as they occur. **Protocol**: WebSocket (upgrade from HTTP) **Messages sent by server**: - `{"type": "node_status", "node": "<name>", "status": {...}}` - `{"type": "execution_complete", "results": {...}}` - `{"type": "execution_error", "error": "<message>"}`
JWT token for authentication
In: header
Path Parameters
Execution ID from the runtime
Response Body
application/json
curl -X GET "https://example.com/agentspec/executions/string/stream"List available tools on the runtime GET
Retrieve a list of tools registered on the Agent Spec runtime. These tools can be referenced by `tool_node` components.
Validate Agent Spec flow on runtime POST
Validate an Agent Spec flow specification against the runtime without executing it. Checks for structural correctness, valid node references, and property compatibility.