skills/pi-agent/references/json.md
Source: https://pi.dev/docs/latest/json
Use JSON mode for one-shot prompts that output all session events as JSON lines to stdout.
pi --mode json "Your prompt"
Wire events use JsonAgentSessionEvent, which matches AgentSessionEvent except that streaming message updates omit cumulative snapshots:
type WithoutPartial<T> = T extends { partial: unknown } ? Omit<T, "partial"> : T;
type JsonAgentSessionEvent =
| Exclude<AgentSessionEvent, { type: "message_update" }>
| { type: "message_update"; usage: Usage; assistantMessageEvent: WithoutPartial<AssistantMessageEvent> };
AgentSessionEvent is AgentEvent plus session-level events:
queue_update — { steering: readonly string[], followUp: readonly string[] }, emitted whenever either queue changescompaction_start — { reason: "manual" | "threshold" | "overflow" }compaction_end — { reason, result: CompactionResult | undefined, aborted, willRetry, errorMessage? }auto_retry_start — { attempt, maxAttempts, delayMs, errorMessage }auto_retry_end — { success, attempt, finalError? }summarization_retry_scheduled — { attempt, maxAttempts, delayMs, errorMessage }summarization_retry_attempt_start — { source: "branchSummary" } or { source: "compaction", reason }summarization_retry_finishedBase AgentEvent types:
agent_start, agent_end (messages)turn_start, turn_end (message, toolResults)message_start (message), message_update (usage, assistantMessageEvent), message_end (message)tool_execution_start (toolCallId, toolName, args), tool_execution_update (+ partialResult), tool_execution_end (result, isError)First line is the session header:
{"type":"session","version":3,"id":"uuid","timestamp":"...","cwd":"/path"}
Then events as they occur:
{"type":"agent_start"}
{"type":"turn_start"}
{"type":"message_start","message":{"role":"assistant","content":[]}}
{"type":"message_update","usage":{},"assistantMessageEvent":{"type":"text_delta","contentIndex":0,"delta":"Hello"}}
{"type":"message_end","message":{}}
{"type":"turn_end","message":{},"toolResults":[]}
{"type":"agent_end","messages":[]}
message_update records are delta-only: they omit both the cumulative message field and assistantMessageEvent.partial to keep stream size linear. The top-level usage field carries the latest cumulative provider-reported usage and may stay zero when a provider only reports usage at completion. Assemble live text, thinking, or tool-call arguments from contentIndex and delta; message_end holds the final authoritative message.
pi --mode json "List files" 2>/dev/null | jq -c 'select(.type == "message_end")'
For bidirectional control, use RPC instead of JSON mode.