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>
22 lines
774 B
Go
22 lines
774 B
Go
// Package gocmd provides Go development commands with enhanced output.
|
|
//
|
|
// Note: Package named gocmd because 'go' is a reserved keyword.
|
|
//
|
|
// Commands:
|
|
// - test: Run tests with colour-coded coverage summary
|
|
// - cov: Run tests with detailed coverage reports (HTML, thresholds)
|
|
// - fmt: Format code using goimports or gofmt
|
|
// - lint: Run golangci-lint
|
|
// - install: Install binary to $GOPATH/bin
|
|
// - mod: Module management (tidy, download, verify, graph)
|
|
// - work: Workspace management (sync, init, use)
|
|
//
|
|
// Sets MACOSX_DEPLOYMENT_TARGET to suppress linker warnings on macOS.
|
|
package gocmd
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
// AddCommands registers the 'go' command and all subcommands.
|
|
func AddCommands(root *cobra.Command) {
|
|
AddGoCommands(root)
|
|
}
|