Agent skill
triage-reviews
Fetch PR review comments, verify each against real code/docs, fix valid issues, commit and push
Install this agent skill to your Project
npx add-skill https://github.com/stickerdaniel/linkedin-mcp-server/tree/main/.agents/skills/triage-reviews
SKILL.md
Triage PR Review Comments
Fetch all review comments on the current PR, verify each finding against real code, fix valid issues, and push.
Phase 1: Gather Comments
-
Determine the PR number:
- Use
$ARGUMENTSif provided - Otherwise:
gh pr view --json number --jq .number
- Use
-
Fetch ALL comments (reviewers post in multiple places):
gh api --paginate repos/{owner}/{repo}/pulls/{pr}/reviews gh api --paginate repos/{owner}/{repo}/pulls/{pr}/comments gh api --paginate repos/{owner}/{repo}/issues/{pr}/comments -
Extract unique findings — deduplicate across Copilot, Greptile, and human reviewers. Group by file and line.
Phase 2: Verify Each Finding
For EVERY finding, verify against real code before accepting or rejecting:
- Read the actual code at the referenced file:line
- Check if the issue still exists — it may already be fixed in a later commit
- Verify correctness using:
- Code analysis (read surrounding context, trace call paths)
- Run
btca resourcesto see what's available, thenbtca ask -r <resource> -q "..."for library/framework questions - Web search for API behavior, language semantics, or CVEs
- Classify each finding:
- Valid — real bug, real gap, or real improvement needed
- False positive — reviewer misread the code, outdated reference, or style preference
Phase 3: Fix & Ship
- Fix all Valid findings
- Run the project's lint/test commands (check CLAUDE.md for exact commands)
- If lint/tests fail, fix the failures before committing
- If a failure cannot be fixed automatically, skip that fix and report it as Valid (unfixed) in the Phase 4 table
git addonly changed files,git commitwith message:fix: Address PR review feedback - <one-line summary per fix>- Push:
gt submit(orgit pushif not using Graphite)
Phase 4: Report
Present a final summary table of ALL findings with verdicts:
| # | Source | File:Line | Finding | Verdict | Reason |
|---|
Notes
- Never dismiss a finding without reading the actual code first
- If unsure, err toward "Valid" — it's cheaper to fix than to miss a bug
- For library/API questions, always use btca or web search — don't guess
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
verl-rl-training
Provides guidance for training LLMs with reinforcement learning using verl (Volcano Engine RL). Use when implementing RLHF, GRPO, PPO, or other RL algorithms for LLM post-training at scale with flexible infrastructure backends.
openrlhf-training
High-performance RLHF framework with Ray+vLLM acceleration. Use for PPO, GRPO, RLOO, DPO training of large models (7B-70B+). Built on Ray, vLLM, ZeRO-3. 2× faster than DeepSpeedChat with distributed architecture and GPU resource sharing.
gguf-quantization
GGUF format and llama.cpp quantization for efficient CPU/GPU inference. Use when deploying models on consumer hardware, Apple Silicon, or when needing flexible quantization from 2-8 bit without GPU requirements.
Claude Code Guide
Master guide for using Claude Code effectively. Includes configuration templates, prompting strategies "Thinking" keywords, debugging techniques, and best practices for interacting with the agent.
qdrant-vector-search
High-performance vector similarity search engine for RAG and semantic search. Use when building production RAG systems requiring fast nearest neighbor search, hybrid search with filtering, or scalable vector storage with Rust-powered performance.
behavioral-modes
AI operational modes (brainstorm, implement, debug, review, teach, ship, orchestrate). Use to adapt behavior based on task type.
Didn't find tool you were looking for?