On this page
RPC Commands
This reference lists commands accepted on stdin in RPC mode. Each command and response is one JSON object. Shared message values use the message types.
Prompting
Copiedprompt
CopiedSend a user prompt to the agent. The command response is emitted after the prompt is accepted, queued, or handled. Events continue streaming asynchronously after acceptance.
{"id": "req-1", "type": "prompt", "message": "Hello, world!"}
With images:
{"type": "prompt", "message": "What's in this image?", "images": [{"type": "image", "data": "base64-encoded-data", "mimeType": "image/png"}]}
During streaming: If the agent is already streaming, you must specify streamingBehavior to queue the message:
{"type": "prompt", "message": "New instruction", "streamingBehavior": "steer"}
"steer": Queue the message while the agent is running. It is delivered after the current assistant turn finishes executing its tool calls, before the next LLM call."followUp": Wait until the agent finishes. Message is delivered only when agent stops.
If the agent is streaming and no streamingBehavior is specified, the command returns an error.
Extension commands: If the message is an extension command (e.g., /mycommand), it executes immediately even during streaming. Extension commands manage their own LLM interaction via pi.sendMessage().
Input expansion: Skill commands (/skill:name) and prompt templates (/template) are expanded before sending/queueing.
Response:
{"id": "req-1", "type": "response", "command": "prompt", "success": true}
success: true means the prompt was accepted, queued, or handled immediately. success: false means the prompt was rejected before acceptance. Failures after acceptance are reported through the normal event and message stream, not as a second response for the same request id.
The images field is optional. Each image uses ImageContent format: {"type": "image", "data": "base64-encoded-data", "mimeType": "image/png"}.
steer
CopiedQueue a steering message while the agent is running. It is delivered after the current assistant turn finishes executing its tool calls, before the next LLM call. Skill commands and prompt templates are expanded. Extension commands are not allowed (use prompt instead).
{"type": "steer", "message": "Stop and do this instead"}
With images:
{"type": "steer", "message": "Look at this instead", "images": [{"type": "image", "data": "base64-encoded-data", "mimeType": "image/png"}]}
The images field is optional. Each image uses ImageContent format (same as prompt).
Response:
{"type": "response", "command": "steer", "success": true}
See set_steering_mode for controlling how steering messages are processed.
follow_up
CopiedQueue a follow-up message to be processed after the agent finishes. Delivered only when agent has no more tool calls or steering messages. Skill commands and prompt templates are expanded. Extension commands are not allowed (use prompt instead).
{"type": "follow_up", "message": "After you're done, also do this"}
With images:
{"type": "follow_up", "message": "Also check this image", "images": [{"type": "image", "data": "base64-encoded-data", "mimeType": "image/png"}]}
The images field is optional. Each image uses ImageContent format (same as prompt).
Response:
{"type": "response", "command": "follow_up", "success": true}
See set_follow_up_mode for controlling how follow-up messages are processed.
abort
CopiedAbort the current operation and wait for the session to become idle before responding.
{"type": "abort"}
Response:
{"type": "response", "command": "abort", "success": true}
clear_queue
CopiedRemove queued steering and follow-up messages and return their text.
{"type": "clear_queue"}
Response:
{
"type": "response",
"command": "clear_queue",
"success": true,
"data": {
"steering": ["Change direction"],
"followUp": ["Summarize when finished"]
}
}
To implement interactive Esc behavior, send clear_queue before abort, then restore the returned text in the client editor. abort continues queued messages when they remain in the session.
new_session
CopiedStart a fresh session. Can be canceled by a session_before_switch extension event handler.
{"type": "new_session"}
With optional parent session tracking:
{"type": "new_session", "parentSession": "/path/to/parent-session.jsonl"}
Response:
{"type": "response", "command": "new_session", "success": true, "data": {"cancelled": false}}
If an extension canceled:
{"type": "response", "command": "new_session", "success": true, "data": {"cancelled": true}}
State
Copiedget_state
CopiedGet current session state.
{"type": "get_state"}
Response:
{
"type": "response",
"command": "get_state",
"success": true,
"data": {
"model": {...},
"thinkingLevel": "medium",
"isStreaming": false,
"isCompacting": false,
"steeringMode": "all",
"followUpMode": "one-at-a-time",
"sessionFile": "/path/to/session.jsonl",
"sessionId": "abc123",
"sessionName": "my-feature-work",
"autoCompactionEnabled": true,
"messageCount": 5,
"pendingMessageCount": 0
}
}
The model field is a full Model object, or omitted when no model is selected. The sessionName field is the display name set via set_session_name, or omitted if not set.
get_messages
CopiedGet all messages in the conversation.
{"type": "get_messages"}
Response:
{
"type": "response",
"command": "get_messages",
"success": true,
"data": {"messages": [...]}
}
Messages are AgentMessage objects (see Message Types).
Model
Copiedset_model
CopiedSwitch to a specific model.
{"type": "set_model", "provider": "anthropic", "modelId": "claude-sonnet-4-20250514"}
Response contains the full Model object:
{
"type": "response",
"command": "set_model",
"success": true,
"data": {...}
}
cycle_model
CopiedCycle to the next available model. Returns null data if only one model available.
{"type": "cycle_model"}
Response:
{
"type": "response",
"command": "cycle_model",
"success": true,
"data": {
"model": {...},
"thinkingLevel": "medium",
"isScoped": false
}
}
The model field is a full Model object.
get_available_models
CopiedList all configured models.
{"type": "get_available_models"}
Response contains an array of full Model objects:
{
"type": "response",
"command": "get_available_models",
"success": true,
"data": {
"models": [...]
}
}
Thinking
Copiedset_thinking_level
CopiedSet the reasoning/thinking level for models that support it.
{"type": "set_thinking_level", "level": "high"}
Levels: "off", "minimal", "low", "medium", "high", "xhigh", "max"
"xhigh" and "max" are exposed only when supported by the selected model. Some models, including GPT-5.6, expose both.
Response:
{"type": "response", "command": "set_thinking_level", "success": true}
cycle_thinking_level
CopiedCycle through available thinking levels. Returns null data if model doesn't support thinking.
{"type": "cycle_thinking_level"}
Response:
{
"type": "response",
"command": "cycle_thinking_level",
"success": true,
"data": {"level": "high"}
}
get_available_thinking_levels
CopiedList the thinking levels supported by the current model. Returns ["off"] for a model without reasoning support.
{"type": "get_available_thinking_levels"}
Response:
{
"type": "response",
"command": "get_available_thinking_levels",
"success": true,
"data": {
"levels": ["off", "minimal", "low", "medium", "high"]
}
}
Queue modes
Copiedset_steering_mode
CopiedControl how steering messages (from steer) are delivered.
{"type": "set_steering_mode", "mode": "one-at-a-time"}
Modes:
"all": Deliver all steering messages after the current assistant turn finishes executing its tool calls"one-at-a-time": Deliver one steering message per completed assistant turn (default)
Response:
{"type": "response", "command": "set_steering_mode", "success": true}
set_follow_up_mode
CopiedControl how follow-up messages (from follow_up) are delivered.
{"type": "set_follow_up_mode", "mode": "one-at-a-time"}
Modes:
"all": Deliver all follow-up messages when agent finishes"one-at-a-time": Deliver one follow-up message per agent completion (default)
Response:
{"type": "response", "command": "set_follow_up_mode", "success": true}
Compaction
Copiedcompact
CopiedManually compact conversation context to reduce token usage.
{"type": "compact"}
With custom instructions:
{"type": "compact", "customInstructions": "Focus on code changes"}
Response:
{
"type": "response",
"command": "compact",
"success": true,
"data": {
"summary": "Summary of conversation...",
"firstKeptEntryId": "abc123",
"tokensBefore": 150000,
"estimatedTokensAfter": 32000,
"usage": {
"input": 32000,
"output": 1200,
"cacheRead": 0,
"cacheWrite": 0,
"totalTokens": 33200,
"cost": {"input": 0.01, "output": 0.02, "cacheRead": 0, "cacheWrite": 0, "total": 0.03}
},
"details": {}
}
}
estimatedTokensAfter is a heuristic estimate over the rebuilt message context immediately after compaction, not a provider-exact token count. usage reports the LLM call or calls that generated the summary and may be omitted by custom compaction handlers.
set_auto_compaction
CopiedEnable or disable automatic compaction when context is nearly full.
{"type": "set_auto_compaction", "enabled": true}
Response:
{"type": "response", "command": "set_auto_compaction", "success": true}
Retry
Copiedset_auto_retry
CopiedEnable or disable automatic retry on transient errors (overloaded, rate limit, 5xx).
{"type": "set_auto_retry", "enabled": true}
Response:
{"type": "response", "command": "set_auto_retry", "success": true}
abort_retry
CopiedAbort an in-progress retry (cancel the delay and stop retrying).
{"type": "abort_retry"}
Response:
{"type": "response", "command": "abort_retry", "success": true}
Bash
Copiedbash
CopiedExecute a shell command and add output to conversation context. Output streams as bash_execution_update events while the command runs; the response contains the final result.
{"id": "req-1", "type": "bash", "command": "ls -la"}
Set excludeFromContext to true when the command output should be stored in the session but omitted from the model context on the next prompt.
Include an id to associate streamed bash_execution_update events with this command.
Response:
{
"id": "req-1",
"type": "response",
"command": "bash",
"success": true,
"data": {
"output": "total 48\ndrwxr-xr-x ...",
"exitCode": 0,
"cancelled": false,
"truncated": false
}
}
If output was truncated, includes fullOutputPath:
{
"type": "response",
"command": "bash",
"success": true,
"data": {
"output": "truncated output...",
"exitCode": 0,
"cancelled": false,
"truncated": true,
"fullOutputPath": "/tmp/pi-bash-abc123.log"
}
}
How bash results reach the LLM:
The bash command executes immediately and returns a BashResult. Internally, a BashExecutionMessage is created and stored in the agent's message state.
When the next prompt command is sent, Pi transforms context messages before sending them to the model. Unless excludeFromContext is true, the BashExecutionMessage becomes a UserMessage with this format:
Ran `ls -la`
```
total 48
drwxr-xr-x ...
```
This means:
- Included bash output reaches the model on the next prompt, not immediately.
- Multiple bash commands can run before a prompt; Pi includes each output that does not set
excludeFromContext.
abort_bash
CopiedAbort a running bash command.
{"type": "abort_bash"}
Response:
{"type": "response", "command": "abort_bash", "success": true}
Session
Copiedget_session_stats
CopiedGet token usage, cost statistics, and current context window usage.
{"type": "get_session_stats"}
Response:
{
"type": "response",
"command": "get_session_stats",
"success": true,
"data": {
"sessionFile": "/path/to/session.jsonl",
"sessionId": "abc123",
"userMessages": 5,
"assistantMessages": 5,
"toolCalls": 12,
"toolResults": 12,
"totalMessages": 22,
"tokens": {
"input": 50000,
"output": 10000,
"cacheRead": 40000,
"cacheWrite": 5000,
"total": 105000
},
"cost": 0.45,
"contextUsage": {
"tokens": 60000,
"contextWindow": 200000,
"percent": 30
}
}
}
tokens and cost include assistant messages, usage reported by tools, and compaction/branch-summary generation across the full session. contextUsage contains the actual current context-window estimate used for compaction and footer display.
contextUsage is omitted when no model or context window is available. contextUsage.tokens and contextUsage.percent are null immediately after compaction until a fresh post-compaction assistant response provides valid usage data.
export_html
CopiedExport session to an HTML file.
{"type": "export_html"}
With custom path:
{"type": "export_html", "outputPath": "/tmp/session.html"}
Response:
{
"type": "response",
"command": "export_html",
"success": true,
"data": {"path": "/tmp/session.html"}
}
switch_session
CopiedLoad a different session file. Can be canceled by a session_before_switch extension event handler.
{"type": "switch_session", "sessionPath": "/path/to/session.jsonl"}
Response:
{"type": "response", "command": "switch_session", "success": true, "data": {"cancelled": false}}
If an extension canceled the switch:
{"type": "response", "command": "switch_session", "success": true, "data": {"cancelled": true}}
fork
CopiedCreate a new fork from a previous user message on the active branch. Can be canceled by a session_before_fork extension event handler. Returns the text of the message being forked from.
{"type": "fork", "entryId": "abc123"}
Response:
{
"type": "response",
"command": "fork",
"success": true,
"data": {"text": "The original prompt text...", "cancelled": false}
}
If an extension canceled the fork:
{
"type": "response",
"command": "fork",
"success": true,
"data": {"cancelled": true}
}
clone
CopiedDuplicate the current active branch into a new session at the current position. Can be canceled by a session_before_fork extension event handler.
{"type": "clone"}
Response:
{
"type": "response",
"command": "clone",
"success": true,
"data": {"cancelled": false}
}
If an extension canceled the clone:
{
"type": "response",
"command": "clone",
"success": true,
"data": {"cancelled": true}
}
get_fork_messages
CopiedGet user messages available for forking.
{"type": "get_fork_messages"}
Response:
{
"type": "response",
"command": "get_fork_messages",
"success": true,
"data": {
"messages": [
{"entryId": "abc123", "text": "First prompt..."},
{"entryId": "def456", "text": "Second prompt..."}
]
}
}
get_entries
CopiedGet all session entries in append order (excluding the session header). The session is an append-only tree of entries with stable ids, so an entry id works as a durable cursor: pass the last entry id you have seen as since to get only entries strictly after it, even across client restarts. Unlike get_messages, this includes pre-compaction history and abandoned branches.
{"type": "get_entries"}
With a cursor:
{"type": "get_entries", "since": "abc123"}
Response:
{
"type": "response",
"command": "get_entries",
"success": true,
"data": {
"entries": [
{"type": "message", "id": "def456", "parentId": "abc123", "timestamp": "...", "message": {"role": "user", "...": "..."}}
],
"leafId": "def456"
}
}
leafId is the id of the current leaf entry (null for an empty session), so a client can tell in one round trip whether the active branch moved. If since does not match any entry id, the response is success: false.
get_tree
CopiedGet the session as a tree of entries. Each node is {entry, children, label?, labelTimestamp?}. The result is an array because navigation APIs can create multiple roots; orphaned entries with broken parent chains also appear as roots.
{"type": "get_tree"}
Response:
{
"type": "response",
"command": "get_tree",
"success": true,
"data": {
"tree": [
{
"entry": {"type": "message", "id": "abc123", "parentId": null, "...": "..."},
"children": [
{"entry": {"type": "message", "id": "def456", "parentId": "abc123", "...": "..."}, "children": []}
]
}
],
"leafId": "def456"
}
}
get_last_assistant_text
CopiedGet the text content of the last assistant message.
{"type": "get_last_assistant_text"}
Response:
{
"type": "response",
"command": "get_last_assistant_text",
"success": true,
"data": {"text": "The assistant's response..."}
}
The text value is null if no assistant text exists.
set_session_name
CopiedSet a display name for the current session. The name appears in session listings and helps identify sessions.
{"type": "set_session_name", "name": "my-feature-work"}
Response:
{
"type": "response",
"command": "set_session_name",
"success": true
}
The current session name is available via get_state in the sessionName field. To set the initial name when starting RPC mode, pass --name <name> or -n <name> to the pi --mode rpc process.
Discoverable commands
Copiedget_commands
CopiedGet available commands (extension commands, prompt templates, and skills). Run one through the prompt command by prefixing its name with /.
{"type": "get_commands"}
Response:
{
"type": "response",
"command": "get_commands",
"success": true,
"data": {
"commands": [
{
"name": "fix-tests",
"description": "Fix failing tests",
"source": "prompt",
"sourceInfo": {
"path": "/home/user/myproject/.pi/agent/prompts/fix-tests.md",
"source": "local",
"scope": "project",
"origin": "top-level"
}
}
]
}
}
Each command has:
name: Command name (use/name)description: Human-readable description (optional for extension commands)source: What kind of command:"extension": Registered viapi.registerCommand()in an extension"prompt": Loaded from a prompt template.mdfile"skill": Loaded from a skill directory (name is prefixed withskill:)
sourceInfo: Metadata for the resource that registered the command:path: Absolute path to the resourcesource: How Pi discovered it, such as"local","auto", or"cli"scope:"user","project", or"temporary"origin:"top-level"for a directly loaded resource or"package"for a package resourcebaseDir: Package base directory, when applicable
Note: Built-in TUI commands (/settings, /hotkeys, etc.) are not included. They are handled only in interactive mode and would not execute if sent via prompt.
Model object
CopiedModel commands return the complete configured model definition. Costs are in US dollars per million tokens.
{
"id": "claude-sonnet-4-20250514",
"name": "Claude Sonnet 4",
"api": "anthropic-messages",
"provider": "anthropic",
"baseUrl": "https://api.anthropic.com",
"reasoning": true,
"input": ["text", "image"],
"contextWindow": 200000,
"maxTokens": 16384,
"cost": {
"input": 3.0,
"output": 15.0,
"cacheRead": 0.3,
"cacheWrite": 3.75
}
}
For model configuration, see Configure a compatible endpoint. For TypeScript, use the exported Model type from @earendil-works/pi-ai.