brainstorming 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +133 -0
  3. package/dist/index.js +1495 -0
  4. package/package.json +48 -0
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "brainstorming",
3
+ "version": "0.1.0",
4
+ "description": "A terminal group chat where Claude Code, Codex, Antigravity and Ollama collaborate in one shared conversation over your codebase.",
5
+ "type": "module",
6
+ "bin": { "brainstorming": "./dist/index.js" },
7
+ "files": ["dist", "README.md", "LICENSE"],
8
+ "engines": { "node": ">=20" },
9
+ "scripts": {
10
+ "demo": "tsx src/index.ts --demo",
11
+ "start": "tsx src/index.ts",
12
+ "build": "tsup",
13
+ "prepublishOnly": "tsup && cp ../../README.md ../../LICENSE ."
14
+ },
15
+ "dependencies": {
16
+ "@anthropic-ai/claude-agent-sdk": "^0.3.210",
17
+ "ink": "^6.0.0",
18
+ "ollama": "^0.6.0",
19
+ "react": "^19.0.0",
20
+ "zod": "^4.0.0"
21
+ },
22
+ "devDependencies": {
23
+ "@brainstorming/adapters": "workspace:*",
24
+ "@brainstorming/core": "workspace:*",
25
+ "@brainstorming/tui": "workspace:*",
26
+ "@types/react": "^19.0.0",
27
+ "tsup": "^8.0.0",
28
+ "tsx": "^4.19.0"
29
+ },
30
+ "keywords": [
31
+ "ai",
32
+ "agents",
33
+ "multi-agent",
34
+ "tui",
35
+ "claude",
36
+ "codex",
37
+ "ollama",
38
+ "antigravity",
39
+ "coding-agent",
40
+ "cli"
41
+ ],
42
+ "author": "aliildan",
43
+ "license": "MIT",
44
+ "repository": { "type": "git", "url": "git+https://github.com/aliildan/brainstorming.git" },
45
+ "homepage": "https://github.com/aliildan/brainstorming#readme",
46
+ "bugs": { "url": "https://github.com/aliildan/brainstorming/issues" },
47
+ "publishConfig": { "access": "public" }
48
+ }