From 7cd5b313e5acb20ba5951f7886d1ea239834bbd2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 19:39:51 +0000 Subject: [PATCH 1/5] Initial plan From dcd59357f2fdeb8dcdff4cb4573cae88bb1bbc12 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 19:49:09 +0000 Subject: [PATCH 2/5] Update azd core and extension command descriptions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - "submit fine tuning job" → "Submit fine-tuning job." - "Setup monitoring configuration..." → "Set up monitoring configuration..." - "Github repository..." → "GitHub repository..." - "Create an new release..." → "Create a new release..." Co-authored-by: JeffreyCA <9157833+JeffreyCA@users.noreply.github.com> --- cli/azd/cmd/testdata/TestFigSpec.ts | 12 ++++---- .../azure.ai.finetune/design/architecture.md | 2 +- .../internal/cmd/operations.go | 2 +- .../microsoft.azd.demo/internal/cmd/config.go | 2 +- .../microsoft.azd.extensions/extension.yaml | 2 +- .../internal/cmd/publish.go | 2 +- .../internal/cmd/release.go | 2 +- cli/azd/extensions/registry.json | 14 +++++----- .../Test_CLI_Extension_Capabilities.yaml | 8 +++--- .../Test_CLI_InfraCreateAndDelete.yaml | 28 +++++++++---------- .../recordings/Test_CLI_ProvisionState.yaml | 14 +++++----- .../Test_CLI_ProvisionStateWithDown.yaml | 14 +++++----- 12 files changed, 51 insertions(+), 51 deletions(-) diff --git a/cli/azd/cmd/testdata/TestFigSpec.ts b/cli/azd/cmd/testdata/TestFigSpec.ts index 57584b6d5b5..493d38c23b4 100644 --- a/cli/azd/cmd/testdata/TestFigSpec.ts +++ b/cli/azd/cmd/testdata/TestFigSpec.ts @@ -641,7 +641,7 @@ const completionSpec: Fig.Spec = { }, { name: ['submit'], - description: 'submit fine tuning job', + description: 'Submit fine-tuning job.', options: [ { name: ['--file', '-f'], @@ -1004,7 +1004,7 @@ const completionSpec: Fig.Spec = { }, { name: ['config'], - description: 'Setup monitoring configuration for the project and services', + description: 'Set up monitoring configuration for the project and services', }, { name: ['context'], @@ -2404,7 +2404,7 @@ const completionSpec: Fig.Spec = { }, { name: ['--repo'], - description: 'Github repository to create the release in (e.g. owner/repo)', + description: 'GitHub repository to create the release in (e.g. owner/repo)', args: [ { name: 'repo', @@ -2468,7 +2468,7 @@ const completionSpec: Fig.Spec = { }, { name: ['--repo', '-r'], - description: 'Github repository to create the release in (e.g. owner/repo)', + description: 'GitHub repository to create the release in (e.g. owner/repo)', args: [ { name: 'repo', @@ -2569,7 +2569,7 @@ const completionSpec: Fig.Spec = { }, { name: ['submit'], - description: 'submit fine tuning job', + description: 'Submit fine-tuning job.', }, ], }, @@ -2697,7 +2697,7 @@ const completionSpec: Fig.Spec = { }, { name: ['config'], - description: 'Setup monitoring configuration for the project and services', + description: 'Set up monitoring configuration for the project and services', }, { name: ['context'], diff --git a/cli/azd/extensions/azure.ai.finetune/design/architecture.md b/cli/azd/extensions/azure.ai.finetune/design/architecture.md index 724bc83e39e..ca062af8858 100644 --- a/cli/azd/extensions/azure.ai.finetune/design/architecture.md +++ b/cli/azd/extensions/azure.ai.finetune/design/architecture.md @@ -151,7 +151,7 @@ import ( func newOperationSubmitCommand(svc services.FineTuningService) *cobra.Command { return &cobra.Command{ Use: "submit", - Short: "Submit fine tuning job", + Short: "Submit fine-tuning job.", RunE: func(cmd *cobra.Command, args []string) error { // 1. Parse input req := &models.CreateFineTuningRequest{ diff --git a/cli/azd/extensions/azure.ai.finetune/internal/cmd/operations.go b/cli/azd/extensions/azure.ai.finetune/internal/cmd/operations.go index af6d1cb063d..09e755f5fd6 100644 --- a/cli/azd/extensions/azure.ai.finetune/internal/cmd/operations.go +++ b/cli/azd/extensions/azure.ai.finetune/internal/cmd/operations.go @@ -64,7 +64,7 @@ func newOperationSubmitCommand() *cobra.Command { var seed int64 cmd := &cobra.Command{ Use: "submit", - Short: "submit fine tuning job", + Short: "Submit fine-tuning job.", PreRunE: func(cmd *cobra.Command, args []string) error { return validateSubmitFlags(filename, model, trainingFile) }, diff --git a/cli/azd/extensions/microsoft.azd.demo/internal/cmd/config.go b/cli/azd/extensions/microsoft.azd.demo/internal/cmd/config.go index c399ad69ea8..f9d7ae2c8f1 100644 --- a/cli/azd/extensions/microsoft.azd.demo/internal/cmd/config.go +++ b/cli/azd/extensions/microsoft.azd.demo/internal/cmd/config.go @@ -40,7 +40,7 @@ type ServiceMonitoringConfig struct { func newConfigCommand() *cobra.Command { return &cobra.Command{ Use: "config", - Short: "Setup monitoring configuration for the project and services", + Short: "Set up monitoring configuration for the project and services", Long: `This command demonstrates the new configuration management capabilities by setting up a realistic monitoring configuration scenario. It will: diff --git a/cli/azd/extensions/microsoft.azd.extensions/extension.yaml b/cli/azd/extensions/microsoft.azd.extensions/extension.yaml index f33a796cd9f..f97a6d71957 100644 --- a/cli/azd/extensions/microsoft.azd.extensions/extension.yaml +++ b/cli/azd/extensions/microsoft.azd.extensions/extension.yaml @@ -23,7 +23,7 @@ examples: description: Publish the AZD extension project to an extension source. usage: azd x publish - name: release - description: Create an new release of the AZD extension project to a Github repository. + description: Create a new release of the AZD extension project to a GitHub repository. usage: azd x release - name: watch description: Watch for changes in the extension project and automatically rebuild and reload the extension. diff --git a/cli/azd/extensions/microsoft.azd.extensions/internal/cmd/publish.go b/cli/azd/extensions/microsoft.azd.extensions/internal/cmd/publish.go index 0d348a9b01f..900f3b73699 100644 --- a/cli/azd/extensions/microsoft.azd.extensions/internal/cmd/publish.go +++ b/cli/azd/extensions/microsoft.azd.extensions/internal/cmd/publish.go @@ -61,7 +61,7 @@ func newPublishCommand() *cobra.Command { publishCmd.Flags().StringVar( &flags.repository, "repo", flags.repository, - "Github repository to create the release in (e.g. owner/repo)", + "GitHub repository to create the release in (e.g. owner/repo)", ) publishCmd.Flags().StringVarP( &flags.version, diff --git a/cli/azd/extensions/microsoft.azd.extensions/internal/cmd/release.go b/cli/azd/extensions/microsoft.azd.extensions/internal/cmd/release.go index 145d558e78a..36b7d469f09 100644 --- a/cli/azd/extensions/microsoft.azd.extensions/internal/cmd/release.go +++ b/cli/azd/extensions/microsoft.azd.extensions/internal/cmd/release.go @@ -57,7 +57,7 @@ func newReleaseCommand() *cobra.Command { releaseCmd.Flags().StringVarP( &flags.repository, "repo", "r", flags.repository, - "Github repository to create the release in (e.g. owner/repo)", + "GitHub repository to create the release in (e.g. owner/repo)", ) releaseCmd.Flags().StringSliceVar( &flags.artifacts, diff --git a/cli/azd/extensions/registry.json b/cli/azd/extensions/registry.json index 85124abbf69..59b01b66a50 100644 --- a/cli/azd/extensions/registry.json +++ b/cli/azd/extensions/registry.json @@ -355,7 +355,7 @@ }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -444,7 +444,7 @@ }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -533,7 +533,7 @@ }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -622,7 +622,7 @@ }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -711,7 +711,7 @@ }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -800,7 +800,7 @@ }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -890,7 +890,7 @@ }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_Extension_Capabilities.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_Extension_Capabilities.yaml index 1d117618653..8497843c48a 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_Extension_Capabilities.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_Extension_Capabilities.yaml @@ -277,7 +277,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -366,7 +366,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -455,7 +455,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -544,7 +544,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDelete.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDelete.yaml index d6f27cae5de..8d1beae0936 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDelete.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDelete.yaml @@ -1099,7 +1099,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -1183,7 +1183,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -1267,7 +1267,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -1351,7 +1351,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -1435,7 +1435,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -1524,7 +1524,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -1613,7 +1613,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -3162,7 +3162,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -3246,7 +3246,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -3330,7 +3330,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -3414,7 +3414,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -3498,7 +3498,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -3587,7 +3587,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -3676,7 +3676,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionState.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionState.yaml index 43240fee634..655395274d8 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionState.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionState.yaml @@ -4825,7 +4825,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -4909,7 +4909,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -4993,7 +4993,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -5077,7 +5077,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -5161,7 +5161,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -5250,7 +5250,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -5339,7 +5339,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionStateWithDown.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionStateWithDown.yaml index 3f9bb01cf9d..47aa9963535 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionStateWithDown.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionStateWithDown.yaml @@ -4261,7 +4261,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -4345,7 +4345,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -4429,7 +4429,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -4513,7 +4513,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -4597,7 +4597,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -4686,7 +4686,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { @@ -4775,7 +4775,7 @@ interactions: }, { "name": "release", - "description": "Create an new release of the AZD extension project to a Github repository.", + "description": "Create a new release of the AZD extension project to a GitHub repository.", "usage": "azd x release" }, { From b258da2ff20f96c001ba383726cc53a1fb1e88e9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 19:52:46 +0000 Subject: [PATCH 3/5] Complete code review Co-authored-by: JeffreyCA <9157833+JeffreyCA@users.noreply.github.com> --- cli/azd/go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/azd/go.mod b/cli/azd/go.mod index e9f0e57b2ea..c401f81475b 100644 --- a/cli/azd/go.mod +++ b/cli/azd/go.mod @@ -51,6 +51,7 @@ require ( github.com/google/uuid v1.6.0 github.com/gorilla/websocket v1.5.3 github.com/invopop/jsonschema v0.13.0 + github.com/jmespath-community/go-jmespath v1.1.1 github.com/joho/godotenv v1.5.1 github.com/mark3labs/mcp-go v0.41.1 github.com/mattn/go-colorable v0.1.14 @@ -115,7 +116,6 @@ require ( github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2 // indirect github.com/huandu/xstrings v1.5.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect - github.com/jmespath-community/go-jmespath v1.1.1 // indirect github.com/json-iterator/go v1.1.12 // indirect github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect github.com/kylelemons/godebug v1.1.0 // indirect From 3e2c8f26f237fb653498287cf4d14dc6fc834a97 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 19:53:12 +0000 Subject: [PATCH 4/5] Revert unrelated go.mod change from CodeQL run Co-authored-by: JeffreyCA <9157833+JeffreyCA@users.noreply.github.com> --- cli/azd/go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/azd/go.mod b/cli/azd/go.mod index c401f81475b..e9f0e57b2ea 100644 --- a/cli/azd/go.mod +++ b/cli/azd/go.mod @@ -51,7 +51,6 @@ require ( github.com/google/uuid v1.6.0 github.com/gorilla/websocket v1.5.3 github.com/invopop/jsonschema v0.13.0 - github.com/jmespath-community/go-jmespath v1.1.1 github.com/joho/godotenv v1.5.1 github.com/mark3labs/mcp-go v0.41.1 github.com/mattn/go-colorable v0.1.14 @@ -116,6 +115,7 @@ require ( github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2 // indirect github.com/huandu/xstrings v1.5.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect + github.com/jmespath-community/go-jmespath v1.1.1 // indirect github.com/json-iterator/go v1.1.12 // indirect github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect github.com/kylelemons/godebug v1.1.0 // indirect From e3061ae68d2925437aaa3d7e80c31f51263cdeb1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 21:24:29 +0000 Subject: [PATCH 5/5] Revert TestFigSpec.ts changes - extension snapshots shouldn't be in this PR Co-authored-by: JeffreyCA <9157833+JeffreyCA@users.noreply.github.com> --- cli/azd/cmd/testdata/TestFigSpec.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cli/azd/cmd/testdata/TestFigSpec.ts b/cli/azd/cmd/testdata/TestFigSpec.ts index 493d38c23b4..57584b6d5b5 100644 --- a/cli/azd/cmd/testdata/TestFigSpec.ts +++ b/cli/azd/cmd/testdata/TestFigSpec.ts @@ -641,7 +641,7 @@ const completionSpec: Fig.Spec = { }, { name: ['submit'], - description: 'Submit fine-tuning job.', + description: 'submit fine tuning job', options: [ { name: ['--file', '-f'], @@ -1004,7 +1004,7 @@ const completionSpec: Fig.Spec = { }, { name: ['config'], - description: 'Set up monitoring configuration for the project and services', + description: 'Setup monitoring configuration for the project and services', }, { name: ['context'], @@ -2404,7 +2404,7 @@ const completionSpec: Fig.Spec = { }, { name: ['--repo'], - description: 'GitHub repository to create the release in (e.g. owner/repo)', + description: 'Github repository to create the release in (e.g. owner/repo)', args: [ { name: 'repo', @@ -2468,7 +2468,7 @@ const completionSpec: Fig.Spec = { }, { name: ['--repo', '-r'], - description: 'GitHub repository to create the release in (e.g. owner/repo)', + description: 'Github repository to create the release in (e.g. owner/repo)', args: [ { name: 'repo', @@ -2569,7 +2569,7 @@ const completionSpec: Fig.Spec = { }, { name: ['submit'], - description: 'Submit fine-tuning job.', + description: 'submit fine tuning job', }, ], }, @@ -2697,7 +2697,7 @@ const completionSpec: Fig.Spec = { }, { name: ['config'], - description: 'Set up monitoring configuration for the project and services', + description: 'Setup monitoring configuration for the project and services', }, { name: ['context'],