Skip to content

Your First Workspace

Get up and running with Claudette in a few simple steps.

Launch Claudette and click + Add Repo in the sidebar. Select a local git repository on your machine.

Click the + button next to your repository name in the sidebar to create a new workspace. Claudette will:

  • Create a new git worktree (an isolated copy of your repo on its own branch)
  • Start a fresh Claude Code agent session in that worktree
  • Run your setup script if one is configured (e.g., bun install, pip install -r requirements.txt)

Type a message in the chat panel and press Enter to send it to the agent. Claude Code will start working in the workspace’s isolated worktree.

Try something like:

“Add a health check endpoint at GET /health that returns a JSON response with status and timestamp.”

The agent will create or modify files, and you’ll see its progress streamed in real-time.

Once the agent finishes, click on a workspace to view the diff panel showing all files that were changed. You can:

  • Review each file’s changes in unified diff format
  • See the list of changed files in the right sidebar
  • Open the integrated terminal to test the changes

From here you can:

  • Send more prompts to refine the changes
  • Open a terminal (⌘/Ctrl + `` “) to test manually
  • Merge the worktree branch into your main branch when ready