|
|
package cmd |
|
|
|
|
|
import ( |
|
|
"context" |
|
|
"fmt" |
|
|
"io" |
|
|
"log/slog" |
|
|
"os" |
|
|
"path/filepath" |
|
|
|
|
|
tea "github.com/charmbracelet/bubbletea/v2" |
|
|
"github.com/charmbracelet/crush/internal/app" |
|
|
"github.com/charmbracelet/crush/internal/config" |
|
|
"github.com/charmbracelet/crush/internal/db" |
|
|
"github.com/charmbracelet/crush/internal/tui" |
|
|
"github.com/charmbracelet/crush/internal/version" |
|
|
"github.com/charmbracelet/fang" |
|
|
"github.com/charmbracelet/x/term" |
|
|
"github.com/spf13/cobra" |
|
|
) |
|
|
|
|
|
func init() { |
|
|
rootCmd.PersistentFlags().StringP("cwd", "c", "", "Current working directory") |
|
|
rootCmd.PersistentFlags().StringP("data-dir", "D", "", "Custom crush data directory") |
|
|
rootCmd.PersistentFlags().BoolP("debug", "d", false, "Debug") |
|
|
|
|
|
rootCmd.Flags().BoolP("help", "h", false, "Help") |
|
|
rootCmd.Flags().BoolP("yolo", "y", false, "Automatically accept all permissions (dangerous mode)") |
|
|
|
|
|
rootCmd.AddCommand(runCmd) |
|
|
} |
|
|
|
|
|
var rootCmd = &cobra.Command{ |
|
|
Use: "crush", |
|
|
Short: "Terminal-based AI assistant for software development", |
|
|
Long: `Crush is a powerful terminal-based AI assistant that helps with software development tasks. |
|
|
It provides an interactive chat interface with AI capabilities, code analysis, and LSP integration |
|
|
to assist developers in writing, debugging, and understanding code directly from the terminal.`, |
|
|
Example: ` |
|
|
# Run in interactive mode |
|
|
crush |
|
|
|
|
|
# Run with debug logging |
|
|
crush -d |
|
|
|
|
|
# Run with debug logging in a specific directory |
|
|
crush -d -c /path/to/project |
|
|
|
|
|
# Run with custom data directory |
|
|
crush -D /path/to/custom/.crush |
|
|
|
|
|
# Print version |
|
|
crush -v |
|
|
|
|
|
# Run a single non-interactive prompt |
|
|
crush run "Explain the use of context in Go" |
|
|
|
|
|
# Run in dangerous mode (auto-accept all permissions) |
|
|
crush -y |
|
|
`, |
|
|
RunE: func(cmd *cobra.Command, args []string) error { |
|
|
app, err := setupApp(cmd) |
|
|
if err != nil { |
|
|
return err |
|
|
} |
|
|
defer app.Shutdown() |
|
|
|
|
|
|
|
|
program := tea.NewProgram( |
|
|
tui.New(app), |
|
|
tea.WithAltScreen(), |
|
|
tea.WithContext(cmd.Context()), |
|
|
tea.WithMouseCellMotion(), |
|
|
tea.WithFilter(tui.MouseEventFilter), |
|
|
) |
|
|
|
|
|
go app.Subscribe(program) |
|
|
|
|
|
if _, err := program.Run(); err != nil { |
|
|
slog.Error("TUI run error", "error", err) |
|
|
return fmt.Errorf("TUI error: %v", err) |
|
|
} |
|
|
return nil |
|
|
}, |
|
|
} |
|
|
|
|
|
func Execute() { |
|
|
if err := fang.Execute( |
|
|
context.Background(), |
|
|
rootCmd, |
|
|
fang.WithVersion(version.Version), |
|
|
fang.WithNotifySignal(os.Interrupt), |
|
|
); err != nil { |
|
|
os.Exit(1) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func setupApp(cmd *cobra.Command) (*app.App, error) { |
|
|
debug, _ := cmd.Flags().GetBool("debug") |
|
|
yolo, _ := cmd.Flags().GetBool("yolo") |
|
|
dataDir, _ := cmd.Flags().GetString("data-dir") |
|
|
ctx := cmd.Context() |
|
|
|
|
|
cwd, err := ResolveCwd(cmd) |
|
|
if err != nil { |
|
|
return nil, err |
|
|
} |
|
|
|
|
|
cfg, err := config.Init(cwd, dataDir, debug) |
|
|
if err != nil { |
|
|
return nil, err |
|
|
} |
|
|
|
|
|
if cfg.Permissions == nil { |
|
|
cfg.Permissions = &config.Permissions{} |
|
|
} |
|
|
cfg.Permissions.SkipRequests = yolo |
|
|
|
|
|
if err := createDotCrushDir(cfg.Options.DataDirectory); err != nil { |
|
|
return nil, err |
|
|
} |
|
|
|
|
|
|
|
|
conn, err := db.Connect(ctx, cfg.Options.DataDirectory) |
|
|
if err != nil { |
|
|
return nil, err |
|
|
} |
|
|
|
|
|
appInstance, err := app.New(ctx, conn, cfg) |
|
|
if err != nil { |
|
|
slog.Error("Failed to create app instance", "error", err) |
|
|
return nil, err |
|
|
} |
|
|
|
|
|
return appInstance, nil |
|
|
} |
|
|
|
|
|
func MaybePrependStdin(prompt string) (string, error) { |
|
|
if term.IsTerminal(os.Stdin.Fd()) { |
|
|
return prompt, nil |
|
|
} |
|
|
fi, err := os.Stdin.Stat() |
|
|
if err != nil { |
|
|
return prompt, err |
|
|
} |
|
|
if fi.Mode()&os.ModeNamedPipe == 0 { |
|
|
return prompt, nil |
|
|
} |
|
|
bts, err := io.ReadAll(os.Stdin) |
|
|
if err != nil { |
|
|
return prompt, err |
|
|
} |
|
|
return string(bts) + "\n\n" + prompt, nil |
|
|
} |
|
|
|
|
|
func ResolveCwd(cmd *cobra.Command) (string, error) { |
|
|
cwd, _ := cmd.Flags().GetString("cwd") |
|
|
if cwd != "" { |
|
|
err := os.Chdir(cwd) |
|
|
if err != nil { |
|
|
return "", fmt.Errorf("failed to change directory: %v", err) |
|
|
} |
|
|
return cwd, nil |
|
|
} |
|
|
cwd, err := os.Getwd() |
|
|
if err != nil { |
|
|
return "", fmt.Errorf("failed to get current working directory: %v", err) |
|
|
} |
|
|
return cwd, nil |
|
|
} |
|
|
|
|
|
func createDotCrushDir(dir string) error { |
|
|
if err := os.MkdirAll(dir, 0o700); err != nil { |
|
|
return fmt.Errorf("failed to create data directory: %q %w", dir, err) |
|
|
} |
|
|
|
|
|
gitIgnorePath := filepath.Join(dir, ".gitignore") |
|
|
if _, err := os.Stat(gitIgnorePath); os.IsNotExist(err) { |
|
|
if err := os.WriteFile(gitIgnorePath, []byte("*\n"), 0o644); err != nil { |
|
|
return fmt.Errorf("failed to create .gitignore file: %q %w", gitIgnorePath, err) |
|
|
} |
|
|
} |
|
|
|
|
|
return nil |
|
|
} |
|
|
|