refactor(cli): consolidate eval run output flags#957
Merged
Conversation
Make --output mean "artifact directory" (the single canonical output). Add --export for secondary file outputs (HTML, XML, YAML, JSON). Deprecate --out, --output-format, --benchmark-json, --artifacts with warnings — all continue working for backward compatibility. - --output <dir>: artifact directory (index.jsonl, benchmark.json, per-test grading/timing) - --export <file>: repeatable flag for additional output formats, format inferred from extension - Primary writer always JSONL; removed dead OutputFormat plumbing - Updated CI workflow, docs, and skills to use new flags Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Deploying agentv with
|
| Latest commit: |
56c8e5c
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://a55fac0a.agentv.pages.dev |
| Branch Preview URL: | https://refactor-consolidate-output.agentv.pages.dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
--outputas the artifact directory (was multi-file output paths)--exportrepeatable flag for secondary file outputs (HTML, XML, YAML, JSON, JSONL)--out,--output-format,--benchmark-json,--artifactswith stderr warnings — all continue working for backward compatibilityOutputFormatplumbing (primary writer is always JSONL)Test plan
bun run test— 385 tests passbun run lint— cleanbun run build— cleanbun run validate:examples— 53/53 valid--output /tmp/dir --dry-runwrites artifacts to dir--export results.xml --dry-runwrites JUnit XML--artifacts /tmp/old --dry-runwarns and still worksinspect show /tmp/dirreads artifact directory correctly🤖 Generated with Claude Code