Skip to content
Merged
Show file tree
Hide file tree
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: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ Run N parallel Claude Code agents on the same task, then select the best result
## Quick start

```bash
# 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
# Install globally
npm install -g thinktank-ai

# Or run without installing
npx thinktank-ai run "fix the authentication bypass"

# Run 3 parallel agents on a task
thinktank run "fix the authentication bypass"
Expand Down
16 changes: 13 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
{
"name": "thinktank",
"name": "thinktank-ai",
"version": "0.1.0",
"description": "Ensemble AI coding — run N parallel Claude Code agents, select the best result via consensus + test execution",
"description": "Ensemble AI coding — run N parallel Claude Code agents, select the best result via Copeland pairwise scoring",
"type": "module",
"bin": {
"thinktank": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/that-github-user/thinktank.git"
},
"homepage": "https://github.com/that-github-user/thinktank",
"bugs": {
"url": "https://github.com/that-github-user/thinktank/issues"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
Expand All @@ -26,7 +34,9 @@
"author": "",
"license": "MIT",
"files": [
"dist",
"dist/**/*.js",
"dist/**/*.d.ts",
"!dist/**/*.test.*",
"README.md",
"LICENSE"
],
Expand Down
Loading