Skip to content

Commit 9d48ba9

Browse files
that-github-userunknownclaude
authored
Fix README: install from source instructions, document model options (#44)
- Replace npm install -g (not yet published) with clone + build + link - Add Models section documenting --model flag options - Note npm package coming soon Closes #36 Co-authored-by: unknown <that-github-user@github.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 7ce4779 commit 9d48ba9

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ Run N parallel Claude Code agents on the same task, then select the best result
2525
## Quick start
2626

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

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

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

45+
### Models
46+
47+
Use `--model` to select a Claude model: `sonnet` (default), `opus`, `haiku`, or a full model ID like `claude-opus-4-6`.
48+
4249
## How it works
4350

4451
```

0 commit comments

Comments
 (0)