vela

vela is a skill for Claude Code from dbhq-uk/vela-skill. It costs 164 tokens per session (3,499 once invoked), scanned A, original, MIT.

A compiler-aware search tool for .NET code, including C#, Visual Basic, Razor Pages, MVC views, and Blazor components. It uses the code's meaning to find definitions, references, callers, and likely breakage from a change.

In plain words
What is it for?
It helps find where a .NET symbol is defined, locate every meaningful reference and caller, include references in Razor and Blazor files, and assess what a change may break.
Why use it?
Plain text search can return many unrelated matches and cannot reliably show which symbol a reference belongs to. This makes it easier to understand the impact of changing common names.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the vela plugin — 1 skill shipped together

Good fit It helps find where a .NET symbol is defined, locate every meaningful reference and caller, include references in Razor and Blazor files, and assess what a change may break.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dbhq-uk/vela-skill/vela
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 dbhq-uk/vela-skill --skill vela
Clone the repo
git clone --depth 1 https://github.com/dbhq-uk/vela-skill

Made for: Claude Code.

Or install vela, the plugin that ships this one along with the rest of its 1 skill.

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 vela

README.md
[![agentmods](https://agentmods.dev/badge/skills/dbhq-uk/vela-skill/vela/github.svg)](https://agentmods.dev/skills/dbhq-uk/vela-skill/vela)
Your own site
<a href="https://agentmods.dev/skills/dbhq-uk/vela-skill/vela"><img src="https://agentmods.dev/badge/skills/dbhq-uk/vela-skill/vela/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 vela

Your own site · 80×15
<a href="https://agentmods.dev/skills/dbhq-uk/vela-skill/vela"><img src="https://agentmods.dev/badge/skills/dbhq-uk/vela-skill/vela.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 164 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,499 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00164 $0.03499
Opus 5 $0.00082 $0.01750
Sonnet 5 $0.00033 $0.00700
Haiku 4.5 $0.00016 $0.00350

Measured 9d ago against content hash 74ec4dd55c7e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

vela 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 9d 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/vela/SKILL.md · 130 lines

How it starts

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

vela

Compiler-exact code search for .NET. Answers come from Roslyn's semantic model, so they are what the compiler believes rather than what a pattern matched.

Deterministic: no model calls, no network, and it never modifies the repository it indexes.

When to use this instead of grep

Use grep when the identifier is distinctive. grep -w PerfumeService returns thirty-two lines, costs nothing, and needs no index.

Use vela when:

  • the name is ordinary - Name, Status, Value, Id, Update. Measured on a real solution, grep is 91 to 99% noise for these.
  • you need callers, not just textual matches
  • you need to know what breaks if you change something
  • the symbol might be referenced from a .cshtml or .razor file. Nothing else indexes these, including grep, which finds the text but cannot tell you it binds to a specific property on a specific type
  • grep returned more hits than you can read, which means the answer is now a context-window problem rather than a search problem

Steps

1. Ensure an index exists

vela index

Builds the index for the solution in the current directory. It costs about what a build costs: roughly 8 seconds on a scaffolded Razor Pages app, and about five minutes at 2.1GB peak on ScentVerdict, a real ten-project solution of 388,323 lines of C# with 334 Razor views, measured 30 July 2026. Expect it to scale with the solution rather than to match that figure. It is needed once, plus after any code change: the index is a snapshot, and every verb reports it as degraded once a watched file under the repository root is newer than it.

A deleted or renamed file is caught too, and by a different route: the index records the files it was built from, and every query compares that record against the tree. Without it a rename was invisible - moving a file keeps its modification time, so the new path is not newer than the index - and every reference to the file kept answering at exit 0, naming a path that could not be opened.

Read the full file on GitHub · 130 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. 9d ago First seen · 130 lines · 164 tokens per session scan A 74ec4dd55c7e

Subscribe to this mod's changes

vela is a skill published in the GitHub repository dbhq-uk/vela-skill (6 stars, last pushed 5d ago), licensed MIT. It adds 164 tokens to every session and 3,499 once invoked, about $0.0008 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

system-text-json-net11

Imperative guidance for the System.Text.Json APIs added in .NET 11: the built-in JsonNamingPolicy.PascalCase naming policy, and the strongly-typed JsonSerializerOptions.GetTypeInfo () and JsonSerializerOptions.TryGetTypeInfo (out JsonTypeInfo ? info) metadata accessors. USE ONLY when the user is targeting net11.0 or…

managedcode/dotnet-skills · 178 tokens

basemind

Navigate large or unfamiliar codebases via the basemind MCP server — outlines, symbol search, reference/caller lookups, commit history, blame, and diffs without reading source files. Reach for it whenever the user asks "where is X defined", "what calls Y", "what changed recently in Z", or whenever you're about to grep…

Goldziher/basemind · 82 tokens

basemind-code-search

Find where code is defined and used without reading files — symbol search, file outlines, references, callers, call graphs, implementations, dependents, and indexed regex over content. Reach for it whenever the user asks "where is X defined", "what calls Y", "what implements Z", "what's the shape of this file", or…

Goldziher/basemind · 86 tokens

mapsui

Use when embedding interactive 2D maps in .NET desktop (WinForms/WPF) or mobile (MAUI) applications — tile layers, vector features, map controls. Mapsui: cross-platform .NET map component library.

znlgis/opengis-skills · 49 tokens

defining-wpf-dependencyproperty

Defines WPF DependencyProperty with Register, PropertyMetadata, callbacks, and validation. Use when creating custom controls, attached properties, or properties that support data binding and styling.

christian289/dotnet-with-claudecode · 34 tokens

codemeridian-refactor

Plan safer refactors with CodeMeridian by checking graph freshness, exact symbols, impact, tests, duplication, and architecture risk before editing.

Driftya/code-meridian · 34 tokens