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
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,14 @@ The following options are available:

The AppHost language to scaffold (`csharp`, `typescript`).

- **`--skill-locations <skill-locations>`**

Comma-separated list of skill locations to configure. Use `all` to configure all supported locations or `none` to skip skill location configuration. When not specified, the command prompts interactively. Useful for non-interactive mode in scripts and CI environments. For the list of available locations, see the [`aspire agent init` command reference](../aspire-agent-init/#options).

- **`--skills <skills>`**

Comma-separated list of skills to install. Use `all` to install all available skills or `none` to skip skill installation. When not specified, the command prompts interactively. Useful for non-interactive mode in scripts and CI environments. For the list of available skills, see the [`aspire agent init` command reference](../aspire-agent-init/#options).

- <Include relativePath="reference/cli/includes/option-help.md" />

- <Include relativePath="reference/cli/includes/option-log-level.md" />
Expand Down Expand Up @@ -133,3 +141,15 @@ The following options are available:
```bash title="Aspire CLI"
aspire init --channel daily
```

- Initialize Aspire support non-interactively without installing any agent skills:

```bash title="Aspire CLI"
aspire init --non-interactive --skills none
```

- Initialize Aspire support non-interactively, installing all skills in the standard location:

```bash title="Aspire CLI"
aspire init --non-interactive --language csharp --skill-locations standard --skills all
```
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,14 @@ The following options are available:

Suppress the prompt to initialize MCP server configuration for agent environments after project creation.

- **`--skill-locations <skill-locations>`**

Comma-separated list of skill locations to configure. Use `all` to configure all supported locations or `none` to skip skill location configuration. When not specified, the command prompts interactively. Useful for non-interactive mode in scripts and CI environments. For the list of available locations, see the [`aspire agent init` command reference](../aspire-agent-init/#options).

- **`--skills <skills>`**

Comma-separated list of skills to install. Use `all` to install all available skills or `none` to skip skill installation. When not specified, the command prompts interactively. Useful for non-interactive mode in scripts and CI environments. For the list of available skills, see the [`aspire agent init` command reference](../aspire-agent-init/#options).

- <Include relativePath="reference/cli/includes/option-help.md" />

- <Include relativePath="reference/cli/includes/option-log-level.md" />
Expand Down Expand Up @@ -179,6 +187,18 @@ The `aspire-py-starter` template accepts the following additional options:
aspire new aspire-starter --channel daily
```

- Create a new project non-interactively without installing any agent skills:

```bash title="Aspire CLI"
aspire new aspire-starter --name myapp --skills none --non-interactive
```

- Create a new project non-interactively and install all skills in all supported locations:

```bash title="Aspire CLI"
aspire new aspire-starter --name myapp --skill-locations all --skills all --non-interactive
```

## Troubleshooting

### Language support not found
Expand Down
Loading