You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add goose to supported_commands list in get_installed_agents()
- Add goose flag handling (returns empty string, no bypass flags needed)
- Implement stdin prompt handling for goose in both single and multi-agent modes
- Update help text and error messages to include goose
- Update cleanup logic to handle goose branches
- Update README.md with Goose documentation and examples
Fixes#25
Signed-off-by: Lars Trieloff <lars@trieloff.net>
Copy file name to clipboardExpand all lines: README.md
+12-2Lines changed: 12 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -97,7 +97,7 @@ yolo -w
97
97
yolo --dry-run
98
98
```
99
99
100
-
When you run `yolo` without specifying a command, it scans your system for all installed supported coding agents (codex, claude, copilot, droid, amp, cursor-agent, opencode, gemini, qwen, kimi, crush) and picks one at random. You only live yolo - even choosing your AI assistant is too much commitment!
100
+
When you run `yolo` without specifying a command, it scans your system for all installed supported coding agents (codex, claude, copilot, droid, amp, cursor-agent, opencode, gemini, qwen, kimi, crush, aider, goose) and picks one at random. You only live yolo - even choosing your AI assistant is too much commitment!
101
101
102
102
### Basic Usage
103
103
@@ -223,6 +223,7 @@ Use `--mop` to clean up orphaned worktrees from interrupted sessions or when you
223
223
|`qwen`|`--yolo` (+ `-i` when prompt present) |
224
224
|`kimi`|`--yolo` (+ `--command` when prompt present) |
225
225
|`crush`|`--yolo` (+ Ghostty injection when prompt present) |
226
+
|`goose`|*(no flags - prompts passed via stdin)*|
226
227
|*(other)*|`--yolo`|
227
228
228
229
### Examples
@@ -244,6 +245,13 @@ yolo claude
244
245
yolo claude "fix all the bugs"
245
246
yolo codex --help
246
247
248
+
# Goose examples
249
+
yolo goose "analyze the codebase and suggest improvements"
0 commit comments