feat: add AdLint post-demo backlog workflows#23
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 9e0de09828
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| path = Path(str(raw_path)) | ||
| if path.is_absolute(): | ||
| return path | ||
| return source / path |
There was a problem hiding this comment.
Resolve relative batch report paths from the cwd first
When users follow the documented workflow with a relative batch output dir such as adlint batch ... --output-dir reports/batch, run_batch records row report paths like reports/batch/risk.md in the summary, not paths relative to the archive. This resolver then prepends the archive directory and looks for reports/batch/reports/batch/risk.md, so adlint review-packet reports/batch ... aborts with a missing Markdown report even though the file exists. Please handle relative paths already rooted at the invocation cwd/output dir before falling back to source / path.
Useful? React with 👍 / 👎.
Summary
Changes
adlint review-packetbuilds a local handoff packet from batch archives or single report directories withmanifest.json,review-packet.md, copied Markdown reports, and policy source links.evals/run_eval.pyreportsfalse_positive_pressurefor guardrail rows and supports--max-policy-false-positives.evals/datasets/false_positive_near_miss_v1.jsonlandmake false-positive-near-miss.Test plan
make false-positive-near-missmake creative-assets-evalexamples/batch_campaigns.csvmake pr-preflightgit diff --checkmake test-> 217 passedNotes
AND-264,AND-262, andAND-263pending review/merge.