Skip to content

Latest commit

 

History

History
76 lines (51 loc) · 1.61 KB

File metadata and controls

76 lines (51 loc) · 1.61 KB

Quick Start

This guide gets Coder Studio installed, opened, and connected to a first workspace.

Requirements

  • Node.js 24 or newer
  • Optional: at least one supported Provider CLI for agent sessions

Coder Studio can still open files and terminals without an AI CLI installed.

Install

npm install -g @spencer-kit/coder-studio

Open Coder Studio

coder-studio open

The browser opens automatically. If it does not, run:

coder-studio status

Open the displayed local URL in your browser.

After Coder Studio opens, continue with First Agent Run to start a recommended first-run provider, inspect output, and review your first Git diff.

Open A Project

  1. On the welcome screen, click Open Workspace.
  2. Select your project folder.
  3. Wait for the file tree, Git panel, and terminal area to load.

Start An AI Session

  1. Open the Agent panel.
  2. Choose a detected provider. For a first trial, Claude or Codex is the recommended path.
  3. Create a session.
  4. Type a task into the session terminal.

If the provider is missing, install the matching CLI and try again.

Useful Commands

coder-studio status
coder-studio logs
coder-studio config
coder-studio stop

To change the port:

coder-studio config --port 8080
coder-studio serve --restart

To set a password before LAN or remote access:

coder-studio config --password <strong-password>
coder-studio serve --restart

Next Steps