diff --git a/cmd/check.go b/cmd/check.go index df1d20d..cde8175 100644 --- a/cmd/check.go +++ b/cmd/check.go @@ -63,8 +63,8 @@ func init() { var checkCmd = &cobra.Command{ Use: "check", - Short: "TODO: Add a short description here", - Long: `TODO: Add a longer description here`, + Short: "Check links on a URL or sitemap", + Long: `Check all links on a webpage or sitemap for broken links. Validates HTTP status codes and displays results with color-coded output.`, Run: func(cmd *cobra.Command, args []string) { _ = cmd.Help() }, diff --git a/cmd/root.go b/cmd/root.go index 1cea8d8..ebeab04 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -13,8 +13,8 @@ var Version = "0.1.0" var rootCmd = &cobra.Command{ Use: "brokli", Version: Version, - Short: "TODO: Add a short description here", - Long: `TODO: Add a longer description here`, + Short: "A fast, concurrent broken link checker for websites and sitemaps", + Long: `Brokli is a CLI tool that helps developers validate all links on a page or sitemap during development. It checks HTTP status codes concurrently and displays results with color-coded output, making it easy to spot broken links before deployment.`, Run: func(cmd *cobra.Command, args []string) { // If no subcommand is provided, show help _ = cmd.Help()