@a3t/rapid 0.1.5 → 0.1.7
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 +5 -1
- package/dist/bin.js +1 -1
- package/dist/{chunk-B3WZZMOG.js → chunk-FICHP3SD.js} +546 -60
- package/dist/chunk-FICHP3SD.js.map +1 -0
- package/dist/index.js +1 -1
- package/package.json +4 -3
- package/dist/chunk-B3WZZMOG.js.map +0 -1
package/README.md
CHANGED
|
@@ -75,6 +75,7 @@ rapid dev [options]
|
|
|
75
75
|
**Options:**
|
|
76
76
|
|
|
77
77
|
- `--agent <name>` - Use specific agent (overrides default)
|
|
78
|
+
- `--multi [agents]` - Launch multiple agents (comma-separated, e.g., `claude,aider`)
|
|
78
79
|
- `--list` - List available agents without launching
|
|
79
80
|
- `--local` - Run locally instead of in container (not recommended)
|
|
80
81
|
- `--no-start` - Do not auto-start container if stopped
|
|
@@ -88,7 +89,10 @@ rapid dev
|
|
|
88
89
|
# Use specific agent
|
|
89
90
|
rapid dev --agent aider
|
|
90
91
|
|
|
91
|
-
# Run multiple agents in tmux
|
|
92
|
+
# Run multiple agents in tmux panes (requires tmux)
|
|
93
|
+
rapid dev --multi claude,aider
|
|
94
|
+
|
|
95
|
+
# Show multi-agent instructions
|
|
92
96
|
rapid dev --multi
|
|
93
97
|
|
|
94
98
|
# List available agents
|