CLI Commands

This page covers the dedicated Feynman CLI commands and flags. Workflow commands like feynman deepresearch are also documented in the Slash Commands reference since they map directly to REPL slash commands.

Core commands

CommandDescription
feynmanLaunch the interactive REPL
feynman chat [prompt]Start chat explicitly, optionally with an initial prompt
feynman helpShow CLI help
feynman setupRun the guided setup wizard
feynman setup previewInstall or verify preview dependencies
feynman doctorDiagnose config, auth, Pi runtime, and preview dependencies
feynman statusShow the current setup summary (model, auth, packages)

Model management

CommandDescription
feynman model listList available models in Pi auth storage
feynman model login [id]Authenticate a model provider with OAuth or API-key setup
feynman model logout [id]Clear stored auth for a model provider
feynman model set <provider/model>Set the default model for all sessions

These commands manage your model provider configuration. The model set command updates ~/.feynman/settings.json with the new default. It accepts either provider/model-name or provider:model-name, for example anthropic/claude-sonnet-4-20250514 or anthropic:claude-sonnet-4-20250514. Running feynman model login google or feynman model login amazon-bedrock routes directly into the relevant API-key setup flow instead of requiring the interactive picker.

AlphaXiv commands

CommandDescription
feynman alpha loginSign in to alphaXiv
feynman alpha logoutClear alphaXiv auth
feynman alpha statusCheck alphaXiv auth status

AlphaXiv authentication enables Feynman to search and retrieve papers, access discussion threads, and pull citation metadata. The alpha CLI is also available directly in the agent shell for paper search, Q&A, and code inspection.

Package management

CommandDescription
feynman packages listList all available packages and their install status
feynman packages install <preset>Install an optional package preset
feynman update [package]Update installed packages, or a specific package by name

Use feynman packages list to see which optional packages are available on your platform and which are already installed. The default install keeps only the research essentials in core. The all-extras preset installs every optional package available on the current platform and Node runtime.

Utility commands

CommandDescription
feynman search statusShow Pi web-access status and config path

REPL hotkeys

Inside the interactive REPL, use /hotkeys to show the live keyboard map. The default reasoning controls are:

HotkeyAction
Shift+TabCycle thinking/reasoning level
Ctrl+TToggle thinking block visibility

Workflow commands

All research workflow slash commands can also be invoked directly from the CLI:

feynman deepresearch "topic"
feynman lit "topic"
feynman review artifact.md
feynman audit 2401.12345
feynman replicate "claim"
feynman recipe "fine-tune a small model for math reasoning"
feynman compare "topic"
feynman draft "topic"

These are equivalent to launching the REPL and typing the corresponding slash command.

Flags

FlagDescription
--prompt "<text>"Run one prompt and exit (one-shot mode)
`—model <provider/modelprovider:model>`
--thinking <level>Set thinking level: off, minimal, low, medium, high, xhigh
--cwd <path>Set the working directory for all file operations
--session-dir <path>Set the session storage directory
--new-sessionStart a new persisted session
--alpha-loginSign in to alphaXiv and exit
--alpha-logoutClear alphaXiv auth and exit
--alpha-statusShow alphaXiv auth status and exit
--doctorAlias for feynman doctor
--setup-previewAlias for feynman setup preview