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>
87 lines
1.7 KiB
Go
87 lines
1.7 KiB
Go
package docs
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// Flag variable for list command
|
|
var docsListRegistryPath string
|
|
|
|
var docsListCmd = &cobra.Command{
|
|
Use: "list",
|
|
Short: "List documentation across repos",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
return runDocsList(docsListRegistryPath)
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
docsListCmd.Flags().StringVar(&docsListRegistryPath, "registry", "", "Path to repos.yaml")
|
|
}
|
|
|
|
func runDocsList(registryPath string) error {
|
|
reg, _, err := loadRegistry(registryPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Printf("\n%-20s %-8s %-8s %-10s %s\n",
|
|
headerStyle.Render("Repo"),
|
|
headerStyle.Render("README"),
|
|
headerStyle.Render("CLAUDE"),
|
|
headerStyle.Render("CHANGELOG"),
|
|
headerStyle.Render("docs/"),
|
|
)
|
|
fmt.Println(strings.Repeat("─", 70))
|
|
|
|
var withDocs, withoutDocs int
|
|
for _, repo := range reg.List() {
|
|
info := scanRepoDocs(repo)
|
|
|
|
readme := docsMissingStyle.Render("—")
|
|
if info.Readme != "" {
|
|
readme = docsFoundStyle.Render("✓")
|
|
}
|
|
|
|
claude := docsMissingStyle.Render("—")
|
|
if info.ClaudeMd != "" {
|
|
claude = docsFoundStyle.Render("✓")
|
|
}
|
|
|
|
changelog := docsMissingStyle.Render("—")
|
|
if info.Changelog != "" {
|
|
changelog = docsFoundStyle.Render("✓")
|
|
}
|
|
|
|
docsDir := docsMissingStyle.Render("—")
|
|
if len(info.DocsFiles) > 0 {
|
|
docsDir = docsFoundStyle.Render(fmt.Sprintf("%d files", len(info.DocsFiles)))
|
|
}
|
|
|
|
fmt.Printf("%-20s %-8s %-8s %-10s %s\n",
|
|
repoNameStyle.Render(info.Name),
|
|
readme,
|
|
claude,
|
|
changelog,
|
|
docsDir,
|
|
)
|
|
|
|
if info.HasDocs {
|
|
withDocs++
|
|
} else {
|
|
withoutDocs++
|
|
}
|
|
}
|
|
|
|
fmt.Println()
|
|
fmt.Printf("%s %d with docs, %d without\n",
|
|
dimStyle.Render("Coverage:"),
|
|
withDocs,
|
|
withoutDocs,
|
|
)
|
|
|
|
return nil
|
|
}
|