
claude-plugins
Claude Code plugins from Erik Darling Data
Install with your AI
Paste into Claude Code, Cursor, or any agent — it reads the repo and wires the tool into your project.
Install and set up claude-plugins (claude-plugin project) into my current project. Found on https://claudeers.com/claude-plugins Repo: https://github.com/erikdarlingdata/claude-plugins Homepage/docs: — Detected install method: claude-plugin → /plugin install claude-plugins@erikdarlingdata/claude-plugins Category: plugins. Platforms: cli, api. Read the repo's README for exact setup and env vars, then install it and wire it into my project. Claudeers Health Verdict: active; community-verified: false. Confirm the source before running anything.
/plugin marketplace add erikdarlingdata/claude-plugins /plugin install claude-plugins@erikdarlingdata/claude-plugins
git clone https://github.com/erikdarlingdata/claude-plugins
// compatibility
| Platforms | cli, api |
|---|---|
| Operating systems | — |
| AI compatibility | claude |
| License | MIT |
| Pricing | open-source |
| Language | Python |
Darling Data — Claude Code plugins
A Claude Code plugin marketplace from Darling Data.
/plugin marketplace add erikdarlingdata/claude-plugins
Plugins
sqlserver-query-plans
Teaches Claude to read a SQL Server execution plan and say what is actually slow, and why.
/plugin install sqlserver-query-plans@erikdarling
Point Claude at a .sqlplan file and ask. The skill is model-invoked — you do not
need to call it explicitly.
The hard part of plan analysis is not spotting operators. It is knowing which numbers mean what they appear to mean. This plugin is built mostly out of the conclusions that sound authoritative and are wrong:
- Cost percentages are estimates in every plan, including actual plans. Nothing recomputes them after execution. The 97%-cost operator is routinely not the slow one, and an operator shown at 0% can consume the entire runtime.
- Row-mode operator times are cumulative. Ranking operators by raw
ActualElapsedmsranks them by depth and always crowns the root node. Batch mode reports standalone times. Exchange operators report times that are close to meaningless. EstimateRowsis per-execution;ActualRowsis a total. Without dividing byActualExecutions, the inner side of every nested loop looks catastrophically underestimated when it may have estimated perfectly.- Missing-index requests are hints, not DDL. Equality columns come out in
arbitrary order, existing indexes are ignored, and the
Impactfigure is a percentage of an estimated cost. - A scan is not a defect and a seek is not a virtue. Judge by rows touched and time spent.
It also ships scripts/extract.py, which flattens a .sqlplan into a compact
digest. This is not a convenience:
.sqlplanfiles are UTF-16, sogrepsilently matches nothing and reports no error. A negative result fromgrepon a plan file is worthless.- Some plans are UTF-8 bytes that still declare
encoding="utf-16", because they were opened and re-saved. Strict XML parsers reject them. - A trivial two-table join is 120 KB. Real plans run to megabytes. Reading one into context wastes the context and still misses things.
The extractor handles the encoding, computes correct self-time attribution
(subtracting children in row mode, within a thread rather than across threads in
parallel plans, and not at all in batch mode), normalizes cardinality per
execution, and recognizes the optimizer's default-guess selectivity fingerprints.
--node N drills into a single operator; --sql recovers full statement text.
Requires Python 3 (standard library only). Without it, the skill degrades to a
documented grep-based fallback and says plainly what it cannot determine.
GitHub Copilot CLI
This plugin also works in GitHub Copilot CLI,
which reads the same SKILL.md and plugin.json format.
copilot plugin marketplace add erikdarlingdata/claude-plugins
copilot plugin install sqlserver-query-plans@erikdarling
Or add just the skill, without the marketplace:
/skills add ./plugins/sqlserver-query-plans/skills/query-plan-analysis
As in Claude Code, the skill is model-invoked: point Copilot at a .sqlplan and ask.
About
Built by Erik Darling at Darling Data. SQL Server consulting, training, and free tools: https://erikdarling.com
License
MIT
// faq
What is claude-plugins?
Claude Code plugins from Erik Darling Data. It is open-source on GitHub.
Is claude-plugins free to use?
claude-plugins is open-source under the MIT license, so it is free to use.
What category does claude-plugins belong to?
claude-plugins is listed under plugins in the Claudeers registry of Claude-compatible tools.
// embed badge
[](https://claudeers.com/claude-plugins)
// retro hit counter
[](https://claudeers.com/claude-plugins)
// reviews
// guestbook
// related in Claude Plugins
A single CLAUDE.md file to improve Claude Code behavior, derived from Andrej Karpathy's observations on LLM coding pitfalls.
Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explainin…
"CLI-Anything: Making ALL Software Agent-Native" -- CLI-Hub: https://clianything.cc/
financial-services — a Claude ecosystem project on GitHub.