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
17 changes: 15 additions & 2 deletions cli/azd/extensions/azure.ai.inspector/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Release History

## 0.1.0-preview (Unreleased)
## 0.0.1-preview (2026-05-22)

- Initial release.
Initial preview release of the Agent Inspector extension.

### Features Added

- Agent Inspector extension: serves the Inspector single-page app on loopback and bridges it to a locally running agent over WebSocket JSON-RPC and HTTP/SSE proxying.
- Added `azd ai inspector launch` to start the Inspector standalone; the `azd ai inspector` command group is kept for future subcommands.
- Integrated with `azd ai agent run` so the Inspector is launched automatically for local agent runs (opt out with `--no-inspector`).

### Other Changes

- Hardened the loopback server with `Host`/`Origin` allowlisting, proxy URL constraints (http/https, loopback hosts, configured agent port), bounded WebSocket frame size, read/write deadlines, ping/pong, and Content-Security-Policy and related hardening headers on the served SPA.
- Restricted `openUrlInBrowser` to `http`/`https` URLs.
- Suppressed proxy body logging and stdout output when launched in silent mode from `azd ai agent run`.
- Added panic recovery in per-message RPC goroutines and fixed a nil-map race in stream registration during session cleanup.
Comment thread
MuyangAmigo marked this conversation as resolved.
2 changes: 1 addition & 1 deletion cli/azd/extensions/azure.ai.inspector/extension.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ displayName: Foundry agent inspector (Preview)
description: Browser-based inspector UI for locally running Foundry agents. (Preview)
usage: azd ai inspector <command> [options]
# NOTE: Make sure version.txt is in sync with this version.
version: 0.1.0-preview
version: 0.0.1-preview
requiredAzdVersion: ">1.23.13"
language: go
capabilities:
Expand Down
2 changes: 1 addition & 1 deletion cli/azd/extensions/azure.ai.inspector/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0-preview
0.0.1-preview
Loading