Skip to content
This repository was archived by the owner on Apr 19, 2026. It is now read-only.

Commit d537ff2

Browse files
jpleva91claude
andcommitted
fix: crush driver uses crush run --quiet not -p
Crush CLI syntax is `crush run "prompt"` (positional arg to run subcommand), not `crush -p "prompt"` which fails with "unknown shorthand flag". Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 6334c17 commit d537ff2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cmd/shellforge/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"github.com/AgentGuardHQ/shellforge/internal/scheduler"
2020
)
2121

22-
var version = "0.4.1"
22+
var version = "0.4.2"
2323

2424
func main() {
2525
if len(os.Args) < 2 {
@@ -494,10 +494,10 @@ var drivers = map[string]driverConfig{
494494
},
495495
"crush": {
496496
binary: "crush",
497-
buildCmd: func(p string) []string { return []string{"-p", p, "-q"} },
497+
buildCmd: func(p string) []string { return []string{"run", "--quiet", p} },
498498
interactive: []string{},
499499
hasHooks: true,
500-
initHint: "agentguard crush-init",
500+
initHint: "",
501501
},
502502
}
503503

0 commit comments

Comments
 (0)