diff --git a/src/frontend/src/content/docs/reference/cli/commands/aspire-agent-init.mdx b/src/frontend/src/content/docs/reference/cli/commands/aspire-agent-init.mdx
index ddddf21bc..f9518eff6 100644
--- a/src/frontend/src/content/docs/reference/cli/commands/aspire-agent-init.mdx
+++ b/src/frontend/src/content/docs/reference/cli/commands/aspire-agent-init.mdx
@@ -33,6 +33,18 @@ The command also removes skill files from any locations that were deselected, ke
The following options are available:
+- **`--workspace-root`**
+
+ Path to the workspace root directory. When not specified, the current directory is used as the workspace root.
+
+- **`--skill-locations`**
+
+ Comma-separated list of skill locations to configure (for example, `vscode,github`). Use `all` to configure all detected locations, or `none` to skip. When not specified, the command prompts interactively.
+
+- **`--skills`**
+
+ Comma-separated list of skills to enable (for example, `mcp,cli`). Use `all` to enable all available skills, or `none` to skip. When not specified, the command prompts interactively.
+
-
-
diff --git a/src/frontend/src/content/docs/reference/cli/commands/aspire-new.mdx b/src/frontend/src/content/docs/reference/cli/commands/aspire-new.mdx
index c32e564b5..cf931a064 100644
--- a/src/frontend/src/content/docs/reference/cli/commands/aspire-new.mdx
+++ b/src/frontend/src/content/docs/reference/cli/commands/aspire-new.mdx
@@ -117,6 +117,10 @@ The following options are available:
Channel to use for templates (`stable`, `staging`, `daily`).
+- **`--suppress-agent-init`**
+
+ Suppress the prompt to initialize MCP server configuration for agent environments after project creation.
+
-
-
diff --git a/src/frontend/src/content/docs/reference/cli/commands/aspire-update.mdx b/src/frontend/src/content/docs/reference/cli/commands/aspire-update.mdx
index a4e003815..9bde62a00 100644
--- a/src/frontend/src/content/docs/reference/cli/commands/aspire-update.mdx
+++ b/src/frontend/src/content/docs/reference/cli/commands/aspire-update.mdx
@@ -9,7 +9,6 @@ import AsciinemaPlayer from '@components/AsciinemaPlayer.astro';
import Include from '@components/Include.astro';
import LearnMore from '@components/LearnMore.astro';
-import { Aside } from '@astrojs/starlight/components';
## Name
@@ -37,13 +36,6 @@ The command performs the following:
- Validates package compatibility before applying changes
- Provides colorized output with detailed summary of changes
-
-
## Options
The following options are available:
@@ -58,6 +50,14 @@ The following options are available:
Channel to update to (`stable`, `staging`, `daily`).
+- **`-y, --yes`**
+
+ Automatically confirm all prompts without user input. Use this option in CI/CD pipelines or other non-interactive environments to skip confirmation dialogs.
+
+- **`--nuget-config-dir`**
+
+ Path to the directory containing the `NuGet.Config` file to use when searching for packages. When not specified, the command searches for a `NuGet.Config` file in the current directory and its parents.
+
-
-
@@ -83,3 +83,15 @@ The following options are available:
```bash title="Aspire CLI"
aspire update --apphost './projects/apphost/orchestration.AppHost.csproj'
```
+
+- Update packages in a CI/CD pipeline without interactive prompts:
+
+ ```bash title="Aspire CLI"
+ aspire update --yes --non-interactive
+ ```
+
+- Update packages using a specific NuGet configuration file:
+
+ ```bash title="Aspire CLI"
+ aspire update --nuget-config-dir './config'
+ ```