package cli import ( "fmt" "github.com/thepeterstone/claudomator/internal/version" "github.com/spf13/cobra" ) func newVersionCmd() *cobra.Command { return &cobra.Command{ Use: "version", Short: "Show the version of claudomator", Run: func(cmd *cobra.Command, args []string) { fmt.Printf("claudomator version %s\n", version.Version()) }, } }