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 agentmods add skills/zexion7873/copilot-setting/sql-reviewnpx skills add zexion7873/copilot-setting --skill sql-reviewgit clone --depth 1 https://github.com/zexion7873/copilot-settingWrote 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/zexion7873/copilot-setting/sql-review)<a href="https://agentmods.dev/skills/zexion7873/copilot-setting/sql-review"><img src="https://agentmods.dev/badge/skills/zexion7873/copilot-setting/sql-review.svg" alt="Measured on agentmods" 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 | $0.00110 | $0.01366 |
| Opus 5 | $0.00055 | $0.00683 |
| Sonnet 5 | $0.00022 | $0.00273 |
| Haiku 4.5 | $0.00011 | $0.00137 |
Grade A, and why
sql-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 3d 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 — 107 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SQL Review — Workflow
SQL-focused review covering both queries and schema migrations. Rules: instructions/sql.instructions.md (queries) + instructions/sql-ddl.instructions.md (migrations).
Phase 0 — Load canonical rules
MANDATORY pre-load gate — do NOT report findings (Phase 7) until you have opened the instruction files for the SQL under review. Your training data defaults to modern Java/Spring; these files are the version lock for Java 8 / Spring 3.2 / Hibernate 4.2. Open them first, every time — the negative lists in the agent body are a floor, not the full rules:
instructions/sql.instructions.md— SQL injection, indexing, JDBC resourcesinstructions/sql-ddl.instructions.md— MySQL DDL & migration safety, stored proceduresinstructions/spring-hibernate.instructions.md— Hibernate hbm.xml mappings to re-align after a schema changeinstructions/xml-config.instructions.md— hbm.xml structure / conventions
Read-back receipt (self-check, not machine-enforced): before leaving this step, NAME each instruction file you opened above and QUOTE the single most load-bearing rule from each that applies to this change — a generic restatement you could have written from memory means you skipped the file, so open it for real.
Phase 1 — Collect and Classify
Find all SQL in scope: raw JDBC, HQL, native queries, stored procedures, dynamic query construction, and migration scripts (DDL / data-modifying DML).
Route each statement:
- Queries (SELECT / application-level DML) → Phases 2–3
- Migrations (CREATE / ALTER / DROP, backfill UPDATE / DELETE / INSERT SELECT) → Phases 4–6. Classify target table size (small <100k rows, medium 100k–10M, large >10M). Ask if unknown. Note migration ordering and inter-statement dependencies.
Skip the phases of the track that has no statements in scope.
Phase 2 — Check Query Security
- Parameters bound via
?or:named— never concatenated -
LIKEwildcards sanitized - No sensitive columns in
SELECT *
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.
- 3d ago First seen · 107 lines · 110 tokens per session scan A bc9f740d22a8
sql-review is a skill published in the GitHub repository zexion7873/copilot-setting (1 stars, last pushed 1mo ago), licensed MIT. It adds 110 tokens to every session and 1,366 once invoked, about $0.0006 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
jira-cli
Interact with Jira from the command line to create, list, view, edit, and transition issues, manage sprints and epics, and perform common Jira workflows. Use when the user asks about Jira tasks, tickets, issues, sprints, or needs to manage project work items.
azure-prices
Look up and compare Azure service pricing using the Azure Retail Prices API. Use this skill whenever the user asks about Azure costs, pricing, rates, or wants to compare prices across regions or services — even if they don't say "pricing" explicitly. Trigger for questions like "how much does a D2 v2 VM cost?"…
calculator
Performs arbitrary-precision arithmetic calculations including addition, subtraction, multiplication, division, and exponents. Use when the user asks to calculate, compute, or evaluate math expressions, or when precise decimal arithmetic is needed to avoid floating-point errors.
az-cli
Use the Azure CLI (az) to manage Azure resources from the command line. Trigger this skill whenever the user asks to create, configure, manage, deploy, or interact with any Azure resource — even if they don't explicitly mention "az cli". Also trigger when the user asks about Azure CLI commands, syntax, or wants to…
rubber-duck
Invoke a Rubber Duck Reviewer subagent to independently critique plans and implementations before proceeding. Use when the agent is about to implement a non-trivial plan (multi-file changes, architectural decisions, security-sensitive logic, database schema changes), after completing a self-contained unit of work…
plan-task
Create a detailed implementation plan before coding. Use when starting a new feature, multi-step refactor, or complex task. Invoked by saying "plan", "create a plan", or "plan this task".