efcore-repos

efcore-repos is a skill for Claude Code, Codex from baoduy/drunk-mcp-proxy. It costs 28 tokens per session (2,813 once invoked), scanned A, original, MIT.

A guide for using DKNet's Entity Framework Core repository package to organize database access in .NET applications.

In plain words
What is it for?
It helps set up generic repositories, separate read and write operations with CQRS, project data into DTOs with Mapster, and manage transactions.
Why use it?
It gives generated code a consistent way to read and write database records instead of placing all database logic directly in application code.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps set up generic repositories, separate read and write operations with CQRS, project data into DTOs with Mapster, and manage transactions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/baoduy/drunk-mcp-proxy/efcore-repos
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 baoduy/drunk-mcp-proxy --skill efcore-repos
Clone the repo
git clone --depth 1 https://github.com/baoduy/drunk-mcp-proxy

Made for: Claude Code, Codex.

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 efcore-repos

README.md
[![agentmods](https://agentmods.dev/badge/skills/baoduy/drunk-mcp-proxy/efcore-repos.svg)](https://agentmods.dev/skills/baoduy/drunk-mcp-proxy/efcore-repos)
Your own site
<a href="https://agentmods.dev/skills/baoduy/drunk-mcp-proxy/efcore-repos"><img src="https://agentmods.dev/badge/skills/baoduy/drunk-mcp-proxy/efcore-repos.svg" alt="Measured on agentmods" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,813 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.00028 $0.02813
Opus 5 $0.00014 $0.01406
Sonnet 5 $0.00006 $0.00563
Haiku 4.5 $0.00003 $0.00281

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

Security

Grade A, and why

efcore-repos 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 7d 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.

data/skills/dknet/efcore-repos/SKILL.md · 485 lines

How it starts

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

EF Core Repositories Skill

This skill helps GitHub Copilot generate code using DKNet's EF Core Repositories package (DKNet.EfCore.Repos) for implementing the Repository pattern with Entity Framework Core.

🎯 Package Purpose

DKNet.EfCore.Repos provides:

  • Repository Pattern - Abstract data access with repositories
  • Generic Repositories - Type-safe repositories for any entity
  • CQRS Support - Separate read/write repositories
  • Mapster Integration - Efficient projections for DTOs
  • Transaction Management - Built-in transaction support

NuGet Package: DKNet.EfCore.Repos

📦 Installation

dotnet add package DKNet.EfCore.Repos
dotnet add package DKNet.EfCore.Repos.Abstractions
dotnet add package Mapster

🏗️ Setup

Register Repositories

using Microsoft.Extensions.DependencyInjection;
using DKNet.EfCore.Repos;

public void ConfigureServices(IServiceCollection services)
{
    // Add DbContext
    services.AddDbContext<AppDbContext>(options =>
        options.UseSqlServer(connectionString));
    
    // Add Mapster for projections
    services.AddMapster();
    
    // Register generic repositories
    services.AddGenericRepositories<AppDbContext>();
    
    // Or register specific repositories
    services.AddScoped<IProductRepository, ProductRepository>();
}

🎯 Usage Patterns

Pattern 1: Generic Repository

Use built-in generic repository for simple CRUD:

using DKNet.EfCore.Repos.Abstractions;

public class ProductService
{
    private readonly IRepository<Product> _repository;
    
    public ProductService(IRepository<Product> repository)
    {
        _repository = repository;
    }
    
    public async Task<Product> CreateProductAsync(
        CreateProductRequest request,
        CancellationToken cancellationToken)
    {
        var product = new Product
        {
            Name = request.Name,
            Price = request.Price,
            CategoryId = request.CategoryId
        };
        
        await _repository.AddAsync(product, cancellationToken);
        await _repository.SaveChangesAsync(cancellationToken);
        
        return product;
    }
    
    public async Task<Product?> GetProductAsync(
        Guid id,
        CancellationToken cancellationToken)
    {
        return await _repository.GetByIdAsync(id, cancellationToken);
    }
    
    public async Task<IReadOnlyList<Product>> GetAllProductsAsync(
        CancellationToken cancellationToken)
    {
        var spec = new ActiveProductsSpec();
        return await _repository.ToListAsync(spec, cancellationToken);
    }
    
    public async Task UpdateProductAsync(
        Product product,
        CancellationToken cancellationToken)
    {
        await _repository.UpdateAsync(product, cancellationToken);
        await _repository.SaveChangesAsync(cancellationToken);
    }
    
    public async Task DeleteProductAsync(
        Guid id,
        CancellationToken cancellationToken)
    {
        await _repository.DeleteAsync(id, cancellationToken);
        await _repository.SaveChangesAsync(cancellationToken);
    }
}

Read the full file on GitHub · 485 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. 7d ago First seen · 485 lines · 28 tokens per session scan A 35e79f268b32

Subscribe to this mod's changes

efcore-repos is a skill published in the GitHub repository baoduy/drunk-mcp-proxy (0 stars, last pushed 5mo ago), licensed MIT. It adds 28 tokens to every session and 2,813 once invoked, about $0.0001 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

azure-resource-manager-postgresql-dotnet

Azure PostgreSQL Flexible Server SDK for .NET. Database management for PostgreSQL Flexible Server deployments. Use for creating servers, databases, firewall rules, configurations, backups, and high availability. Triggers: "PostgreSQL", "PostgreSqlFlexibleServer", "PostgreSQL Flexible Server", "Azure Database for…

microsoft/skills · 97 tokens

optimizing-ef-core-queries

Optimize and improve the performance of slow Entity Framework Core (EF Core) queries: make them generate less SQL, make fewer database round-trips, and return results faster. Use whenever an EF Core or DbContext query or data-access path is slow or should be made faster — whether or not EF Core owns the database…

dotnet/skills · 86 tokens

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…

managedcode/dotnet-skills · 110 tokens

efcore-patterns

Entity Framework Core best practices including NoTracking by default, query splitting for navigation collections, migration management, dedicated migration services, and common pitfalls to avoid.

Aaronontheweb/dotnet-skills · 35 tokens

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…

managedcode/dotnet-skills · 114 tokens

ef-core

Entity Framework Core patterns for .NET 10. Covers DbContext configuration, migrations workflow, interceptors, compiled queries, ExecuteUpdateAsync, ExecuteDeleteAsync, value converters, and query optimization. Load this skill when working with databases, writing queries, managing schema changes, or when the user…

codewithmukesh/dotnet-claude-kit · 113 tokens