dev:pr-fix

Installation
SKILL.md

Compatibility: If AskUserQuestion is unavailable, present options as a numbered list and wait for the user's reply. If Task is unavailable, run parallel steps sequentially. The context: fork and agent: frontmatter fields are Claude Code-specific — on OpenCode and VS Code Copilot they are ignored and the skill runs inline using the current model.

Arguments

  • pr-id (optional positional): PR/MR number to fix. If omitted, processes all open PRs/MRs with pending review comments.
  • --github / --gitlab: Override auto-detected provider
  • --silent: Suppress desktop notification on completion

Step 0: Detect Provider and Parse Arguments

Check arguments for pr-id (optional) and --github/--gitlab override flags.

Auto-detect provider from git remote:

  • git remote get-url origin → contains "github" → PROVIDER=github
  • contains "gitlab" → PROVIDER=gitlab
  • Override with --github or --gitlab flags

Parse --silent flag: if present, set SILENT=true, else SILENT=false.

Installs
11
First Seen
Mar 21, 2026
dev:pr-fix — cloudvoyant/codevoyant