File size: 1,314 Bytes
ee8f748 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | package cmd
import (
"fmt"
"log/slog"
"strings"
"github.com/spf13/cobra"
)
var runCmd = &cobra.Command{
Use: "run [prompt...]",
Short: "Run a single non-interactive prompt",
Long: `Run a single prompt in non-interactive mode and exit.
The prompt can be provided as arguments or piped from stdin.`,
Example: `
# Run a simple prompt
crush run Explain the use of context in Go
# Pipe input from stdin
echo "What is this code doing?" | crush run
# Run with quiet mode (no spinner)
crush run -q "Generate a README for this project"
`,
RunE: func(cmd *cobra.Command, args []string) error {
quiet, _ := cmd.Flags().GetBool("quiet")
app, err := setupApp(cmd)
if err != nil {
return err
}
defer app.Shutdown()
if !app.Config().IsConfigured() {
return fmt.Errorf("no providers configured - please run 'crush' to set up a provider interactively")
}
prompt := strings.Join(args, " ")
prompt, err = MaybePrependStdin(prompt)
if err != nil {
slog.Error("Failed to read from stdin", "error", err)
return err
}
if prompt == "" {
return fmt.Errorf("no prompt provided")
}
// Run non-interactive flow using the App method
return app.RunNonInteractive(cmd.Context(), prompt, quiet)
},
}
func init() {
runCmd.Flags().BoolP("quiet", "q", false, "Hide spinner")
}
|