dev:pr-fix
Installation
SKILL.md
Compatibility: If
AskUserQuestionis unavailable, present options as a numbered list and wait for the user's reply. IfTaskis unavailable, run parallel steps sequentially. Thecontext: forkandagent: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
--githubor--gitlabflags
Parse --silent flag: if present, set SILENT=true, else SILENT=false.