Tool Reference
Every tool BOR can call, grouped by family. The authoritative source isserver/protocol/registry.js; this page mirrors it. Each tool is XML the model emits; the runtime parses, executes, and feeds the result back. See The protocol.
Format. Scalars ride as attributes (<tag attr="…">); long/<-containing content rides in the body, usually wrapped in<![CDATA[ … ]]>. Some tools take typed children (e.g.<create_app>’s<html>,<doc>,<thumbnail>).
Conversation & control
say
Stream-only spoken text in the bubble. Never a tool result; it’s BOR’s voice.
attempt_completion
Signals the turn is done. The <result> is shown to you; the model must not call tools after it.
wait_for_human_input
The model needs something only you can give (a choice, OTP, CAPTCHA, credential, manual click). It states what it needs and ends the turn.
reset_chat
Clear the current conversation.
Surfaces — apps
create_app
Build a full app that opens as a Mac window. Carries <html>, <doc>, <thumbnail>. Requires get_ux_ui_strict_guidelines first.
update_app
Revise an existing app by id (read its doc first). State persists.
launch_app
Open/bring forward an existing app — <launch_app id="app-…"/> (or by name).
delete_app
Remove an app — <delete_app id="app-…"/>.
See Apps.
Surfaces — shortcuts (widgets)
create_shortcut
Build a live card inside the bubble. Carries <html>, <doc>, <thumbnail>. Requires the design gate.
update_shortcut
Revise a shortcut by id (read its doc first).
launch_shortcut / delete_shortcut / rename_widget
Re-render, remove, or rename a shortcut.
suggest_shortcut
Offer a shortcut inline (Yes/No) without building it yet.
Legacy aliasescreate_widget/update_widget/launch_widget/delete_widgetexist for the same surfaces. See Shortcuts.
Design gate
get_ux_ui_strict_guidelines
Returns the strict design contract for the active theme — the shortcut-card spec, the app icon kit, and the theme handbook. Must be called once before the first surface create/update in a turn.
Themes & identity
set_theme
Set the theme, plus optional wallpaper and fonts.
reset_theme
Return to the default theme.
set_ai_name
Rename the presence — <set_ai_name>Atlas</set_ai_name>.
create_svg
Place a vector graphic / decorative OS item.
See Themes.
Surface data
list_surfaces
List existing apps and shortcuts (so BOR updates instead of cloning).
read_surface_data
Read a surface’s state.json.
mutate_surface_data
Update a surface’s state.json (JSON-pointer based).
Files
read_file
Read a file. device:/ → home, bor:/ → BOR-created files.
read_file_in_chunks
Read a large file by chunk.
read_batch
Read several files at once.
write_file / write_to_file
Create or fully replace a file (content in the CDATA body).
replace_in_file
Surgical SEARCH/REPLACE patch.
delete_file
Remove a file.
list_files / search_files / list_code_definition_names
List a directory, regex-search contents, or list code definitions.
See File editing.
Commands
execute_command
Run a shell command (real bash). Hard 60s return window; still-running commands keep running. background="true" returns in ~15s for long-runners. timeout_seconds force-kills.
wait_until
Pause N seconds (1–600) to let something in motion progress.
read_command_tail
Fetch more output from a prior command by run_id.
list_recent_commands
List the last 8 commands and their run ids.
See Running commands.
Memory
remember / recall / forget
Store, retrieve, or delete a durable fact. See Memory.
Skills
use_skill
Load a skill’s playbook for the current task — <use_skill name="design"/>. See Skills.
MCP
list_mcp_servers / list_mcp_tools
List configured servers, or the tools one server exposes.
use_mcp_tool
Call a tool on a server.
access_mcp_resource
Read a resource by URI from a server.
See MCP.
The browser
browser_action
Drive a headless Chromium: launch (with url), click (with coordinate), type (text in body), scroll_down, scroll_up, close. Returns a screenshot + console logs.
Computer use
screen_capture
Capture the real Mac screen (BOR’s presence hidden by default).
locate_screen_element
Vision-find a UI element; returns click coordinates.
computer_click / computer_type / computer_key
Click at coordinates, type into the focused app, press a shortcut.
open_app
Launch a macOS app — <open_app name="Figma"/>.
computer_use
A goal-directed capture→locate→act→verify loop.
See Computer use.
Web & media
web_search / web_fetch
Search the web, or fetch and read a URL.
generate_image
Generate an image; returns a /api/images/… URL.