Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
},
Expand Down
4 changes: 2 additions & 2 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down