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 baoduy/drunk-mcp-proxy --skill efcore-abstractionsgit clone --depth 1 https://github.com/baoduy/drunk-mcp-proxyWrote 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/baoduy/drunk-mcp-proxy/efcore-abstractions)<a href="https://agentmods.dev/skills/baoduy/drunk-mcp-proxy/efcore-abstractions"><img src="https://agentmods.dev/badge/skills/baoduy/drunk-mcp-proxy/efcore-abstractions.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.1 | $0.00029 | $0.03288 |
| Opus 5 | $0.00015 | $0.01644 |
| Sonnet 5 | $0.00006 | $0.00658 |
| Haiku 4.5 | $0.00003 | $0.00329 |
Grade A, and why
efcore-abstractions 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.
How it starts
The opening of the file, as written. The whole thing — 578 lines — stays where its author put it; the contents beside it link to each section on GitHub.
EF Core Abstractions Skill
This skill helps GitHub Copilot generate code using DKNet's EF Core Abstractions package (DKNet.EfCore.Abstractions) for creating domain entities with audit trails, events, and soft delete support.
🎯 Package Purpose
DKNet.EfCore.Abstractions provides:
- Base Entity Classes - Generic entity foundations with various key types
- Audit Interfaces - Automatic tracking of who/when records were created/modified
- Event Management - Domain event support for entities
- Soft Delete - Logical deletion without physical removal
- Concurrency Control - Optimistic concurrency with row versions
NuGet Package: DKNet.EfCore.Abstractions
📦 Installation
dotnet add package DKNet.EfCore.Abstractions
🏗️ Base Entity Types
EntityBase (Simple Guid ID Entity)
using DKNet.EfCore.Abstractions;
/// <summary>
/// Product entity.
/// </summary>
public class Product : EntityBase
{
/// <summary>
/// Initializes a new instance of the <see cref="Product"/> class.
/// </summary>
public Product()
{
Id = Guid.NewGuid();
}
public string Name { get; set; } = string.Empty;
public decimal Price { get; set; }
public int Stock { get; set; }
public bool IsActive { get; set; } = true;
}
// Inherits: Guid Id, DateTime CreatedAt, DateTime? UpdatedAt
Entity (Custom Key Type)
using DKNet.EfCore.Abstractions;
/// <summary>
/// Order entity with integer key.
/// </summary>
public class Order : Entity<int>
{
public Guid CustomerId { get; set; }
public DateTime OrderDate { get; set; }
public decimal TotalAmount { get; set; }
public OrderStatus Status { get; set; }
}
// Inherits: int Id, DateTime CreatedAt, DateTime? UpdatedAt
AuditEntity (With Audit Trail)
using DKNet.EfCore.Abstractions;
/// <summary>
/// Customer entity with full audit trail.
/// </summary>
public class Customer : AuditEntity<Guid>
{
public Customer()
{
Id = Guid.NewGuid();
}
public string Name { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string Phone { get; set; } = string.Empty;
public string Address { get; set; } = string.Empty;
}
// Inherits: Guid Id, DateTime CreatedAt, DateTime? UpdatedAt
// string CreatedBy, string? UpdatedBy
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.
- 7d ago First seen · 578 lines · 29 tokens per session scan A abddeb8ef70a
efcore-abstractions is a skill published in the GitHub repository baoduy/drunk-mcp-proxy (0 stars, last pushed 5mo ago), licensed MIT. It adds 29 tokens to every session and 3,288 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.
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…
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…
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…
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.
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…
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…