Quickstart
July 11, 2026 ยท View on GitHub
This page gets you from install to a useful first senpi session.
Install
Senpi is distributed as an npm package:
npm install -g @code-yeongyu/senpi
Uninstall
Use the package manager that installed senpi:
# npm install -g
npm uninstall -g @code-yeongyu/senpi
# pnpm
pnpm remove -g @code-yeongyu/senpi
# Yarn
yarn global remove @code-yeongyu/senpi
# Bun
bun uninstall -g @code-yeongyu/senpi
Uninstalling senpi leaves settings, credentials, sessions, and installed senpi packages in ~/.senpi/agent/.
Then start senpi in the project directory you want it to work on:
cd /path/to/project
senpi
Authenticate
Senpi can use subscription providers through /login, or API-key providers through environment variables or the auth file.
Option 1: subscription login
Start senpi and run:
/login
Then select a provider. Built-in subscription logins include Claude Pro/Max, ChatGPT Plus/Pro (Codex), and GitHub Copilot.
Option 2: API key
Set an API key before launching senpi:
export ANTHROPIC_API_KEY=sk-ant-...
senpi
You can also run /login and select an API-key provider to store the key in ~/.senpi/agent/auth.json.
See Providers for all supported providers, environment variables, and cloud-provider setup.
First session
Once senpi starts, type a request and press Enter:
Summarize this repository and tell me how to run its checks.
By default, senpi gives the model four tools:
read- read fileswrite- create or overwrite filesedit- patch filesbash- run shell commands
Additional built-in read-only tools (grep, find, ls) are available through tool options. Senpi runs in your current working directory and can modify files there. Use git or another checkpointing workflow if you want easy rollback.
Give senpi project instructions
Senpi loads context files at startup. Add an AGENTS.md file to tell it how to work in a project:
# Project Instructions
- Run `npm run check` after code changes.
- Do not run production migrations locally.
- Keep responses concise.
Senpi loads:
~/.senpi/agent/AGENTS.mdfor global instructionsAGENTS.mdorCLAUDE.mdfrom parent directories and the current directory
Restart senpi, or run /reload, after changing context files.
Common things to try
Reference files
Type @ in the editor to fuzzy-search files, or pass files on the command line:
senpi @README.md "Summarize this"
senpi @src/app.ts @src/app.test.ts "Review these together"
Images or text can be pasted with Ctrl+V (Alt+V on Windows); images can also be dragged into supported terminals.
Run shell commands
In interactive mode:
!npm run lint
The command output is sent to the model. Use !!command to run a command without adding its output to the model context.
Switch models
Use /model or Ctrl+L to choose a model. Use Shift+Tab to cycle thinking level. Use Ctrl+P / Shift+Ctrl+P to cycle through favorite models.
Continue later
Sessions are saved automatically:
senpi -c # Continue most recent session
senpi -r # Browse previous sessions
senpi --name "my task" # Set session display name at startup
senpi --session <path|id> # Open a specific session
Inside senpi, use /resume, /new, /tree, /fork, and /clone to manage sessions.
Non-interactive mode
For one-shot prompts:
senpi -p "Summarize this codebase"
cat README.md | senpi -p "Summarize this text"
senpi -p @screenshot.png "What's in this image?"
Use --mode json for JSON event output or --mode rpc for process integration.
Next steps
- Using Senpi - interactive mode, slash commands, sessions, context files, and CLI reference.
- Providers - authentication and model setup.
- Settings - global and project configuration.
- Keybindings - shortcuts and customization.
- Senpi Packages - install shared extensions, skills, prompts, and themes.
Platform notes: Windows, Termux, tmux, Terminal setup, Shell aliases.