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
8 changes: 4 additions & 4 deletions cmd/gh-aw/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ var enableCmd = &cobra.Command{
` + cli.WorkflowIDExplanation + `

Examples:
` + string(constants.CLIExtensionPrefix) + ` enable # Enable all workflows
` + string(constants.CLIExtensionPrefix) + ` enable # Enable all workflows
` + string(constants.CLIExtensionPrefix) + ` enable ci-doctor # Enable specific workflow
` + string(constants.CLIExtensionPrefix) + ` enable ci-doctor.md # Enable specific workflow (alternative format)
` + string(constants.CLIExtensionPrefix) + ` enable ci-doctor daily # Enable multiple workflows
Expand All @@ -211,7 +211,7 @@ Any in-progress runs will be cancelled before disabling.
` + cli.WorkflowIDExplanation + `

Examples:
` + string(constants.CLIExtensionPrefix) + ` disable # Disable all workflows
` + string(constants.CLIExtensionPrefix) + ` disable # Disable all workflows
` + string(constants.CLIExtensionPrefix) + ` disable ci-doctor # Disable specific workflow
` + string(constants.CLIExtensionPrefix) + ` disable ci-doctor.md # Disable specific workflow (alternative format)
` + string(constants.CLIExtensionPrefix) + ` disable ci-doctor daily # Disable multiple workflows
Expand Down Expand Up @@ -364,8 +364,8 @@ Examples:
gh aw run daily-perf-improver.md # Alternative format
gh aw run daily-perf-improver --ref main # Run on specific branch
gh aw run daily-perf-improver --repeat 3 # Run 4 times total (1 initial + 3 repeats)
gh aw run daily-perf-improver --enable-if-needed # Enable if disabled, run, then restore state
gh aw run daily-perf-improver --auto-merge-prs # Auto-merge any PRs created during execution
gh aw run daily-perf-improver --enable-if-needed # Enable if disabled, run, then restore state
gh aw run daily-perf-improver --auto-merge-prs # Auto-merge any PRs created during execution
gh aw run daily-perf-improver -F name=value -F env=prod # Pass workflow inputs
gh aw run daily-perf-improver --push # Commit and push workflow files before running
gh aw run daily-perf-improver --dry-run # Validate without actually running
Expand Down
2 changes: 1 addition & 1 deletion pkg/cli/add_wizard_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var addWizardLog = logger.New("cli:add_wizard_command")
func NewAddWizardCommand(validateEngine func(string) error) *cobra.Command {
cmd := &cobra.Command{
Use: "add-wizard <workflow>...",
Short: "Interactively add an agentic workflow with guided setup",
Short: "Interactively add one or more agentic workflows with guided setup",
Long: `Interactively add one or more workflows with guided setup.

This command walks you through:
Expand Down
2 changes: 1 addition & 1 deletion pkg/cli/init_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var initCommandLog = logger.New("cli:init_command")
func NewInitCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "init",
Short: "Initialize repository for agentic workflows",
Short: "Initialize the repository for agentic workflows",
Long: `Initialize the repository for agentic workflows by configuring .gitattributes and creating the dispatcher agent file.

Interactive Mode (default):
Expand Down
Loading