// Command gitflow is a CLI tool that discovers Git repositories under a // user-specified parent directory, scans their status, and presents findings // with AI-driven suggestions for next actions. package main import ( "fmt" "os" ) func main() { if err := newRootCmd().Execute(); err != nil { fmt.Fprintln(os.Stderr, "error:", err) os.Exit(1) } }