Skip to content

Commit 297107b

Browse files
that-github-userunknownclaude
authored
Prepare for npm publish: thinktank-ai package (#146)
- Package name: thinktank-ai (thinktank was taken) - CLI binary name stays: thinktank - Added repository, homepage, bugs metadata - Excluded test files from package (82KB → 35KB) - Updated README install instructions for npm To publish: set NPM_TOKEN secret in GitHub, then: git tag v0.1.0 && git push --tags Closes #139 Co-authored-by: unknown <that-github-user@github.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 4f1b651 commit 297107b

File tree

2 files changed

+18
-7
lines changed

2 files changed

+18
-7
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,11 @@ Run N parallel Claude Code agents on the same task, then select the best result
2626
## Quick start
2727

2828
```bash
29-
# Install from source (npm package coming soon)
30-
git clone https://github.com/that-github-user/thinktank.git
31-
cd thinktank && npm install && npm run build
32-
npm link # makes `thinktank` available globally
29+
# Install globally
30+
npm install -g thinktank-ai
31+
32+
# Or run without installing
33+
npx thinktank-ai run "fix the authentication bypass"
3334

3435
# Run 3 parallel agents on a task
3536
thinktank run "fix the authentication bypass"

package.json

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
{
2-
"name": "thinktank",
2+
"name": "thinktank-ai",
33
"version": "0.1.0",
4-
"description": "Ensemble AI coding — run N parallel Claude Code agents, select the best result via consensus + test execution",
4+
"description": "Ensemble AI coding — run N parallel Claude Code agents, select the best result via Copeland pairwise scoring",
55
"type": "module",
66
"bin": {
77
"thinktank": "./dist/cli.js"
88
},
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/that-github-user/thinktank.git"
12+
},
13+
"homepage": "https://github.com/that-github-user/thinktank",
14+
"bugs": {
15+
"url": "https://github.com/that-github-user/thinktank/issues"
16+
},
917
"scripts": {
1018
"build": "tsc",
1119
"dev": "tsx src/cli.ts",
@@ -26,7 +34,9 @@
2634
"author": "",
2735
"license": "MIT",
2836
"files": [
29-
"dist",
37+
"dist/**/*.js",
38+
"dist/**/*.d.ts",
39+
"!dist/**/*.test.*",
3040
"README.md",
3141
"LICENSE"
3242
],

0 commit comments

Comments
 (0)