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
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ fail-closed and only pauses when the agent actually proposed a reviewed output.
│ │ ├── trace.rs # `ado-aw trace`: correlate audit telemetry with the local IR graph
│ │ ├── whatif.rs # `ado-aw whatif`: static downstream skip classification for failures
│ │ ├── lint.rs # `ado-aw lint`: structural workflow lint checks
│ │ └── catalog.rs # `ado-aw catalog`: list in-tree registries (tools, runtimes, models, etc.)
│ │ └── catalog.rs # `ado-aw catalog`: list in-tree registries (safe-outputs, runtimes, tools, engines, models, pinned versions)
│ ├── detect.rs # Agentic workflow detection — discovers compiled pipelines; used by all lifecycle commands
│ ├── update_check.rs # Version update check — queries GitHub Releases and prints advisory when newer version is available
│ ├── ndjson.rs # NDJSON parsing utilities
Expand Down
2 changes: 1 addition & 1 deletion docs/mcp-author.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ workflows.
| `trace_failure` | Trace a build's failed-job chain using audit data plus any local IR graph. | `{ "build_id_or_url": "123", "step": null, "org": null, "project": null, "pat": null }` |
| `whatif` | Classify downstream jobs if a step or job fails. | `{ "source_path": "...", "failing_id": "Agent" }` |
| `lint_workflow` | Run structural lint checks. | `{ "source_path": "agents/example.md" }` |
| `catalog` | List safe-outputs, runtimes, tools, engines, and models. | `{ "kind": "safe-outputs" }` |
| `catalog` | List safe-outputs, runtimes, tools, engines, models, and pinned versions. | `{ "kind": "safe-outputs" }` |
| `audit_build` | Download and analyze a build; same shape as `ado-aw audit --json`. | `{ "build_id_or_url": "123", "org": null, "project": null, "pat": null, "artifacts": null, "no_cache": false }` |

## Trust model
Expand Down