TheDocumentation Index
Fetch the complete documentation index at: https://docs.tryscott.ai/llms.txt
Use this file to discover all available pages before exploring further.
scott CLI is a single self-contained binary (~50MB). No Node, no Homebrew, no npm required.
Install
/usr/local/bin/scott (or ~/.scott/bin/scott if /usr/local/bin isn’t writable). macOS and Linux supported; Windows coming.
Commands
scott login
Authenticates the CLI via your browser. Opens app.tryscott.ai/auth/cli, then receives the session token over a local loopback so it never leaves your machine via any third party.
~/.scott/credentials.json (mode 0600). Run once per machine.
scott setup
Wires Scott’s skills, rule, and hosted MCP server entry into your coding agent. Run after scott login.
--no-mcp— skip the hosted MCP server entry (write only skills + rule)--mcp-only— write only the MCP server entry (skip skills + rule)--project— configure for the current project instead of globally
scott push
Captures the active Claude Code session in the current directory and creates a planspace from it. Zero flags — the command finds the session, parses the transcript with full attribution, and posts to Scott.
scott push directly. Once scott setup is done, ask your coding agent to “push this to Scott” — the skill loaded by scott setup makes the agent run scott push for you.
scott remove
Inverse of scott setup. Removes Scott’s skills, rule, and MCP entry from the chosen agent without touching the rest of its config.
--no-mcp / --mcp-only / --project flags as setup.
scott logout
Clears the stored credentials at ~/.scott/credentials.json.
Typical workflow
FAQ
Do I need to install anything else?
Do I need to install anything else?
No. The CLI is a single self-contained binary. No Node, no Python, no Homebrew, no npm. macOS and Linux are supported on both Apple Silicon and Intel.
What agent transcripts does scott push detect?
What agent transcripts does scott push detect?
Claude Code today. Codex is wired into the skills layer (
scott setup --codex) but transcript parsing for Codex is on the roadmap.Can I use the CLI without the desktop app?
Can I use the CLI without the desktop app?
Yes. The CLI works on its own — it talks to Scott over HTTPS. After
scott push, open the printed URL in either the web app or the desktop app.What does scott setup write?
What does scott setup write?
Per agent:
- A rule file (e.g.
.claude/rules/scott.mdfor Claude Code) - Two skills (
scott-pushandscott-fetch) so the agent knows when to call the CLI vs the MCP tools - One MCP server entry pointing at
https://mcp.tryscott.ai/mcp(skip with--no-mcp)
scott remove --<agent> to reverse it cleanly.Where do credentials live?
Where do credentials live?
~/.scott/credentials.json (mode 0600, parent dir 0700). Cleared by scott logout.