efcore-specifications

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

A guide for using DKNet.EfCore.Specifications, a .NET package for storing reusable database query conditions in typed specification classes.

In plain words
What is it for?
Building dynamic EF Core queries with reusable specifications, runtime predicates, and combined AND or OR conditions.
Why use it?
It helps keep complex and changing filters reusable, composable, and checked by the compiler.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/baoduy/drunk-mcp-proxy/efcore-specifications
Any agent
npx skills add baoduy/drunk-mcp-proxy --skill efcore-specifications
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-specifications

README.md
[![agentmods](https://agentmods.dev/badge/skills/baoduy/drunk-mcp-proxy/efcore-specifications.svg)](https://agentmods.dev/skills/baoduy/drunk-mcp-proxy/efcore-specifications)
Your own site
<a href="https://agentmods.dev/skills/baoduy/drunk-mcp-proxy/efcore-specifications"><img src="https://agentmods.dev/badge/skills/baoduy/drunk-mcp-proxy/efcore-specifications.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 3,501 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00028 $0.03501
Opus 5 $0.00014 $0.01750
Sonnet 5 $0.00006 $0.00700
Haiku 4.5 $0.00003 $0.00350

Measured 4d ago against content hash 8859fddd221b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

efcore-specifications 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 4d 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-specifications/SKILL.md · 540 lines

How it starts

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

EF Core Specifications Skill

This skill helps GitHub Copilot generate code using DKNet's EF Core Specifications package (DKNet.EfCore.Specifications) for building reusable, type-safe, and dynamic queries.

🎯 Package Purpose

DKNet.EfCore.Specifications provides:

  • Specification Pattern - Encapsulate query logic in reusable classes
  • Dynamic Predicates - Build queries from runtime conditions safely
  • LinqKit Integration - Compose complex expressions with .And(), .Or()
  • Type Safety - Compile-time checking with runtime flexibility

NuGet Package: DKNet.EfCore.Specifications

📦 Installation

dotnet add package DKNet.EfCore.Specifications

🏗️ Core Concepts

1. Specification Pattern

Specifications encapsulate query logic for reusability and testability.

Basic Specification
using DKNet.EfCore.Specifications;

/// <summary>
///     Specification for filtering active products.
/// </summary>
public class ActiveProductsSpec : Specification<Product>
{
    /// <summary>
    ///     Initializes a new instance of the <see cref="ActiveProductsSpec"/> class.
    /// </summary>
    public ActiveProductsSpec()
    {
        // Define filter criteria
        WithFilter(p => !p.IsDeleted && p.IsActive);
        
        // Add ordering
        AddOrderBy(p => p.Name);
    }
}

// Usage
var spec = new ActiveProductsSpec();
var products = await repository.ToListAsync(spec, cancellationToken);
Specification with Parameters
/// <summary>
///     Specification for products by category with optional price filter.
/// </summary>
public class ProductsByCategorySpec : Specification<Product>
{
    /// <summary>
    ///     Initializes a new instance of the <see cref="ProductsByCategorySpec"/> class.
    /// </summary>
    /// <param name="categoryId">The category identifier.</param>
    /// <param name="minPrice">Optional minimum price filter.</param>
    public ProductsByCategorySpec(Guid categoryId, decimal? minPrice = null)
    {
        // Base filter
        var predicate = PredicateBuilder.New<Product>(
            p => !p.IsDeleted && p.CategoryId == categoryId);
        
        // Add optional price filter
        if (minPrice.HasValue)
        {
            predicate = predicate.And(p => p.Price >= minPrice.Value);
        }
        
        WithFilter(predicate);
        
        // Include related entities
        AddInclude(p => p.Category);
        AddInclude(p => p.Reviews);
        
        // Add ordering
        AddOrderBy(p => p.Price);
        AddOrderByDescending(p => p.Rating);
    }
}

Read the full file on GitHub · 540 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. 4d ago First seen · 540 lines · 28 tokens per session scan A 8859fddd221b

Subscribe to this mod's changes

efcore-specifications 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 3,501 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

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

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