tagteam 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.
- package/LICENSE +21 -0
- package/README.md +101 -0
- package/dist/index.js +1326 -0
- package/dist/index.js.map +1 -0
- package/package.json +55 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Christopher Saylor
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
# tagteam
|
|
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.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g tagteam
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Or run directly:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npx tagteam "your prompt here"
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Prerequisites
|
|
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
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
### Interactive mode
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
tagteam
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Launches an interactive TUI where you can type prompts and see responses from both agents side by side.
|
|
32
|
+
|
|
33
|
+
### One-shot prompt
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
tagteam "explain how this codebase handles authentication"
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Discussion mode
|
|
40
|
+
|
|
41
|
+
Have Claude and Codex discuss a topic in rounds until they reach consensus:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
tagteam discuss "what's the best approach for caching in this app"
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### Session management
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
# Resume the most recent session
|
|
51
|
+
tagteam continue
|
|
52
|
+
|
|
53
|
+
# List recent sessions
|
|
54
|
+
tagteam history
|
|
55
|
+
|
|
56
|
+
# Resume a specific session by ID
|
|
57
|
+
tagteam resume <id>
|
|
58
|
+
|
|
59
|
+
# Show full transcript
|
|
60
|
+
tagteam show <id>
|
|
61
|
+
|
|
62
|
+
# Export transcript as markdown
|
|
63
|
+
tagteam show <id> --markdown
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
### Configuration
|
|
67
|
+
|
|
68
|
+
Configuration is stored in `~/.tagteam/config.toml`.
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
# Interactive config editor
|
|
72
|
+
tagteam config
|
|
73
|
+
|
|
74
|
+
# Show current config
|
|
75
|
+
tagteam config show
|
|
76
|
+
|
|
77
|
+
# Set a value
|
|
78
|
+
tagteam config set claude.model sonnet
|
|
79
|
+
tagteam config set codex.model gpt-5.3-codex
|
|
80
|
+
tagteam config set discussion.max_rounds 10
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
### CLI options
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
tagteam --claude-model <model> # Override Claude model
|
|
87
|
+
tagteam --codex-model <model> # Override Codex model
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
## Interactive commands
|
|
91
|
+
|
|
92
|
+
While in a session, type these slash commands:
|
|
93
|
+
|
|
94
|
+
- `/help` - List available commands
|
|
95
|
+
- `/new` - Start a fresh session
|
|
96
|
+
- `/config` - Open the config editor
|
|
97
|
+
- `Escape` - Interrupt running agents
|
|
98
|
+
|
|
99
|
+
## License
|
|
100
|
+
|
|
101
|
+
MIT
|