v2.0.0
AgentOps Workbench v2.0.0
Breaking release. A simplification pass that collapses the dual command
surface to a single set of simple verbs and consolidates the JSONL adapters.
Net −780 lines. The web dashboard is unchanged.
Migration (breaking)
Removed CLI commands → use the simple verb
| Removed in v1.x | Use in v2.0.0 |
|---|---|
agentops inspect <id> / agentops review <id> |
agentops look <id> |
agentops report <id> --out f.md |
agentops save report <id> --out f.md |
agentops export <id> --format json |
agentops save json <id> --out f.json |
agentops export <id> --format json --scope repo |
agentops save repo-json <id> --out f.json |
agentops export <id> --format openinference-json |
agentops save trace <id> --out f.json |
agentops gate <id> |
agentops check <id> |
agentops gate <id> --format json|github |
agentops check <id> --format json|github |
agentops repo-report <id> --format github / agentops pr <id> |
agentops save pr <id> --out f.md |
agentops dashboard |
agentops open |
agentops ingest <artifact> |
agentops import <artifact> |
agentops show <id> |
agentops look <id> |
import and capture are retained (they are not pure duplicates of audit/run).
Removed adapter IDs → use agentops-jsonl
claude-code-jsonl, codex-jsonl, and pai-export-jsonl are consolidated into
agentops-jsonl. They shared one schema and parser; provenance is now read from
each record's source field. Pass canonical exports with no --adapter
(auto-detected) or --adapter agentops-jsonl. Adapters: 7 → 4.
Two niche sub-options dropped from the CLI
Not re-exposed on the simple verbs (the library functions remain):
- the Markdown-only repo report (
repo-report --format markdown) export --include-raw-payloads
agentops check --format github covers the CI gate-comment case.
Also in this release
agentops checkgains--format text|json|github;--savenow picks a
format-aware default filename (agentops-gate.json/agentops-gate-comment.md
/agentops-gate.txt).- Removed packaging smoke scripts for the unshipped npm/binary path.
- Historical planning/research/release docs moved under
docs/archive/. - Removed a tracked generated
report.mdfrom the repo root.
Verification
bun run ci green (88 tests), smoke:dashboard and smoke:large-session pass.
Source-clone-with-Bun remains the supported install path; npm publication stays
deferred.