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>
16 lines
559 B
Go
16 lines
559 B
Go
// Package docs provides documentation management commands for multi-repo workspaces.
|
|
//
|
|
// Commands:
|
|
// - list: Scan repos for README.md, CLAUDE.md, CHANGELOG.md, docs/
|
|
// - sync: Copy docs/ files from all repos to core-php/docs/packages/
|
|
//
|
|
// Works with repos.yaml to discover repositories and sync documentation
|
|
// to a central location for unified documentation builds.
|
|
package docs
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
// AddCommands registers the 'docs' command and all subcommands.
|
|
func AddCommands(root *cobra.Command) {
|
|
root.AddCommand(docsCmd)
|
|
}
|