reyn chat¶
Start an interactive REPL session attached to an agent. Each user turn is dispatched through the chat router, which classifies the intent and either replies directly, runs a skill, or delegates to another agent.
Memory recall and write happen automatically inside the router phase — see concepts/memory.
Synopsis¶
agent_name is positional and optional. When omitted, reyn attaches to the auto-created default agent.
Options¶
Common runtime flags (--model, --output-language, --llm-timeout, --llm-max-retries) are shared with reyn run-once. See Common flags.
⚠️ Breaking change (
#3924):--grant-file-writewas removed fromreyn chat(andreyn run-once/reyn pipe run/reyn web). Per-invocation permission flags don't scope well in a multi-agent system — measured zero real call sites anywhere in scripts/dogfood/CI, only the flag's own tests. Grant the same capability durably inreyn.yamlinstead:See Protect credentials from sandboxed commands.permissions: file.write: ["<zone-root>"] # scoped to the working tree, #3925's ZoneRoot vocabulary file.read: allow
Chat-specific flags:
| Flag | Default | Description |
|---|---|---|
--cui |
off | Use plain console output (no TUI). Useful for piping output, debugging, or headless environments. |
--no-restore |
off | Skip restoring in-flight skill state AND skip loading the persisted chat transcript this run (neither is deleted — both load normally on the next run without this flag). Useful for debugging or starting a clean session. |
--reset |
off | Wipe in-flight skill state (snapshots + WAL) before starting. Audit logs in .reyn/events/ are preserved. |
--banner |
off | Show the ASCII-art startup banner (gradient REYN logo + agent / model info). |
--eager-embedding-build |
off | Await action embedding index build synchronously on the first turn (pays ~2–5 s once so search_actions is immediately available). |
--exclude-tools NAMES |
— | Comma-separated tool names to hide from the agent's LLM-visible catalog (e.g. web_search,web_fetch). The tools still exist and still run if the agent calls them by name; they are just not offered to the model's discovery surface this session. |
--connect <URL> |
off | Attach to a remote reyn web server over AG-UI (HTTP+SSE) instead of running a local session (e.g. --connect http://127.0.0.1:8080). The positional agent_name selects which agent on the server. Requires pip install reyn[web]. Renders the SAME way as a local session: the inline CUI on an interactive TTY (with the main status bar — agent / model / cost / ctx% / working indicator — streamed over the wire), or the plain console for --cui / a non-TTY / piped output. Status-bar dropdowns and the interactive intervention / /rewind pickers are session-local and degrade to empty/text on a remote attach (a remote closed-set intervention is answered by typing on the input line; /rewind shows a plain text list). See how-to: remote thin client. |
--token <SECRET> |
off | Bearer token for --connect (the secret reyn web prints on launch, or a token configured via gateway.auth.token). Falls back to the REYN_WEB_AUTH_TOKEN env var. A same-machine UDS server may need none. |
Agent workspace¶
Each agent persists state under .reyn/agents/<name>/:
profile.yaml— name, role, optionalallowed_mcp, optionalpreferences(#4206 ③: free-override config — see agent.md §preferences)history.jsonl— append-only conversation log (chat + agent-to-agent messages, with chain_id for cross-agent trace)events.jsonl— runtime events forreyn eventsmemory/— agent-scoped memory layer (MEMORY.md+ body files)runs/— workspaces for spawned skill runs
To resume a previous conversation, attach to the same agent:
The default agent always exists. Create more with reyn agent new.
Slash commands¶
While a session is active, lines starting with / are intercepted and never routed to an agent.
| Command | Effect |
|---|---|
/agent edit role <text> |
Rewrite the attached agent's persona |
/agent new <name> |
Create new agent and attach to it |
/agents |
List loaded agents and which one is currently attached |
/answer <id-prefix> <text> |
Answer a pending ask_user / permission prompt (id-prefix: any unique prefix of the intervention id) |
/attach <name> |
Switch the REPL pointer to another agent (the previous one keeps running in the background) |
/budget [reset] |
Full budget breakdown; /budget reset clears per-process counters (see config/budget) |
/cancel |
Cancel the in-flight turn (same as Esc / Ctrl+C) — reports what was actually cancelled, or that nothing was running |
/clear-history (alias /clear) |
Wipe chat history (destructive; clears in-memory + persistent history and the action-usage table; events/run-state/profile preserved) |
/compact |
Compact the conversation history now to free up the context window (see chat-compaction) |
/concept <term> |
Inline glossary lookup |
/copy [N\|list] |
Copy an agent reply to the clipboard (1 = newest, 2 = one turn back, …) |
/cost |
Quick token + USD cost summary for this agent |
/exit |
Exit the chat (alias: /quit, Ctrl+D) |
/help [<cmd>] |
Slash command help — list all, or focus on one |
/hook on\|off <name> |
Enable/disable a hook for this session (live at the next dispatch; session-scoped — the hook still fires in the agent's other sessions; persists across restart) |
/image <path> (alias /img) |
Attach an image to the next user message (multimodal input; png/jpg/jpeg/gif/webp/svg) |
/list |
List pending interventions |
/memory [list\|view <name>] |
Inspect project memory entries (see concepts/memory) |
/model [<class>] |
Show the session's model class and any override, or set a per-session model-class override with /model <class> (validated against known classes; clears on restart) |
/open <ref> |
Open a generated artifact (html/office/pdf/image — anything the terminal can't render) with the OS's own default app. The Artifacts tab (Art, bottom-chrome drawer) lists refs newest-first; selecting a row runs this for you |
/pending [list\|discard <id>\|claim <id>] |
List / discard / claim stalled cross-channel ops |
/quit |
Exit the chat (alias: /exit, Ctrl+D) |
/reload |
Hot-reload runtime config (.reyn/*.yaml) at the next turn boundary |
/reset confirm |
Reset in-flight run state (snapshots + WAL; audit logs preserved) |
/resident |
Approximate resident-memory breakdown by in-process container — count + shallow sys.getsizeof estimate, session-lifetime and process-global (including the LLM-client Router cache), no threshold, no eviction (#4497) |
/rewind [seq] |
Time-travel to an earlier checkpoint — no arg opens the picker menu; seq jumps directly (see Time-travel · How-to) |
/session new \| switch <sid> \| list |
Open / switch / list conversation sessions for the attached agent (see Sessions) |
/visibility on\|off <tool\|mcp\|category> <name> |
Toggle this session's LLM visibility of a capability (hidden next turn / restored up to the agent's authorized envelope — an envelope-denied capability stays hidden) |
/list / /answer are foundational — they let pending interventions coexist without blocking the prompt. /agents / /attach / /agent are the multi-agent workflow primitives; a spawned/delegated peer's progress is monitored via /agents. /hook / /visibility are session-scoped LLM-catalog controls, mirroring the status bar's hook/tool/mcp/category chips. /copy is a conversation-pane utility; /image enables multimodal input; /open launches a generated artifact with the OS's own default app (local sessions only — see the Artifacts tab).
Multi-agent behavior¶
If the router decides this turn would be better handled by another agent, it emits a messages_to_agents entry instead of (or in addition to) a skills_to_run entry. The receiving agent processes the request asynchronously; its reply is auto-routed back into the originating chain. See concepts/multi-agent for the full model.
A user-initiated chain emits an interim reply_text (the originating agent's first router turn) followed by a synthesized final reply (after delegate responses arrive). This preserves the "you'll see I'm working on it" UX even across hops.
The /attach slash lets you watch a delegate's progress mid-chain — the previous agent's session.run() keeps consuming its inbox, so coming back later still resolves cleanly.
Permission behavior¶
reyn chat is interactive: when a sub-skill needs a permission outside the defaults, the prompt blocks until you respond via the intervention queue. Choices can be persisted to .reyn/approvals.yaml (see permissions reference).
Diagnosing slow startup¶
Set REYN_STARTUP_TIMING=1 before starting reyn chat to get a per-stage breakdown of where startup time went:
The report prints to stdout after the TUI exits (quit normally, Ctrl-C, or a startup exception all trigger it) — the interface owns the screen while it's running, so anything printed earlier would be overwritten or corrupt the display. It lists a fixed set of stages (import, config, registry, plugins, mcp, session, client-prep:transport, client-prep:read-model, client-prep:tui-import, client-prep:app-construct, client-prep:other, tui-boot) each with its seconds and share of wall time, even a stage that took 0.00s — a stage that never printed a line would be indistinguishable from one that ran instantly, which is the more useful fact to preserve. client-prep:other (#3735) is the residual control-flow between the four named client-prep sub-stages, not a fifth independent measurement — the four plus this one always sum to exactly the client-prep span, so it never spills into the overall unaccounted line below. A final unaccounted line is the wall time none of the declared stages explain — the number to look at first if the breakdown itself looks unremarkable but startup was still slow, and the report itself flags it with a ⚠ line when it exceeds 20% of TOTAL (a likely instrumentation coverage gap, not just untimed work). Off by default; when unset, nothing is measured, formatted, or printed.
Examples¶
Start a new session against the default agent:
Attach to a named agent:
Use a stronger model just for this conversation:
See also¶
- Reference: agent CLI —
reyn agent new / list / show / rm - Reference: topology CLI —
reyn topologyto declare communication structure - Reference: multi-agent config —
safety.loop.max_agent_hops - Reference: state-dir —
agents/location - Concepts: multi-agent
- Concepts: memory