tagteam 0.1.0 → 0.3.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # tagteam
2
2
 
3
- Orchestrate Claude and Codex in collaborative AI sessions. Send a prompt to both agents simultaneously, then let them build on each other's responses in multi-round discussions.
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 >= 22
20
- - [Claude Code](https://docs.anthropic.com/en/docs/claude-code) CLI installed and authenticated
21
- - [Codex](https://github.com/openai/codex) CLI installed and authenticated
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,50 @@ 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
+
56
+ ### Addressing agents inline
57
+
58
+ Prefix your prompt with an agent name to send it to just that agent:
59
+
60
+ ```
61
+ gemini what do you think about this approach?
62
+ claude summarize the discussion so far
63
+ ```
64
+
65
+ Name two agents to override the active pair for that prompt (separators: `and`, `/`, `&`, `,`):
66
+
67
+ ```
68
+ gemini and codex review this function
69
+ gemini/claude compare your approaches
70
+ gemini & codex review this function
71
+ ```
72
+
73
+ Add `discuss` to start a multi-round discussion — either word order works:
74
+
75
+ ```
76
+ discuss codex and gemini what's the best caching strategy
77
+ codex and gemini discuss what's the best caching strategy
78
+ ```
79
+
80
+ This works for any agent, not just your active pair. Addressed agents receive the full conversation history for context.
81
+
39
82
  ### Discussion mode
40
83
 
41
- Have Claude and Codex discuss a topic in rounds until they reach consensus:
84
+ Have your agents discuss a topic in rounds until they reach consensus:
42
85
 
43
86
  ```bash
44
87
  tagteam discuss "what's the best approach for caching in this app"
@@ -53,6 +96,12 @@ tagteam continue
53
96
  # List recent sessions
54
97
  tagteam history
55
98
 
99
+ # Delete a specific session
100
+ tagteam history rm <id>
101
+
102
+ # Delete all sessions
103
+ tagteam history clear
104
+
56
105
  # Resume a specific session by ID
57
106
  tagteam resume <id>
58
107
 
@@ -65,7 +114,7 @@ tagteam show <id> --markdown
65
114
 
66
115
  ### Configuration
67
116
 
68
- Configuration is stored in `~/.tagteam/config.toml`.
117
+ Configuration is stored in `~/.tagteam/config.toml` (or `%APPDATA%\tagteam\config.toml` on Windows). Session data is stored in `~/.tagteam/tagteam.db`.
69
118
 
70
119
  ```bash
71
120
  # Interactive config editor
@@ -75,16 +124,30 @@ tagteam config
75
124
  tagteam config show
76
125
 
77
126
  # Set a value
127
+ tagteam config set agents claude,gemini
78
128
  tagteam config set claude.model sonnet
79
129
  tagteam config set codex.model gpt-5.3-codex
130
+ tagteam config set gemini.model gemini-2.5-pro
80
131
  tagteam config set discussion.max_rounds 10
81
132
  ```
82
133
 
134
+ Default values:
135
+
136
+ | Key | Default |
137
+ |-----|---------|
138
+ | `agents` | `claude, codex` |
139
+ | `claude.model` | `sonnet` |
140
+ | `codex.model` | `gpt-5.3-codex` |
141
+ | `gemini.model` | `gemini-2.5-pro` |
142
+ | `discussion.max_rounds` | `10` |
143
+
83
144
  ### CLI options
84
145
 
85
146
  ```bash
147
+ tagteam --agents claude,gemini # Choose agent pair
86
148
  tagteam --claude-model <model> # Override Claude model
87
149
  tagteam --codex-model <model> # Override Codex model
150
+ tagteam --gemini-model <model> # Override Gemini model
88
151
  ```
89
152
 
90
153
  ## Interactive commands
@@ -93,9 +156,29 @@ While in a session, type these slash commands:
93
156
 
94
157
  - `/help` - List available commands
95
158
  - `/new` - Start a fresh session
96
- - `/config` - Open the config editor
159
+ - `/config` - Open the config editor (changes take effect immediately)
160
+ - `/copy` - Copy conversation to clipboard
161
+ - `/exit` - Exit the app
97
162
  - `Escape` - Interrupt running agents
98
163
 
164
+ ## Platform Notes
165
+
166
+ **macOS** — Works out of the box.
167
+
168
+ **Linux** — Clipboard support requires `xclip` or `xsel`:
169
+
170
+ ```bash
171
+ sudo apt install xclip # Debian/Ubuntu
172
+ ```
173
+
174
+ If `better-sqlite3` doesn't have a prebuilt binary for your architecture, you'll need build tools:
175
+
176
+ ```bash
177
+ sudo apt install build-essential python3
178
+ ```
179
+
180
+ **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.
181
+
99
182
  ## License
100
183
 
101
184
  MIT