Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add mir-am/skills-agents-ai-coding --skill gh-copilot-reviewgit clone --depth 1 https://github.com/mir-am/skills-agents-ai-codingWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/mir-am/skills-agents-ai-coding/gh-copilot-review)<a href="https://agentmods.dev/skills/mir-am/skills-agents-ai-coding/gh-copilot-review"><img src="https://agentmods.dev/badge/skills/mir-am/skills-agents-ai-coding/gh-copilot-review/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/mir-am/skills-agents-ai-coding/gh-copilot-review"><img src="https://agentmods.dev/badge/skills/mir-am/skills-agents-ai-coding/gh-copilot-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00020 | $0.00849 |
| Opus 5 | $0.00010 | $0.00425 |
| Sonnet 5 | $0.00004 | $0.00170 |
| Haiku 4.5 | $0.00002 | $0.00085 |
Grade A, and why
gh-copilot-review scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 96 lines — stays where its author put it; the contents beside it link to each section on GitHub.
What I do
- Accept a GitHub pull request URL or PR number
- Validate GitHub CLI (
gh) access and PR visibility - Request a standard GitHub Copilot review for the whole PR
- Return a concise result with the PR URL
When to use me
Use this skill when the user wants to request a GitHub Copilot review on a pull request.
Prerequisites
- GitHub CLI (
gh) v2.88.0 or later must be installed and authenticated - If given only a PR number, the current repository must have a GitHub
originremote - The target PR must be accessible with the current GitHub credentials
- If
ghnot installed -> error:Error: GitHub CLI not found. Install: https://cli.github.com/ - If not authenticated -> error:
Error: Not authenticated with GitHub. Run: gh auth login
Input Handling
Accept either of these forms:
- Full GitHub PR URL
- Example:
https://github.com/owner/repo/pull/123
- Example:
- PR number
- Example:
123
- Example:
Resolution rules:
- If input is a full PR URL, use it directly with
gh pr view <pr>. - If input is a PR number, resolve the repository from
git remote get-url origin. - If the input is neither a valid URL nor a PR number, error with
Error: Provide a GitHub PR URL or PR number.
Workflow
-
Validate GitHub access
gh auth status -
Resolve PR metadata
- For PR URL:
gh pr view <pr> --json number,title,url,author,baseRefName,headRefName - For PR number in current repo:
git remote get-url origin gh pr view <number> --json number,title,url,author,baseRefName,headRefName
- For PR URL:
-
Request Copilot review for the full PR
gh pr edit <pr> --add-reviewer @copilot # or, for PR number in the current repository gh pr edit <number> --add-reviewer @copilot -
Report results
Requested GitHub Copilot review for PR #123. - Mode: Added @copilot as reviewer via gh CLI - PR: https://github.com/owner/repo/pull/123
Error Handling
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 96 lines · 20 tokens per session scan A 8a30e32b9f2c
gh-copilot-review is a skill published in the GitHub repository mir-am/skills-agents-ai-coding (2 stars, last pushed 4mo ago), licensed MIT. It adds 20 tokens to every session and 849 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
code-review
Reviews code diffs and files for security vulnerabilities (OWASP Top 10), error handling, complexity, naming conventions, and performance issues. Use when the user asks to review a PR, pull request, diff, merge request, or code changes.
ubiquitous-language
Use when evaluating the ubiquitous language in a codebase - produces a glossary of domain terms with references and commentary on inconsistencies, awkward names, or overlapping concepts.
coding
Use when five specialized coding agents (linter, perf, refactor, security, test) that enforce quality gates across the development lifecycle. From lint enforcement through performance profiling, refactoring, security auditing, and test coverage. Use when working with coding agents.
lavra-review
Perform exhaustive code reviews using multi-agent analysis and ultra-thinking.
lavra-eng-review
Engineering review -- parallel agents check architecture, simplicity, security, and performance.
swe-review
Review an SWE brief, research report, spec, delivery plan, execution state, implementation diff, branch, or pull request. Use for fresh-context, evidence-backed findings before the human chooses the next action.