Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ Run N parallel Claude Code agents on the same task, then select the best result
## Quick start

```bash
npm install -g thinktank
# Install from source (npm package coming soon)
git clone https://github.com/that-github-user/thinktank.git
cd thinktank && npm install && npm run build
npm link # makes `thinktank` available globally

# Run 3 parallel agents on a task
thinktank run "fix the authentication bypass"
Expand All @@ -39,6 +42,10 @@ thinktank apply

Requires [Claude Code CLI](https://docs.anthropic.com/en/docs/claude-code) installed and authenticated.

### Models

Use `--model` to select a Claude model: `sonnet` (default), `opus`, `haiku`, or a full model ID like `claude-opus-4-6`.

## How it works

```
Expand Down
Loading