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/nicogenti/opencode-orchestrator-kit/dotnet-conventionsnpx skills add NicoGenti/opencode-orchestrator-kit --skill dotnet-conventionsgit clone --depth 1 https://github.com/NicoGenti/opencode-orchestrator-kitWrote 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/nicogenti/opencode-orchestrator-kit/dotnet-conventions)<a href="https://agentmods.dev/skills/nicogenti/opencode-orchestrator-kit/dotnet-conventions"><img src="https://agentmods.dev/badge/skills/nicogenti/opencode-orchestrator-kit/dotnet-conventions.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.00038 | $0.00461 |
| Opus 5 | $0.00019 | $0.00230 |
| Sonnet 5 | $0.00008 | $0.00092 |
| Haiku 4.5 | $0.00004 | $0.00046 |
Grade A, and why
dotnet-conventions 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.
What it actually says
.NET Conventions
Apply these conventions consistently. Prefer clarity and modern C# features over legacy patterns [web:61].
Naming
- PascalCase for types, methods, and public members.
- camelCase for local variables and parameters.
- Prefix interfaces with
I(e.g.,IRepository). - Prefix private fields with
_(e.g.,_httpClient). - Use language keywords for built-in types (
string,int) instead of runtime type names (String,Int32) [web:61]. - Use
intrather than unsigned types unless interop specifically requires it [web:61].
Style
- Use
varonly when the type is obvious from the right-hand side; otherwise use the explicit type [web:61]. - Use modern language features (pattern matching, records, nullable reference types) over outdated constructs [web:61].
- Use LINQ for collection manipulation where it improves readability; avoid LINQ chains so long they hurt readability.
- Use
async/awaitfor I/O-bound work; be careful withConfigureAwaitin library code to avoid deadlocks [web:61]. - Catch specific exception types with meaningful messages; do not catch bare
Exceptionwithout a filter [web:61]. - Keep methods short (aim under ~50 lines); if a method grows past that, extract private helper methods.
Structure
- One primary type per file; file name matches the type name.
- Group namespace imports alphabetically,
System.*first, at the top of the file, outside the namespace block. - Prefer dependency injection via constructor over static/service-locator patterns.
- Prefer the repository/service pattern already used in the codebase over introducing a new abstraction layer — check 2-3 existing services before adding a new pattern.
When Reviewing
Flag violations of the above, but prioritize behavior-affecting issues (nullability bugs, unawaited tasks, exception swallowing) over pure style nits.
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 · 40 lines · 38 tokens per session scan A 5dd82b732ab6
dotnet-conventions is a skill published in the GitHub repository NicoGenti/opencode-orchestrator-kit (5 stars, last pushed today), licensed MIT. It adds 38 tokens to every session and 461 once invoked, about $0.0002 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
se-dev-game-code
Allows reading the decompiled C# code of Space Engineers version 1.
se-dev-script
In-game (programmable block, aka PB) script development for Space Engineers version 1. Search script code for examples and patterns.
dotnet-coding-standards
명시적 /dotnet-coding-standards 호출 전용 .NET 참고서. 일반 구현에는 자동 적용하지 않고 프로젝트 구조와 네이티브 코딩 능력을 우선한다.
wpf-coding-standards
명시적 /wpf-coding-standards 호출 전용 WPF 참고서. 일반 C#/XAML 작성에는 자동 적용하지 않는다.
Cursor rules for Aspnet Abp
Skill "Cursor rules for Aspnet Abp" from AmariahAK/atlarix-skills, covering cursor rules for aspnet abp, when to use this skill, source, abp .net development rules and code style and structure.
C# Patterns
Use this skill when working in C# projects (.NET) and you want patterns for async correctness, clear layering, and safe dependency injection.