diff --git a/README.md b/README.md index 845c849..752b6b4 100644 --- a/README.md +++ b/README.md @@ -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" diff --git a/package.json b/package.json index 735332d..c2fe19f 100644 --- a/package.json +++ b/package.json @@ -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", @@ -26,7 +34,9 @@ "author": "", "license": "MIT", "files": [ - "dist", + "dist/**/*.js", + "dist/**/*.d.ts", + "!dist/**/*.test.*", "README.md", "LICENSE" ],