| name | cli-channel-debugging |
| description | Emulates any Aspire CLI build identity (channel, version, commit, package source) from a locally built CLI using ASPIRE_CLI_* environment variables and the install sidecar, so a reported bug can be reproduced and fixed locally without going through the install/PR loop. Use this when asked to reproduce channel/version/quality-specific CLI behavior, simulate a daily/staging/stable/PR build locally, or decide which override knobs to set for a given scenario. |
You are a specialized agent for reproducing version/channel/quality-specific Aspire CLI
behavior from a locally built CLI. The CLI resolves its own identity (channel, version,
commit, and — optionally — the directory it resolves Aspire* packages from) at startup. By
setting a few environment variables (or an install sidecar), you can make
dotnet run --project src/Aspire.Cli -- <cmd> behave as if it were any released, staging,
daily, or PR build. This lets you reproduce a bug that only manifests on a specific build and
fix it on the current branch — without waiting for an install or a PR build.
Read docs/specs/cli-identity-sidecar.md for the full design. This skill is the operational
matrix: which knobs to set for each scenario.
⛔ MANDATORY: State the scenario and exact knobs in chat before running
Before you run any emulated CLI command, you MUST write a short line in chat declaring:
- Which scenario row (1–7b below) you are emulating.
- The exact environment variables and values you are setting (channel, version, commit,
packages directory, etc.).
- For
ASPIRE_CLI_PACKAGES: that you built/populated the directory yourself and verified
it is clean (exactly one version of each Aspire* package). Do not hand-wave "you
populate the directory" — actually run the build/pack, show the command, and list what
landed there.
Example:
Using Scenario 2 (PR build identity + locally built packages):
ASPIRE_CLI_CHANNEL=pr-18087, ASPIRE_CLI_PACKAGES=<repo>/artifacts/packages/Release/Shipping.
Packed locally with ./build.sh --pack -c Release; verified Shipping has one version of each
Aspire* package.
If you cannot determine the right knobs, ask — don't guess.
The override knobs
Identity environment variables (process-local; the source of truth)
These are read by IdentityResolver and flow into CliExecutionContext. They change the
CLI's global identity, so they affect hive discovery, package-channel selection, staging
feed derivation, --version, telemetry identity tags, and the SDK-skew warning. They are
stripped before the CLI spawns child Aspire processes, so they never leak into peer probes
or aspire doctor's child invocations — treat them as process-local test affordances.
| Env var | Effect |
|---|
ASPIRE_CLI_CHANNEL | Identity channel: stable, staging, daily, local, or pr-<N>. Drives hive selection and staging-feed provenance. |
ASPIRE_CLI_VERSION | Informational version (e.g. 13.5.0-preview.1.26310.9). Drives version-shape (quality) decisions, version pins, the skew warning, and --version output. |
ASPIRE_CLI_COMMIT | Source commit SHA. Drives the staging darc feed name (darc-pub-microsoft-aspire-<sha8>). |
ASPIRE_CLI_PACKAGES | A flat directory of .nupkg files (e.g. artifacts/packages/<Config>/Shipping). The CLI synthesizes a package channel named after ASPIRE_CLI_CHANNEL that maps Aspire* to this directory (everything else → nuget.org), replacing any same-named built-in/discovered/PR channel. See the cleanliness caveat below. |
ASPIRE_CLI_NUGET_SERVICE_INDEX | Replaces the canonical https://api.nuget.org/v3/index.json URL the CLI writes into newly generated NuGet.config files. Never rewrites URLs read from existing configs. |
When any of these is set, the CLI prints a yellow banner on stderr:
Aspire CLI is emulating identity '<channel>' version '<version>'.... Seeing that banner
confirms IdentityOverridden is true.
Install sidecar (.aspire-install.json)
The same values can come from the channel, version, commit, nugetServiceIndexOverride,
and packages fields of an .aspire-install.json sidecar next to the CLI binary. Resolution
order per field is env var → sidecar field → assembly-baked stamp. Use the sidecar when
you want a persistent emulated identity for an installed binary; use env vars for one-off runs.
Legacy PackagingService config keys (staging-feed routing only)
These predate the global env vars and are narrower: they only influence staging-feed
routing decisions inside PackagingService; they do not change the global identity, hive
lookups, or --version. Set with aspire config set -g <key> <value>.
| Config key | Effect |
|---|
overrideCliIdentityChannel | Identity used for staging-feed decisions only (validated against the known channel set). |
overrideCliInformationalVersion | Version that staging SHA-derivation and version-shape checks read. |
overrideStagingFeed | Forces staging to be available and points it at an explicit feed URL. |
stagingPinToCliVersion | When true (and using the shared feed), pins resolution to the CLI version. |
Prefer the ASPIRE_CLI_* env vars for whole-identity emulation. Use the config keys only
when you specifically want to exercise staging-feed routing from an otherwise-plain local build
(the eng/scripts/debug-staging.sh / debug-stable.sh recipes do exactly this — see
docs/cli-staging-validation.md).
Running the local CLI under an emulated identity
ASPIRE_CLI_CHANNEL=daily \
ASPIRE_CLI_VERSION=13.5.0-preview.1.26310.9 \
ASPIRE_CLI_COMMIT=95f0d2968... \
dotnet run --project src/Aspire.Cli -- <command>
You can also run the already-built binary directly to skip the rebuild:
artifacts/bin/Aspire.Cli/Debug/net10.0/aspire.dll via dotnet <dll> -- <command>.
Confirm the emulation took effect: aspire --version prints the emulated version, and the
emulation banner appears on stderr. (Note: aspire doctor reports some fields from the
physical binary by design — see the spec.)
Polyglot channel resolution from a source build. When you run a source (DEBUG) build from
inside the Aspire repo, AspireRepositoryDetector can match the repo's Aspire.slnx (it falls
back to the CLI binary's Environment.ProcessPath, not the apphost's location). For a polyglot
(TypeScript/Python) apphost that would force "project-reference mode" and short-circuit channel
resolution, so aspire add would silently resolve stable nuget.org packages instead of the
emulated channel's feed. To keep emulation faithful, GuestAppHostProject.IsUsingProjectReferences
now returns false whenever an ASPIRE_CLI_* identity override is active — so setting any
identity env var makes the source build resolve packages exactly like the installed CLI it is
emulating. (A real installed CLI is unaffected: Release builds only honor ASPIRE_REPO_ROOT.)
Helper scripts (bundled with this skill)
Two scripts live next to this SKILL.md (each with a .sh and a .ps1 variant). Always
prefer them over hand-typing versions — the daily/staging feeds are unsorted and interleave
old 9.x builds, so eyeballing "the latest" is error-prone.
get-aspire-channel-version.{sh,ps1} — resolve the version to emulate
Maps a channel to the exact feed the CLI's built-in package channels resolve Aspire* from
(see src/Aspire.Cli/Packaging/PackagingService.cs), queries it anonymously, and prints only
the latest version to stdout (diagnostics go to stderr), so it pipes cleanly into
ASPIRE_CLI_VERSION:
.agents/skills/cli-channel-debugging/get-aspire-channel-version.sh stable
.agents/skills/cli-channel-debugging/get-aspire-channel-version.sh daily
.agents/skills/cli-channel-debugging/get-aspire-channel-version.sh staging --commit <sha>
export ASPIRE_CLI_VERSION="$(.agents/skills/cli-channel-debugging/get-aspire-channel-version.sh daily)"
Options: --package <id> (default Aspire.Hosting.AppHost, present on all three feeds and
versioned identically to the product), --stable-only (daily/staging → stable-shaped only),
--prerelease (stable → allow prereleases). Staging requires --commit; note darc feeds are
per-RC-build and may have been garbage-collected for older commits (clean 404 = no such feed).
emulate-aspire-cli.{sh,ps1} — one-line scenario setup (SOURCE it)
Sets the ASPIRE_CLI_* env vars and defines an aspire function pointing at this repo's built
CLI. For stable/daily/staging it auto-resolves the version via the resolver above. It
must be sourced (bash/zsh) or dot-sourced (pwsh) so the env + function persist:
source .agents/skills/cli-channel-debugging/emulate-aspire-cli.sh daily
aspire --version
. .agents/skills/cli-channel-debugging/emulate-aspire-cli.ps1 staging -Commit <sha>
aspire --version
Options: --version <v> / -Version (pin instead of auto-resolving; required for local/pr-<N>),
--commit / -Commit, --packages <dir> / -Packages (sets ASPIRE_CLI_PACKAGES), --config
/ -Config (Debug|Release, default Debug), --no-build / -NoBuild (use an existing binary).
Driving a scenario from a Terminal canvas (Copilot app)
When running inside the Copilot app, give the user a live, reusable shell per scenario by
opening a Terminal canvas rather than only running one-off bash tool commands. The flow:
- State the scenario + knobs in chat (mandatory rule above) and, for feed-backed channels,
resolve the real version first with
get-aspire-channel-version.sh so the title and env are
accurate.
- Build the CLI once (
dotnet build src/Aspire.Cli/Aspire.Cli.csproj -p:SkipNativeBuild=true),
or let emulate-aspire-cli.sh build it.
open_canvas with canvasId: "terminal" and a descriptive title (e.g.
aspire (emulating daily 13.5.0-preview.1.NNNNN.N)); pick a stable instanceId per scenario
so re-opening focuses the same panel. Open a separate instance per identity so the user
can keep, say, a stable and a daily terminal side by side.
- Drive it with the
send_terminal_input action (input must be an object, e.g.
{"input": "aspire --version"}; a trailing Enter is added by default). The fastest setup is a
single source .agents/skills/cli-channel-debugging/emulate-aspire-cli.sh <channel> line;
otherwise send the export ASPIRE_CLI_* lines and the aspire() { dotnet "<dll>" "$@"; }
function definition individually.
- Verify with
aspire --version. read_terminal_output may be unavailable in some app
contexts ("Terminal not found or not running"); when it is, confirm the emulation
independently by running the same env + built aspire.dll through a normal bash tool call
and checking the banner + version match — the canvas keystrokes are still delivered for the
user.
Reuse instanceIds across turns so "the daily terminal" stays the same panel the user is looking at.
The scenario matrix
| # | Scenario | Identity | Aspire* package source | How |
|---|
| 1 | Local build + locally built packages (local hive) | local | ~/.aspire/hives/local/packages or local Shipping dir | ./localhive.sh (no env vars) — or ASPIRE_CLI_PACKAGES=<Shipping> |
| 2 | PR build identity + locally built packages | pr-<N> | local Shipping dir | ASPIRE_CLI_CHANNEL=pr-<N> + ASPIRE_CLI_PACKAGES=<Shipping> |
| 3 | PR build identity + CI-built packages, local CLI | pr-<N> | ~/.aspire/hives/pr-<N>/packages | get-aspire-cli-pr.sh --pr <N>, then ASPIRE_CLI_CHANNEL=pr-<N> |
| 4 | Latest daily, local CLI | daily | dnceng/dotnet9 daily feed | ASPIRE_CLI_CHANNEL=daily + ASPIRE_CLI_VERSION (+ ASPIRE_CLI_COMMIT) |
| 5 | Staging, unstable version | staging | darc-pub-microsoft-aspire-<sha8> feed (quality Both) | ASPIRE_CLI_CHANNEL=staging + prerelease ASPIRE_CLI_VERSION + ASPIRE_CLI_COMMIT |
| 6 | Staging, stable version | staging | darc-pub-microsoft-aspire-<sha8> feed (quality Stable) | ASPIRE_CLI_CHANNEL=staging + stable-shaped ASPIRE_CLI_VERSION + ASPIRE_CLI_COMMIT |
| 7 | Released build repro | stable | nuget.org | ASPIRE_CLI_CHANNEL=stable + released ASPIRE_CLI_VERSION |
| 7b | Released repro + CLI+hosting fix spanning packages | stable | locally rebuilt Shipping dir | as 7 + ASPIRE_CLI_PACKAGES=<clean-rebuilt-dir> |
Scenario 1 — Local build + locally built packages
./localhive.sh [-c Release|Debug] [-n <hive>] packs NuGet packages into
artifacts/packages/<Config>/Shipping, creates ~/.aspire/hives/<hive>/packages, and installs
the CLI to ~/.aspire/bin. The installed CLI bakes a local identity and discovers the hive —
no env vars needed.
To skip the hive copy and point a dev-tree CLI straight at the packed output:
./build.sh --pack -c Release
ASPIRE_CLI_PACKAGES="$PWD/artifacts/packages/Release/Shipping" \
dotnet run --project src/Aspire.Cli -- <cmd>
Scenario 2 — PR build identity + locally built packages (agent builds the packages)
You (the agent) build the packages, then run the local CLI as the PR build:
./build.sh --pack -c Release
ASPIRE_CLI_CHANNEL=pr-<N> \
ASPIRE_CLI_PACKAGES="$PWD/artifacts/packages/Release/Shipping" \
dotnet run --project src/Aspire.Cli -- <cmd>
ASPIRE_CLI_PACKAGES wins over a same-named hive or PR-install channel, so the CLI resolves
Aspire* from your freshly built packages while presenting a pr-<N> identity.
Scenario 3 — PR build identity + CI-built packages, local CLI
Use this to test something locally against a PR's CI-built packages without rebuilding them:
eng/scripts/get-aspire-cli-pr.sh --pr <N>
ASPIRE_CLI_CHANNEL=pr-<N> dotnet run --project src/Aspire.Cli -- <cmd>
No ASPIRE_CLI_PACKAGES — the local CLI discovers ~/.aspire/hives/pr-<N> by name because its
identity channel matches. (See docs/dogfooding-pull-requests.md and eng/scripts/README.md.)
Scenario 4 — Latest daily, local CLI
source .agents/skills/cli-channel-debugging/emulate-aspire-cli.sh daily
ASPIRE_CLI_CHANNEL=daily \
ASPIRE_CLI_VERSION="$(.agents/skills/cli-channel-debugging/get-aspire-channel-version.sh daily)" \
dotnet run --project src/Aspire.Cli -- <cmd>
The daily channel maps Aspire* to the dnceng dotnet9 feed. Use the real daily version
of the build you're emulating (the resolver gives it to you) so version pins and the skew
warning match what users saw. ASPIRE_CLI_COMMIT is optional here — daily resolves from the
shared feed, not a SHA-specific darc feed.
Scenarios 5 & 6 — Staging (unstable vs stable version)
ASPIRE_CLI_CHANNEL=staging \
ASPIRE_CLI_VERSION=13.4.0-preview.1.26280.6 \
ASPIRE_CLI_COMMIT=<full-commit-sha> \
dotnet run --project src/Aspire.Cli -- <cmd>
ASPIRE_CLI_CHANNEL=staging ASPIRE_CLI_VERSION=13.4.0 ASPIRE_CLI_COMMIT=<full-commit-sha> \
dotnet run --project src/Aspire.Cli -- <cmd>
Staging feed provenance is derived from the commit: darc-pub-microsoft-aspire-<sha8>. The
version shape controls only which versions on that feed are eligible (Stable vs Both).
Alternatively, eng/scripts/debug-staging.sh / debug-stable.sh exercise the same routing via
the legacy config keys — see docs/cli-staging-validation.md.
Scenario 7 — Released build repro
source .agents/skills/cli-channel-debugging/emulate-aspire-cli.sh stable
ASPIRE_CLI_CHANNEL=stable ASPIRE_CLI_VERSION=13.4.2 dotnet run --project src/Aspire.Cli -- <cmd>
The stable channel maps Aspire* to nuget.org. Use the exact released version the bug was
reported against (get-aspire-channel-version.sh stable gives the current latest).
Scenario 7b — Released repro with a fix spanning CLI and hosting packages
When the fix touches packages too (e.g. Aspire.Hosting.*), rebuild those packages from the
current branch at the released version into a clean directory and layer them in:
./build.sh --pack -c Release
ASPIRE_CLI_CHANNEL=stable \
ASPIRE_CLI_VERSION=13.4.2 \
ASPIRE_CLI_PACKAGES="$PWD/artifacts/packages/Release/Shipping" \
dotnet run --project src/Aspire.Cli -- <cmd>
Identity stays stable/13.4.2 while Aspire* resolves from your locally rebuilt packages, so
you can validate a CLI+hosting fix together before publishing anything.
Scenario 7c — All-local "future release" (version not yet on nuget.org)
Use this to dry-run a not-yet-shipped release (e.g. emulate a future 13.5.0 stable build)
entirely from locally built packages — templates and integrations both resolve from a local
directory, nothing has to be published. This is the most self-contained scenario and the one the
identity-sidecar package-resolution fix specifically enables.
./build.sh --pack -c Release /p:VersionPrefix=13.5.0 /p:StabilizePackageVersion=true
STABLE_DIR="$PWD/artifacts/packages/Release/Shipping"
dotnet nuget add source "$STABLE_DIR" --name local-emulated-stable
ASPIRE_CLI_CHANNEL=stable ASPIRE_CLI_VERSION=13.5.0 ASPIRE_CLI_PACKAGES="$STABLE_DIR" \
dotnet run --project src/Aspire.Cli -- new aspire-starter --name MyApp --non-interactive
Turnkey alternative — localhive --version. ./localhive.sh --version 13.5.0 (or
.\localhive.ps1 -Version 13.5.0) packs the stable shape, populates ~/.aspire/hives/local/packages
with only the exact 13.5.0 packages, and installs the CLI — no manual VersionPrefix/
StabilizePackageVersion flags and no stale-version cleanup needed. Add --archive to also produce a
portable .tar.gz for the E2E tests (below). You still set the three ASPIRE_CLI_* env vars (and the
ambient source for buildability) to emulate the release from that hive.
Fully turnkey with -o DIR. ./localhive.sh --version 13.5.0 -o /tmp/aspire-1350 writes a
self-contained portable layout (bin/, hives/local/packages/) and an activate.sh
(localhive.ps1 writes activate.ps1). source /tmp/aspire-1350/activate.sh puts the CLI on PATH,
exports the three ASPIRE_CLI_* vars (channel=stable, version=13.5.0, packages=the hive), sets a
hermetic NUGET_PACKAGES (see the cache hazard below), and drops you into a work/ dir — a
one-command emulated stable session.
⚠️ NuGet global-cache pollution when rebuilding a FIXED stable version. NuGet's global packages
folder (~/.nuget/packages/<id>/<version>/) caches extracted packages keyed by the version
string. When you emulate a fixed stable version like 13.5.0 and then rebuild it, a stale
13.5.0 left in that shared cache by an earlier build silently shadows the freshly built one —
same version string, different content — because restore never re-extracts from your local hive. The
stale Aspire.AppHost.Sdk/13.5.0 can then inject a prerelease version floor (e.g.
Version=">= 13.5.0-dogfood.…"); NuGet picks the lowest version satisfying that floor and restore
drifts to a stray cached prerelease (e.g. 13.5.0-pr.17781) instead of your stable packages —
visible as NU1603 warnings and a project.assets.json bound to the prerelease. Remedy: isolate
the cache per emulation with a hermetic NUGET_PACKAGES (e.g. export NUGET_PACKAGES=/tmp/aspire-1350/.nuget-packages).
localhive … -o DIR's generated activate.sh/activate.ps1 does this for you. CI is unaffected
(fresh containers start with an empty cache); this only bites local iterative rebuilds.
Automated coverage. EmulatedLocalReleaseBuildTests (C# + TypeScript) exercises this exact
scenario end-to-end: it consumes a localhive --version <X.Y.Z> --archive archive, emulates the
stable identity with ASPIRE_CLI_PACKAGES pointed at the hive, and asserts aspire new/aspire add
resolve the future-only version locally. The tests skip unless given a stable-shaped local archive, so
they add zero cost to default CI. See .agents/skills/cli-e2e-testing/SKILL.md.
Package/template resolution now honors ASPIRE_CLI_PACKAGES for any emulated channel name.
Historically the CLI only searched the local-packages channel when its name looked like a
local build (local/pr-<N>/run-<N>); emulating stable/staging/daily silently fell back
to nuget.org for aspire new/aspire add. The CLI now recognizes a channel as locally backed by
its mappings (an Aspire* mapping pointing at an existing directory), not its name, so the
override works under every emulated identity.
⚠️ Buildability needs an ambient NuGet source (step 2). A real stable build deliberately
drops no per-project NuGet.config (it relies on nuget.org being an ambient source). When
you emulate stable with a local version that isn't on nuget.org, the apphost still won't
build unless the local dir is reachable: MSBuild resolves the Aspire.AppHost.Sdk before
restore and reads only NuGet.config sources (it ignores RestoreAdditionalProjectSources and
ASPIRE_CLI_PACKAGES). So aspire new will scaffold the project (templates come from the local
dir), but aspire add/aspire run fail with Could not resolve SDK "Aspire.AppHost.Sdk/13.5.0"
until you add the local dir as an ambient source (dotnet nuget add source, a user/parent-level
NuGet.config, etc.). This mirrors how real stable relies on an ambient nuget.org — the local
dir is the emulated ambient feed. aspire add itself still drops a project NuGet.config for the
dotnet add package restore; the ambient source is only needed for the SDK-resolution build step.
Remove the source when done: dotnet nuget remove source local-emulated-stable.
⚠️ ASPIRE_CLI_PACKAGES cleanliness caveat (fail-fast)
A flat directory feed has no "latest stable vs latest prerelease" semantics: if the same
Aspire* package id appears with more than one version, NuGet would silently resolve the
highest and mask the version you meant to test. The CLI therefore fails fast with:
The Aspire CLI packages override directory '
' contains more than one version of the same
Aspire package... Clean the directory so each Aspire* package appears exactly once.
Conflicts: Aspire.Hosting (13.4.1, 13.4.2).
This commonly bites because ./localhive.sh auto-generates a fresh local.YYYYMMDD.tHHmmss
version each run and accumulates them in artifacts/packages/<Config>/Shipping. Before
pointing ASPIRE_CLI_PACKAGES at Shipping, clean stale .nupkg files (or repack fresh) so
each Aspire* id has exactly one version. The directory must also exist (missing → fail-fast).
Reproduce → fix → validate loop
- Identify the reported build (channel + version + commit) and which scenario row it maps to.
- State the scenario and exact knobs in chat (mandatory section above).
- Reproduce the bug with the local CLI under emulation.
- Fix on the current branch.
- Re-run the same emulated command and confirm the fix; keep the env vars identical so the
before/after is apples-to-apples.
References (don't duplicate — link to these)
get-aspire-channel-version.{sh,ps1} + emulate-aspire-cli.{sh,ps1} (next to this file) —
resolve the version to emulate and one-line scenario setup; see "Helper scripts" above.
docs/specs/cli-identity-sidecar.md — identity resolution design, sidecar schema, the full
list of ASPIRE_CLI_* overrides including ASPIRE_CLI_PACKAGES.
docs/cli-staging-validation.md — staging/stable feed routing and the debug-staging.sh /
debug-stable.sh recipes.
docs/dogfooding-pull-requests.md + eng/scripts/README.md — installing PR builds with
get-aspire-cli-pr.sh.
localhive.sh (repo root) — build packages + CLI + hive locally.