Skip to content
Closed
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
bf99dcb
fix(ops): make recording exporters honor --help without writing artif…
nish3451 Aug 11, 2026
2b0f3b3
Merge branch 'main' into fix/recording-exporter-cli-help-lane1-20260812
nish3451 Aug 12, 2026
831bec0
Merge branch 'main' into fix/recording-exporter-cli-help-lane1-20260812
nish3451 Aug 12, 2026
6670a4f
Merge branch 'main' into fix/recording-exporter-cli-help-lane1-20260812
nish3451 Aug 12, 2026
08da46a
Merge branch 'main' into fix/recording-exporter-cli-help-lane1-20260812
nish3451 Aug 12, 2026
71b64f3
Merge branch 'main' into fix/recording-exporter-cli-help-lane1-20260812
nish3451 Aug 12, 2026
883dccb
Merge branch 'main' into fix/recording-exporter-cli-help-lane1-20260812
nish3451 Aug 12, 2026
e9c7414
Merge branch 'main' into fix/recording-exporter-cli-help-lane1-20260812
nish3451 Aug 12, 2026
27b92c7
Merge branch 'main' into fix/recording-exporter-cli-help-lane1-20260812
nish3451 Aug 12, 2026
e093da8
Merge branch 'main' into fix/recording-exporter-cli-help-lane1-20260812
nish3451 Aug 12, 2026
4cbe390
Merge branch 'main' into fix/recording-exporter-cli-help-lane1-20260812
nish3451 Aug 12, 2026
21805b4
Merge branch 'main' into fix/recording-exporter-cli-help-lane1-20260812
nish3451 Aug 13, 2026
5d30b79
Merge branch 'main' into fix/recording-exporter-cli-help-lane1-20260812
nish3451 Aug 13, 2026
e204128
Merge branch 'main' into fix/recording-exporter-cli-help-lane1-20260812
nish3451 Aug 13, 2026
8cab031
Merge branch 'main' into fix/recording-exporter-cli-help-lane1-20260812
nish3451 Aug 13, 2026
c55cd39
Merge branch 'main' into fix/recording-exporter-cli-help-lane1-20260812
nish3451 Aug 13, 2026
ca0d6ff
Merge branch 'main' into fix/recording-exporter-cli-help-lane1-20260812
nish3451 Aug 13, 2026
eaf5116
Merge branch 'main' into fix/recording-exporter-cli-help-lane1-20260812
nish3451 Aug 13, 2026
4d82c3d
merge: resolve conflicts with main (adopt shared handleHelp refactor)
nish3451 Aug 18, 2026
fde1cd9
Merge branch 'main' into fix/recording-exporter-cli-help-lane1-20260812
nish3451 Aug 19, 2026
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
5 changes: 5 additions & 0 deletions scripts/export-recording-rehearsal-check.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ import { localIsoDate } from "./date-utils.mjs";
import { handleHelp, resolveOutputPath } from "./lib/operator-cli.mjs";
import { listOutboundProspectFolders } from "./lib/outbound-prospects.mjs";

if (process.argv.includes("--help") || process.argv.includes("-h")) {
console.log("Usage: npm run prospect:rehearsal -- [--limit=5] [--include-smoke] [--output=prospects/recording-rehearsal-check.md] [--html=prospects/recording-rehearsal-check.html]");
process.exit(0);
}

const args = process.argv.slice(2);
handleHelp(args, `Usage: node scripts/export-recording-rehearsal-check.mjs [--limit=5] [--output=prospects/recording-rehearsal-check.md] [--html=prospects/recording-rehearsal-check.html] [--include-smoke]`);
const limitArg = args.find((arg) => arg.startsWith("--limit="));
Expand Down
Loading