Replace leaanthony/clir with spf13/cobra across all command packages. This provides better subcommand handling, built-in shell completion, and a more widely-used CLI framework. Changes: - Update cmd/core.go with cobra root command and completion support - Convert all subcommand packages to use *cobra.Command - Use init() functions for flag registration instead of inline setup - Maintain all existing functionality and flag behaviors Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
611 B
Go
18 lines
611 B
Go
// Package doctor provides environment validation commands.
|
|
//
|
|
// Checks for:
|
|
// - Required tools: git, gh, php, composer, node
|
|
// - Optional tools: pnpm, claude, docker
|
|
// - GitHub access: SSH keys and CLI authentication
|
|
// - Workspace: repos.yaml presence and clone status
|
|
//
|
|
// Run before 'core setup' to ensure your environment is ready.
|
|
// Provides platform-specific installation instructions for missing tools.
|
|
package doctor
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
// AddCommands registers the 'doctor' command and all subcommands.
|
|
func AddCommands(root *cobra.Command) {
|
|
root.AddCommand(doctorCmd)
|
|
}
|