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 skills add Benknightdark/neo-skills --skill neo-dotnet-ef-coregit clone --depth 1 https://github.com/Benknightdark/neo-skillsWrote 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/benknightdark/neo-skills/neo-dotnet-ef-core)<a href="https://agentmods.dev/skills/benknightdark/neo-skills/neo-dotnet-ef-core"><img src="https://agentmods.dev/badge/skills/benknightdark/neo-skills/neo-dotnet-ef-core/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.
<a href="https://agentmods.dev/skills/benknightdark/neo-skills/neo-dotnet-ef-core"><img src="https://agentmods.dev/badge/skills/benknightdark/neo-skills/neo-dotnet-ef-core.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00046 | $0.00884 |
| Opus 5 | $0.00023 | $0.00442 |
| Sonnet 5 | $0.00009 | $0.00177 |
| Haiku 4.5 | $0.00005 | $0.00088 |
Grade A, and why
neo-dotnet-ef-core 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.
How it starts
The opening of the file, as written. The whole thing — 83 lines — stays where its author put it; the contents beside it link to each section on GitHub.
EF Core Expert Skill
Trigger On
- The user requests database modeling, writing Linq queries, or handling database migrations.
- The project contains a
DbContextclass or references theMicrosoft.EntityFrameworkCorepackage. - There is a need to optimize database access performance or solve N+1 query problems.
- The task involves complex data relationship design (one-to-many, many-to-many, inheritance mapping).
Workflow
- Perceive (Model Awareness):
- Check
.csprojto identify the EF Core version and database provider. - Analyze
DbContextand entity configurations to confirm whether the Fluent API pattern is adopted. - Identify the current state of Migrations.
- Check
- Reason (Planning Phase):
- Evaluate whether queries need
.AsNoTracking()or.AsSplitQuery(). - Determine whether custom interceptors are needed to handle audit fields.
- Evaluate whether to use
ExecuteUpdate/Delete(.NET 7+) for massive data updates.
- Evaluate whether queries need
- Act (Execution Phase):
- Write efficient and safe Linq queries.
- Implement entity configuration classes (
IEntityTypeConfiguration). - Create and execute database migration commands.
- Validate (Standard Validation):
- Check if the generated SQL meets performance expectations (avoiding full table scans).
- Validate concurrency conflict handling logic.
- Ensure all database accesses follow asynchronous patterns.
Feature Roadmap (.NET 6 - 10)
.NET 6 & 7 (Foundation)
- Split Queries: Solve the Cartesian product problem.
- Bulk Operations: Use
ExecuteUpdate/Deletefor high-performance updates. - JSON Columns: Built-in JSON mapping support.
- Compiled Models: Reduce startup time for large models.
.NET 8 & 9 (Productivity)
- Primitive Collections: Use simple type collections in queries.
- HierarchyId: Support for SQL Server hierarchical data.
- Auto-compiled Queries: Further optimize the query compilation process.
- Complex Types: Better support for Value Objects.
What ships with it
3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 12d ago First seen · 83 lines · 46 tokens per session scan A a5585d4a8c93
neo-dotnet-ef-core is a skill published in the GitHub repository Benknightdark/neo-skills (7 stars, last pushed 6d ago), licensed MIT. It adds 46 tokens to every session and 884 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
entity-framework-core
Design, tune, or review EF Core data access with proper modeling, migrations, query translation, performance, and lifetime management for modern .NET applications. USE FOR: DbContext, migrations, model configuration, EF queries, tracking, loading, performance, transactions, and EF6 migration decisions. DO NOT USE FOR…
entity-framework6
Maintain or migrate EF6-based applications with realistic guidance on what to keep, what to modernize, and when EF Core is or is not the right next step. USE FOR: EF6 codebases; runtime versus ORM migration decisions; EDMX, code-first, ObjectContext, and legacy data-access review. DO NOT USE FOR: unrelated stacks…
neo4j-driver-dotnet-skill
Neo4j .NET Driver v6 — IDriver lifecycle, DI registration (singleton), ExecutableQuery fluent API, ExecuteReadAsync/ExecuteWriteAsync managed transactions, IResultCursor (FetchAsync/ ToListAsync), record value access (.Get /As ), null safety, UNWIND batching, temporal types, await using, EagerResult, object mapping…
csharp-dotnet
Use when building on .NET 8+ with C# 12. Covers nullable reference types, records, async/await correctness, minimal APIs, dependency injection, and EF Core query performance.
ruby
Use when writing Ruby or working in Rails codebases. Covers idiomatic object design, service objects, ActiveRecord query performance, RSpec structure, and RuboCop-clean style.
azure-resource-manager-mysql-dotnet
Azure MySQL Flexible Server SDK for .NET. Database management for MySQL Flexible Server deployments.