Skip to content
2026 Respawn OSS

Quickstart

Terminal window
brew tap respawn-llc/tap
brew install respawn-llc/tap/kent

The kent-bin AUR package is community-maintained.

Terminal window
yay -S kent-bin

These versions are not auto-updated. Please keep them updated manually by re-running install scripts.

Linux:

Terminal window
curl -fsSL https://kent.sh/install.sh | sh

Windows:

Terminal window
irm https://kent.sh/install.ps1 | iex

Check the installed version with: kent --version

2. Optional: Install the Background Service

Section titled “2. Optional: Install the Background Service”

Run this if you want one shared Kent server to start at login:

Terminal window
kent service install

It uses 20 MB of RAM when idle, lets unlimited frontends stay lightweight by connecting to one orchestrator, makes spawning and controlling subagents and background shells reliable, and enables the use of the desktop app. See Kent Server for details and service management commands.

The desktop app lets you use Kent’s Workflows and Tasks feature to build agentic loops and deterministic pipelines to fully automate processes and scale to 10s or 100s of agents.

Kent Desktop showing a project kanban board with tasks grouped by workflow stage

Download the installer for macOS Apple Silicon, Linux x86_64, or Windows x64 at kent.sh/desktop, or install the macOS app via Homebrew:

Terminal window
brew install --cask respawn-llc/tap/kent-desktop

Homebrew installs update through brew upgrade, standalone installs self-update.

Start Kent CLI with: kent. The first run will ask you to pick auth option and walk you through onboarding. The session picker shows when a newer Kent server release is available; update Kent through the installation channel you used.

Supported auth options:

  • OpenAI/Codex subscription OAuth via the startup sign-in picker.
  • OpenAI-based API-key auth via OPENAI_API_KEY. If you prefer API-key auth, export OPENAI_API_KEY before launch and kent will ask to use it.
  • No auth for custom providers. This option supports any provider like ollama, omlx local models, or third-party providers like GLM coding plan. The only requirement is that the provider supports the OpenAI Responses format.
  • Press F1 to invoke the help menu.
  • Use Enter to steer the model, Tab to queue messages. Slash commands can be queued too!
  • Use Shift+Tab to toggle between detailed transcript mode and lean ongoing mode.
  • Type $ <command> to execute a shell command and show its output to the model.
  • Press Esc twice to enter Edit mode, which lets you go back in time, edit a previous message, and fork the session starting with it. Use Up/Down to walk through user messages. File edits are not rolled back.
  • Use the Up/Down arrow keys to select and resend previous prompts.
  • Press Ctrl+V, Ctrl+D, Alt+V, or Alt+D to paste clipboard content: images become temporary file paths and text is inserted at the cursor. Terminal-native bracketed paste remains normal text input.
  • Use /review to start a code review. In a non-empty session, Kent opens that review in a fresh child session. After the review finishes, you can use /back to teleport to the original session.
  • /name <new-name> will set your session name in the picker and terminal title.
  • /autocompaction will toggle compaction, and /compact will trigger one. If autocompact is off, you can go above 100% context usage if model allows it. Going above 100% will cost more and degrade model performance.
  • Run /status to get detailed info about the session.

For the full command reference, see Slash Commands.

Kent reads settings from ~/.kent/config.toml. The full reference is on the Configuration page.

On first launch, the setup wizard can optionally symlink existing skills and slash-command directories from ~/.claude, ~/.codex, or ~/.agents into Kent’s ~/.kent layout.

Kent discovers skills from:

  • <workspace>/.kent/skills
  • ~/.kent/skills
  • <persistence-root>/.generated/skills

The generated root is managed by Kent. Copy a generated skill into a workspace or global skill root before customizing it.

You can disable skills for new sessions in config.toml:

[skills]
creating-skills = false

Changes take effect when a session starts or after compaction.

Kent discovers custom slash commands from Markdown files in:

  • <workspace>/.kent/prompts
  • <workspace>/.kent/commands
  • ~/.kent/prompts
  • ~/.kent/commands

More info on the Slash commands page.

  • Use /supervisor to toggle its invocation for the current session. Supervisor is a feature that will automatically review the edits made by the model. It increases costs by ~15% (if using the main model) but improves results. By default supervisor uses the same model as the main one. That may be too costly / too slow for you. Configuration page contains instructions on how to change supervisor model.

Once you’re comfortable driving the traditional agentic CLI, consider upgrading to workflows.