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/thangchung/agent-engineering-experiment/dotnet-inspectnpx skills add thangchung/agent-engineering-experiment --skill dotnet-inspectgit clone --depth 1 https://github.com/thangchung/agent-engineering-experimentWrote 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/thangchung/agent-engineering-experiment/dotnet-inspect)<a href="https://agentmods.dev/skills/thangchung/agent-engineering-experiment/dotnet-inspect"><img src="https://agentmods.dev/badge/skills/thangchung/agent-engineering-experiment/dotnet-inspect.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.00054 | $0.01608 |
| Opus 5 | $0.00027 | $0.00804 |
| Sonnet 5 | $0.00011 | $0.00322 |
| Haiku 4.5 | $0.00005 | $0.00161 |
Grade A, and why
dotnet-inspect 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 5d 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.
This is a copy
100% identical to dotnet-inspect — 238 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 120 lines — stays where its author put it; the contents beside it link to each section on GitHub.
dotnet-inspect
Query .NET library APIs — the same commands work across NuGet packages, platform libraries (System., Microsoft.AspNetCore.), and local .dll/.nupkg files.
Quick Decision Tree
- Code broken? →
diff --package [email protected]first, thenmember --oneline - Need API surface? →
member Type --package Foo --oneline(token-efficient) - Need signatures? →
member Type --package Foo -m Method(default shows full signatures + docs) - Need source/IL? →
member Type --package Foo -m Method -v:d(adds Source, Lowered C#, IL) - Need constructors? →
member 'Type<T>' --package Foo -m .ctor(use<T>not<>) - Need all overloads? →
member Type --package Foo --select(showsName:Nindices)
When to Use This Skill
- "What types are in this package?" —
typediscovers types (terse),findsearches by pattern - "What's the API surface?" —
typefor discovery,memberfor detailed inspection (docs on) - "What changed between versions?" —
diffclassifies breaking/additive changes - "This code uses an old API — fix it" —
diffthe old..new version, thenmember --onelineto see the new API - "What extends this type?" —
extensionsfinds extension methods/properties - "What implements this interface?" —
implementsfinds concrete types - "What does this type depend on?" —
dependswalks the type hierarchy upward - "What version/metadata does this have?" —
packageandlibraryinspect metadata - "Show me something cool" —
demoruns curated showcase queries
Key Patterns
Use --oneline as the default for scanning — it works on type, member, find, diff, and implements:
dnx dotnet-inspect -y -- member JsonSerializer --package System.Text.Json --oneline # scan members
dnx dotnet-inspect -y -- type --package System.Text.Json --oneline # scan types
dnx dotnet-inspect -y -- diff --package [email protected] --oneline # triage 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.
- 5d ago First seen · 120 lines · 54 tokens per session scan A 944d0d4130c9
dotnet-inspect is a skill published in the GitHub repository thangchung/agent-engineering-experiment (24 stars, last pushed 1mo ago), licensed MIT. It adds 54 tokens to every session and 1,608 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to dotnet-inspect, differing in 238 lines, and is treated as a copy.
Other skills, from other repositories
csharp-docs
Ensure that C# types are documented with XML comments and follow best practices for documentation.
csharp-xunit
Get best practices for XUnit unit testing, including data-driven tests.
ef-core
Get best practices for Entity Framework Core.
csharp-async
Get best practices for C# async programming.
dotnet-reverse
.NET / C# 二进制逆向。当目标是 .NET assembly(PE 头含 CLR、.exe/.dll 托管程序)、C# 编译产物(含 NativeAOT)、红队 Sharp 工具(Rubeus / SharpHound / SharpHound 等)、.NET 混淆程序(ConfuserEx / SmartAssembly / Babel / Eazfuscator)、.NET loader / info-stealer / 套壳 malware 时使用。优先用 dnSpyEx + de4dot,需要 AI 直接操作时联动 dnSpy MCP。不用于纯 native 二进制(走 reverse-engineering /…
build-and-test
How to build and test .NET projects in the Agent Framework repository. Use this when verifying or testing changes.