From 658651d73537a08ff37063d3b989a57e7c04a37a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 12 Nov 2025 06:23:51 +0000 Subject: [PATCH 1/3] Initial plan From 83b13fb6134447f41eae2e1105fd527fdc736516 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 12 Nov 2025 06:31:40 +0000 Subject: [PATCH 2/3] Fix CLI terminology inconsistency: Use "agentic workflows" consistently - Updated enable command Short description - Updated disable command Short description - Updated status command Short description - All tests pass (unit and integration) - No remaining references to "natural language action" in code Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- cmd/gh-aw/main.go | 4 ++-- pkg/cli/status.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/gh-aw/main.go b/cmd/gh-aw/main.go index 4d792fb246c..244d09a9500 100644 --- a/cmd/gh-aw/main.go +++ b/cmd/gh-aw/main.go @@ -85,7 +85,7 @@ var removeCmd = &cobra.Command{ var enableCmd = &cobra.Command{ Use: "enable [workflow-name]...", - Short: "Enable natural language action workflows", + Short: "Enable agentic workflows", Long: `Enable one or more workflows by name, or all workflows if no names are provided. Examples: @@ -102,7 +102,7 @@ Examples: var disableCmd = &cobra.Command{ Use: "disable [workflow-name]...", - Short: "Disable natural language action workflows and cancel any in-progress runs", + Short: "Disable agentic workflows and cancel any in-progress runs", Long: `Disable one or more workflows by name, or all workflows if no names are provided. Examples: diff --git a/pkg/cli/status.go b/pkg/cli/status.go index 923deb70a66..fc1270885ab 100644 --- a/pkg/cli/status.go +++ b/pkg/cli/status.go @@ -12,7 +12,7 @@ import ( func NewStatusCommand() *cobra.Command { cmd := &cobra.Command{ Use: "status [pattern]", - Short: "Show status of natural language action files and workflows", + Short: "Show status of agentic workflows", Run: func(cmd *cobra.Command, args []string) { var pattern string if len(args) > 0 { From 4f64153f3898f6e17ac487e1f28ba2d34377fb83 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 12 Nov 2025 06:35:15 +0000 Subject: [PATCH 3/3] Fix CLI terminology: standardize on "agentic workflows" Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .github/workflows/go.mod | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/go.mod b/.github/workflows/go.mod index 0eed60d3481..189adb44024 100644 --- a/.github/workflows/go.mod +++ b/.github/workflows/go.mod @@ -1,5 +1,3 @@ module github.com/githubnext/gh-aw-workflows-deps -go 1.21 -require ( -) +go 1.21