@@ -302,7 +302,7 @@ const CLI_COMMAND_SPEC = {
302302 },
303303 "review-pr": {
304304 subcommands: [],
305- usage: ["review-pr --login <github-login> [--repo owner/repo] [--base origin/main] [--commit <message>]... [--body <text>] [--body-file <path>] [--linked-issue <number>] [--json]"],
305+ usage: ["review-pr --login <github-login> [--repo owner/repo] [--base origin/main] [--commit <message>]... [--body <text>] [--body-file <path>] [--label <name>]... [-- linked-issue <number>] [--issue <number>]... [--json]"],
306306 },
307307 "lint-pr-text": { subcommands: [], usage: ["lint-pr-text [--commit <message>]... [--body <text>] [--body-file <path>] [--linked-issue <number>] [--json]"] },
308308 "validate-config": { subcommands: [], usage: ["validate-config --file <path> [--source repo_file|api_record|none] [--json]"] },
@@ -3194,12 +3194,16 @@ function writeBranchAnalysisTable(result: any, command: string) {
31943194function printReviewPrHelp() {
31953195 process.stdout.write(
31963196 [
3197- "Usage: loopover-mcp review-pr --login <github-login> [--repo owner/repo] [--base origin/main] [--commit <message>]... [--body <text>] [--body-file <path>] [--linked-issue <number>] [--json]",
3197+ "Usage: loopover-mcp review-pr --login <github-login> [--repo owner/repo] [--base origin/main] [--commit <message>]... [--body <text>] [--body-file <path>] [--label <name>]... [-- linked-issue <number>] [--issue <number>]... [--json]",
31983198 "",
31993199 "Compose the existing preflight + slop-risk + PR-text-lint checks into ONE pre-PR review report,",
32003200 "so a contributor's own local agent can see everything the loopover gate would flag before ever opening a PR.",
32013201 "Mirrors the loopover_review_pr_before_push MCP tool. Thin composition only — does not reimplement any check. No source upload.",
32023202 "",
3203+ "Repeat --label <name> to pass labels to the review request.",
3204+ "Repeat --issue <number> as an alternate way to provide linked issue numbers.",
3205+ "When both --linked-issue and --issue are provided, --linked-issue takes precedence and --issue is ignored.",
3206+ "",
32033207 "Pass --json for machine-readable output.",
32043208 ].join("\n") + "\n",
32053209 );
0 commit comments