Claude Quick banner
christophergyman christophergyman

Claude Quick

Development community

Description

Orchestrating multiple Claude Code agents in devcontainers.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Claude Quick

TUI for orchestrating multiple Claude Code agents in devcontainers.

![Claude Quick Demo](claude-quick-nozoom.gif)

Features

  • Unified Dashboard - Discover and manage all your devcontainers from one place
  • Git Worktree Isolation - Work on multiple branches in separate containers simultaneously
  • Credential Injection - Securely pass API keys and tokens into containers
  • Interactive Wizard - Guided setup on first run, no manual config required

Prerequisites

  • Go 1.25+
  • Docker
  • devcontainer CLI (npm install -g @devcontainers/cli)
  • tmux (inside your devcontainers)

Quickstart

# Install
go install github.com/christophergyman/claude-quick@latest

# Run
claude-quick

The setup wizard launches automatically on first run. Follow the prompts to configure your search paths, credentials, and settings.

**Tip:** Press `w` anytime to re-open the wizard and modify your configuration.

Configuration

Configuration is stored in `claude-quick.yaml` next to the executable. The wizard handles this for you, but you can also edit it manually.

See [`claude-quick.yaml.example`](claude-quick.yaml.example) for all available options.

Keybindings
Key Action
j/k or / Navigate
Enter Select / Connect
x Stop container or session
r Restart
R Refresh status
w Open setup wizard
n New worktree
d Delete worktree
? Show config
q / Esc Back / Quit
Authentication

Pipe credentials (API keys, tokens) into your devcontainers automatically.

Add credentials via the wizard, or manually in your config:

auth:
  credentials:
    # Read from a file
    - name: ANTHROPIC_API_KEY
      source: file
      value: ~/.claude/.credentials

    # Read from environment variable
    - name: