You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This writes validation JSON, comparison JSON/Markdown, `pack_review_ci_result.json`, JUnit, SARIF, and a bundled dashboard for local inspection.
342
+
This writes validation JSON, comparison JSON/Markdown, `pack_review_ci_result.json`, JUnit, SARIF, and a bundled dashboard for local inspection. Add `--clean` when repeated local runs should remove stale review and bundle artifacts before rebuilding.
342
343
343
344
Build one uploadable report bundle for CI artifacts or release evidence:
The command above is equivalent to the expanded workflow below:
75
+
Use `--clean` for repeated local runs so stale validation, comparison, JUnit, SARIF, or dashboard files do not survive from earlier smoke checks. The command above is equivalent to the expanded workflow below:
pack_smoke_parser.add_argument("right", help="Candidate or release eval pack JSON.")
207
208
pack_smoke_parser.add_argument("--review-dir", default=".skillbench/pack-review-smoke", help="Directory for intermediate validation, comparison, JUnit, SARIF, and CI artifacts.")
208
209
pack_smoke_parser.add_argument("--bundle-output", default=".skillbench/pack-review-bundle", help="Directory for the generated report bundle.")
210
+
pack_smoke_parser.add_argument("--clean", action="store_true", help="Remove the review and bundle output directories before writing new smoke artifacts.")
209
211
pack_smoke_parser.add_argument("--json", action="store_true", help="Print machine-readable smoke result JSON.")
210
212
211
213
bundle_parser=sub.add_parser("bundle", help="Build a publishable report bundle with dashboard, PR comment, CI artifacts, and raw artifact manifests.")
Copy file name to clipboardExpand all lines: skills/skillbench/SKILL.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ Use the SkillBench runtime to evaluate and evolve Codex skills.
18
18
-`pack-checklist`: render a Markdown authoring checklist for reviewing an eval pack before CI.
19
19
-`pack-compare`: compare eval pack versions for case and coverage changes, with optional removed-coverage CI gates.
20
20
-`pack-review-artifacts`: build pack review CI result JSON, JUnit, and SARIF from eval pack review artifacts.
21
-
-`pack-review-smoke`: run local pack review smoke from two eval packs and build the same evidence bundle used in CI.
21
+
-`pack-review-smoke`: run local pack review smoke from two eval packs and build the same evidence bundle used in CI; add `--clean` for repeated local runs.
22
22
-`list-cases`: inspect case IDs, tags, modes, and dimensions before filtering.
23
23
-`eval`: score one candidate against an eval set.
24
24
-`lift`: compare with-skill and without-skill runs to measure skill utility.
0 commit comments