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
3 changes: 3 additions & 0 deletions cmd/gh-aw/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -614,6 +614,7 @@ Use "` + string(constants.CLIExtensionPrefix) + ` help all" to show help for all
completionCmd := cli.NewCompletionCommand()
hashCmd := cli.NewHashCommand()
projectCmd := cli.NewProjectCommand()
checksCmd := cli.NewChecksCommand()

// Assign commands to groups
// Setup Commands
Expand Down Expand Up @@ -642,6 +643,7 @@ Use "` + string(constants.CLIExtensionPrefix) + ` help all" to show help for all
logsCmd.GroupID = "analysis"
auditCmd.GroupID = "analysis"
healthCmd.GroupID = "analysis"
checksCmd.GroupID = "analysis"

// Utilities
mcpServerCmd.GroupID = "utilities"
Expand Down Expand Up @@ -669,6 +671,7 @@ Use "` + string(constants.CLIExtensionPrefix) + ` help all" to show help for all
rootCmd.AddCommand(logsCmd)
rootCmd.AddCommand(auditCmd)
rootCmd.AddCommand(healthCmd)
rootCmd.AddCommand(checksCmd)
rootCmd.AddCommand(mcpCmd)
rootCmd.AddCommand(mcpServerCmd)
rootCmd.AddCommand(prCmd)
Expand Down
Loading
Loading