tagteam 0.1.0 → 0.2.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.
- package/README.md +48 -7
- package/dist/index.js +382 -97
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# tagteam
|
|
2
2
|
|
|
3
|
-
Orchestrate
|
|
3
|
+
Orchestrate AI agents in collaborative sessions. Pick any two from Claude, Codex, and Gemini — send a prompt to both simultaneously, then let them build on each other's responses in multi-round discussions.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -16,9 +16,11 @@ npx tagteam "your prompt here"
|
|
|
16
16
|
|
|
17
17
|
## Prerequisites
|
|
18
18
|
|
|
19
|
-
- Node.js >=
|
|
20
|
-
-
|
|
21
|
-
- [
|
|
19
|
+
- Node.js >= 20
|
|
20
|
+
- At least two of the following CLIs installed and authenticated:
|
|
21
|
+
- [Claude Code](https://docs.anthropic.com/en/docs/claude-code) (Anthropic)
|
|
22
|
+
- [Codex](https://github.com/openai/codex) (OpenAI)
|
|
23
|
+
- [Gemini CLI](https://github.com/google-gemini/gemini-cli) (Google)
|
|
22
24
|
|
|
23
25
|
## Usage
|
|
24
26
|
|
|
@@ -36,9 +38,24 @@ Launches an interactive TUI where you can type prompts and see responses from bo
|
|
|
36
38
|
tagteam "explain how this codebase handles authentication"
|
|
37
39
|
```
|
|
38
40
|
|
|
41
|
+
### Choosing agents
|
|
42
|
+
|
|
43
|
+
By default, tagteam uses Claude and Codex. Use `--agents` to pick a different pair:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
tagteam --agents claude,gemini "compare these approaches"
|
|
47
|
+
tagteam --agents codex,gemini "review this code"
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
You can also set the default pair in your config:
|
|
51
|
+
|
|
52
|
+
```toml
|
|
53
|
+
agents = ["claude", "gemini"]
|
|
54
|
+
```
|
|
55
|
+
|
|
39
56
|
### Discussion mode
|
|
40
57
|
|
|
41
|
-
Have
|
|
58
|
+
Have your agents discuss a topic in rounds until they reach consensus:
|
|
42
59
|
|
|
43
60
|
```bash
|
|
44
61
|
tagteam discuss "what's the best approach for caching in this app"
|
|
@@ -65,7 +82,7 @@ tagteam show <id> --markdown
|
|
|
65
82
|
|
|
66
83
|
### Configuration
|
|
67
84
|
|
|
68
|
-
Configuration is stored in `~/.tagteam/config.toml
|
|
85
|
+
Configuration is stored in `~/.tagteam/config.toml` (or `%APPDATA%\tagteam\config.toml` on Windows).
|
|
69
86
|
|
|
70
87
|
```bash
|
|
71
88
|
# Interactive config editor
|
|
@@ -75,16 +92,20 @@ tagteam config
|
|
|
75
92
|
tagteam config show
|
|
76
93
|
|
|
77
94
|
# Set a value
|
|
95
|
+
tagteam config set agents claude,gemini
|
|
78
96
|
tagteam config set claude.model sonnet
|
|
79
97
|
tagteam config set codex.model gpt-5.3-codex
|
|
98
|
+
tagteam config set gemini.model gemini-2.5-pro
|
|
80
99
|
tagteam config set discussion.max_rounds 10
|
|
81
100
|
```
|
|
82
101
|
|
|
83
102
|
### CLI options
|
|
84
103
|
|
|
85
104
|
```bash
|
|
105
|
+
tagteam --agents claude,gemini # Choose agent pair
|
|
86
106
|
tagteam --claude-model <model> # Override Claude model
|
|
87
107
|
tagteam --codex-model <model> # Override Codex model
|
|
108
|
+
tagteam --gemini-model <model> # Override Gemini model
|
|
88
109
|
```
|
|
89
110
|
|
|
90
111
|
## Interactive commands
|
|
@@ -93,9 +114,29 @@ While in a session, type these slash commands:
|
|
|
93
114
|
|
|
94
115
|
- `/help` - List available commands
|
|
95
116
|
- `/new` - Start a fresh session
|
|
96
|
-
- `/config` - Open the config editor
|
|
117
|
+
- `/config` - Open the config editor (changes take effect immediately)
|
|
118
|
+
- `/copy` - Copy conversation to clipboard
|
|
119
|
+
- `/exit` - Exit the app
|
|
97
120
|
- `Escape` - Interrupt running agents
|
|
98
121
|
|
|
122
|
+
## Platform Notes
|
|
123
|
+
|
|
124
|
+
**macOS** — Works out of the box.
|
|
125
|
+
|
|
126
|
+
**Linux** — Clipboard support requires `xclip` or `xsel`:
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
sudo apt install xclip # Debian/Ubuntu
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
If `better-sqlite3` doesn't have a prebuilt binary for your architecture, you'll need build tools:
|
|
133
|
+
|
|
134
|
+
```bash
|
|
135
|
+
sudo apt install build-essential python3
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
**Windows** — Recommended to use [Windows Terminal](https://aka.ms/terminal) for best rendering. If `better-sqlite3` fails to install, ensure you have the [Visual Studio Build Tools](https://visualstudio.microsoft.com/visual-cpp-build-tools/) (C++ workload) installed.
|
|
139
|
+
|
|
99
140
|
## License
|
|
100
141
|
|
|
101
142
|
MIT
|