-
Notifications
You must be signed in to change notification settings - Fork 0
chat
github-actions[bot] edited this page Feb 28, 2026
·
1 revision
Interactive AI chat directly in your terminal. Connects to the running daemon via JSON-RPC WebSocket and streams AI responses in real time.
clawd chat # new interactive session
clawd chat --resume <session-id> # resume an existing session
clawd chat --session-list # pick from recent sessions
clawd chat --non-interactive "prompt" # single-shot query, print response, exit
clawd chat --provider codex # use a specific AI providerThe full-screen terminal UI shows:
- Header — session ID and current status (streaming indicator)
- Message history — scrollable list of user and assistant messages
- Input bar — type your message and press Enter to send
-
Tool calls — collapsed by default; press
tto expand the last tool call
| Key | Action |
|---|---|
Enter |
Send message |
Ctrl+C |
Pause session and exit |
t |
Toggle last tool call expansion |
Type exit or quit + Enter |
End session and exit |
Send a single prompt and print the response — useful for scripting:
clawd chat --non-interactive "Explain async/await in Rust"
clawd chat --non-interactive "$(cat error.txt)"Exit code 0 on success, non-zero on error.
# Resume by ID
clawd chat --resume sess-abc123
# Pick from recent sessions interactively
clawd chat --session-list- Uses existing
session.create/session.sendRPC methods — no new RPC methods added - Streaming via
session.message.deltapush events -
session.message.completesignals the end of a response - Terminal UI: ratatui + crossterm
- Spinner: indicatif
- clawd explain — explain a file or error in the terminal
- RPC Reference — session.* methods
- CLI Reference — all clawd commands
ClawDE · GitHub · MIT License
ClawDE
Getting started
Reference
- Architecture
- Daemon-Reference
- Folder-Structure
- Providers
- Multi-Account
- Security
- Features
- Features/Daemon
- Features/Session-Manager
- Features/Mode-System
- Features/Repo-Intelligence
- Features/Projects
- Features/Remote-Access
- Features/Desktop-App
- Features/Provider-Knowledge
- Features/Coding-Standards
- Roadmap
Branding
Contributing