rider-search

rider-search is a skill for Claude Code from JSungMin/rider-mcp-enforcer. It costs 60 tokens per session (1,542 once invoked), scanned A, original, MIT.

A set of routing rules for searching C#/.NET and Unreal C++ projects open in JetBrains Rider, a code editor. It directs code searches and refactoring through Rider’s project-aware tools.

In plain words
What is it for?
Use it to find symbols, definitions, files, text, and references, inspect type information, and safely rename symbols in Rider projects.
Why use it?
Shell searches can miss project structure, references, or IDE indexing information. These rules also clarify that the project must be open and indexed in Rider.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents.

Part of the rider-mcp-enforcer plugin — 1 skill, 5 commands, 1 agent, 1 MCP server, 1 plugin shipped together

Good fit Use it to find symbols, definitions, files, text, and references, inspect type information, and safely rename symbols in Rider projects.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jsungmin/rider-mcp-enforcer/rider-search
Install

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.

Any agent
npx skills add JSungMin/rider-mcp-enforcer --skill rider-search
Clone the repo
git clone --depth 1 https://github.com/JSungMin/rider-mcp-enforcer

Made for: Claude Code.

Or install rider-mcp-enforcer, the plugin that ships this one along with the rest of its 1 skill, 5 commands, 1 agent, 1 MCP server, 1 plugin.

Wrote 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.

agentmods badge for rider-search

README.md
[![agentmods](https://agentmods.dev/badge/skills/jsungmin/rider-mcp-enforcer/rider-search/github.svg)](https://agentmods.dev/skills/jsungmin/rider-mcp-enforcer/rider-search)
Your own site
<a href="https://agentmods.dev/skills/jsungmin/rider-mcp-enforcer/rider-search"><img src="https://agentmods.dev/badge/skills/jsungmin/rider-mcp-enforcer/rider-search/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.

agentmods 80×15 button for rider-search

Your own site · 80×15
<a href="https://agentmods.dev/skills/jsungmin/rider-mcp-enforcer/rider-search"><img src="https://agentmods.dev/badge/skills/jsungmin/rider-mcp-enforcer/rider-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,542 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00060 $0.01542
Opus 5 $0.00030 $0.00771
Sonnet 5 $0.00012 $0.00308
Haiku 4.5 $0.00006 $0.00154

Measured 12d ago against content hash 6c4b24292415, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

rider-search 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 12d 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.

skills/rider-search/SKILL.md · 87 lines

How it starts

The opening of the file, as written. The whole thing — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Rider search routing

This project is open in JetBrains Rider with the Rider MCP server connected (server name: rider-search). Karpathy-style rules: do the listed thing, do not improvise.

Tools (real Rider MCP 2025.2+ names)

  • Symbol / definition → search_symbol (args: q, limit, include_external, paths, projectPath). Never grep/rg for this.
  • File by name → search_file or find_files_by_name_keyword / find_files_by_glob. Never find -name for source files.
  • Text / regex in code (also the way to find references — see note) → search_text / search_regex (or search_in_files_by_text / search_in_files_by_regex).
  • Type info / signature at a position → get_symbol_info (args: filePath, line, column).
  • Rename a symbol → rename_refactoring (args: pathInProject, symbolName, newName). Never sed/replace across files for a rename.
  • read_file / get_file_text_by_path to read, not cat.

projectPath / open projects

  • Rider MCP only searches projects currently open in the IDE (and finished indexing). A path that isn't open returns "doesn't correspond to any open project" — tell the user to open it in Rider.
  • Rider errors if multiple projects are open and projectPath is omitted. Pass projectPath, or have the user set RIDER_PROJECT_PATH so the proxy injects it. If a call returns "Unable to determine the target project" with a numbered project list, ask the user which project, then pass its path.

No dedicated find-usages

This Rider MCP build has no semantic find-references/find-usages tool. To find references, use search_text/search_regex on the symbol name (string match, like grep but indexed + token-capped). Don't claim semantic usage results you didn't get.

Inline lookup vs. delegating to the code-locator subagent

  • One or two quick lookups whose results you want in front of you: call the Rider tool inline. That's the cheapest path. A subagent spends ~15k tokens of its own to hand back ~300, so it's wasteful for a single lookup.
  • The moment you reach a third related lookup, or you already know this is a multi-step trace (find the symbol, then its callers, then where those are declared), hand the whole investigation to the code-locator subagent in one call. It runs every lookup in its own context and returns one compact file:line table, so the raw results never pile up in yours.
  • Rule of thumb: inline for 1–2; batch-delegate at 3+ related lookups or any multi-step trace. Don't spawn a subagent for a single lookup, and don't run ten sequential inline lookups when one delegation would do. "Related" is the signal — count alone doesn't decide it.

Read the full file on GitHub · 87 lines

Changes

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.

  1. 12d ago First seen · 87 lines · 60 tokens per session scan A 6c4b24292415

Subscribe to this mod's changes

rider-search is a skill published in the GitHub repository JSungMin/rider-mcp-enforcer (2 stars, last pushed 4d ago), licensed MIT. It adds 60 tokens to every session and 1,542 once invoked, about $0.0003 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.

Related

Other skills, from other repositories

spm-build-analysis

Analyze Swift Package Manager dependencies, package plugins, module variants, and CI-oriented build overhead that slow Xcode builds. Use when a developer suspects packages, plugins, or dependency graph shape are hurting clean or incremental build performance, mentions SPM slowness, package resolution time, build…

carloshpdoc/ios-workflow-claude · 87 tokens

xcode-compilation-analyzer

Analyze Swift and mixed-language compile hotspots using build timing summaries and Swift frontend diagnostics, then produce a recommend-first source-level optimization plan. Use when a developer reports slow compilation, type-checking warnings, expensive clean-build compile phases, long CompileSwiftSources tasks…

carloshpdoc/ios-workflow-claude · 74 tokens

profiling

Use the free official .NET diagnostics CLI tools for profiling and runtime investigation in .NET repositories. USE FOR: the repo needs performance or runtime profiling for a .NET application; the user asks about slow code, high CPU, GC pressure, allocation growth, exception storms, lock. DO NOT USE FOR: replacing…

managedcode/dotnet-skills · 119 tokens

dotnet-analyzers

Run dotnet format to fix code style and analyzer diagnostics (IDE0005, CA, SA). Use when fixing unnecessary usings, code style violations, analyzer warnings, or verifying format compliance.

NikiforovAll/claude-code-rules · 45 tokens

roslyn-codelens

Use when working with any .NET / C# code (.cs/.csproj/.sln/.slnx files), finding callers/references/implementations, checking compiler errors or warnings, running dotnet build for diagnostics, searching for a type/method/interface by name, inspecting DI registrations, detecting dead code or circular dependencies…

MarcelRoozekrans/roslyn-codelens-mcp · 104 tokens

aspnet-core-knowledge-patch

Use this patch when implementing, reviewing, testing, or upgrading ASP.NET Core applications. Check breaking behavior first, then open only the topic references relevant to the task.

Nevaberry/nevaberry-plugins · 11 tokens