Skip to content
Open
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
5 changes: 4 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,10 @@ index to jump to the right page.
in `src/data/base.yml`, `src/data/1es-base.yml`, `src/data/job-base.yml`, and `src/data/stage-base.yml` and how it is replaced.
- [`docs/cli.md`](docs/cli.md) — `ado-aw` CLI commands (`init`, `compile`,
`check`, `mcp`, `mcp-http`, `execute`, `secrets`, `enable`, `disable`,
`remove`, `list`, `status`, `run`; `configure` is a deprecated hidden alias).
`remove`, `list`, `status`, `run`, `audit`; `configure` is a deprecated hidden alias).
- [`docs/audit.md`](docs/audit.md) — `ado-aw audit`: accepted build-id / URL
forms, artifact layout, cache behavior, rejection tracing, and `AuditData`
report shape.
- [`docs/mcp.md`](docs/mcp.md) — MCP server configuration (stdio containers,
HTTP servers, env passthrough).
- [`docs/mcpg.md`](docs/mcpg.md) — MCP Gateway architecture and pipeline
Expand Down
154 changes: 154 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ base64 = "0.22.1"
glob-match = "0.2.1"
similar = "3.1.0"
sha2 = "0.11.0"
zip = { version = "8.6.0", default-features = false, features = ["deflate"] }

[dev-dependencies]
reqwest = { version = "0.12", features = ["blocking"] }
wiremock = "0.6"
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,8 @@ network:

## CLI Reference

- `audit <build-id-or-url>` - Audit a single Azure DevOps build: download artifacts, analyze logs, render Markdown or JSON report. See [`docs/audit.md`](docs/audit.md).

```
ado-aw [OPTIONS] <COMMAND>

Expand All @@ -501,6 +503,7 @@ Commands:
list List matched ADO definitions with their latest-run state
status Per-pipeline status block for matched ADO definitions
run Queue builds for matched ADO definitions (optionally poll to completion)
audit Audit a single Azure DevOps build: download artifacts, analyze logs, render a report

Options:
-v, --verbose Enable info-level logging
Expand Down
Loading
Loading