atherio-danp

34 mods across 1 repository, 109 stars between them.

architect-backend

01

atherio-danp/cde-dotnetcc

Agent Claude Code

The definitive read-only authority on the .NET backend — architecture, project structure, every standard/rule, and all canonical patterns. Reviews backend changes (apps/api) for rule adherence and hunts for real bugs, returning severity-bucketed findings. Never edits code.

109 1mo ago A 57 tokens

architect-frontend

02

atherio-danp/cde-dotnetcc

Agent Claude Code

Read-only frontend reviewer for the Next.js/React app. Validates adherence to the project's own frontend standards and hunts for bugs. Use to review frontend changes under apps/web. Never edits code. (Fully exercised once apps/web is scaffolded.).

109 1mo ago A 53 tokens

architect-fullstack

03

atherio-danp/cde-dotnetcc

Agent Claude Code

Read-only reviewer of the API↔BFF seam and cross-stack concerns — request/response contract parity, ProblemDetails handling, SSE relay, auth/tenancy across the boundary. Use when a change spans apps/api and apps/web. Never edits code.

109 1mo ago A 56 tokens

findings-verifier

04

atherio-danp/cde-dotnetcc

Agent Claude Code

Adversarially verifies a single architect finding by reading the actual code line by line, returning a real/noise verdict with evidence. Used by the architect-review workflow to pre-filter findings before the main agent's final triage.

109 1mo ago A 51 tokens

implementer

05

atherio-danp/cde-dotnetcc

Agent Claude Code

Implements an approved implementation plan in the .NET/Next.js codebase. Spawned by the impl-build workflow to build a plan section — edits C# via Serena, builds, and reports files changed. Not for ad-hoc use.

109 1mo ago A 52 tokens

rca-investigator

06

atherio-danp/cde-dotnetcc

Agent Claude Code

Read-only root-cause investigator for the .NET backend — diagnoses runtime/production issues (errors, anomalies, failures, performance) by combining code analysis, SQL, and telemetry. Produces an evidence-backed root cause + a minimal-fix proposal (a fix-list impl-build can consume). Never edits code.

109 1mo ago A 67 tokens

atherio-danp/cde-dotnetcc

Agent Claude Code

The backend security authority for the .NET API — audits against OWASP Top 10 (mapped to .NET 10 / Minimal API / EF Core on Npgsql), tenant isolation, secret handling, and EU data residency. Read-only; returns severity-bucketed, verifiable findings. Backend-specific (the frontend has its own auditor).

109 1mo ago A 75 tokens

testing-expert

08

atherio-danp/cde-dotnetcc

Agent Claude Code

Writes and runs the tests specified by an implementation plan's exact test list, then reports exact pass/fail/skip counts. Used by the impl-build workflow. Owns test authorship; never weakens a test to make it pass. (Fully exercised once apps/api/tests + an approved test stack exist.).

109 1mo ago A 66 tokens

validator

09

atherio-danp/cde-dotnetcc

Agent Claude Code

Read-only validator that checks an implementation against its plan and the project rules and returns a structured pass/fail verdict. Used by the impl-build workflow after the implementer; gates the fix loop. Never edits code.

109 1mo ago A 45 tokens

PreToolUse

10

atherio-danp/cde-dotnetcc

Hook Claude Code

Runs before the agent uses a tool for Edit, Write, MultiEdit, Bash and PowerShell tool calls, running pwsh (2 commands). From atherio-danp/cde-dotnetcc.

109 1mo ago A tokens not measured

cde-dotnetcc

12

atherio-danp/cde-dotnetcc

Settings file Claude Code

Agent settings declaring 2 hook events (PreToolUse, SessionStart) and 14 allowed tools.

109 1mo ago A tokens not measured

add-domain-entity

13

atherio-danp/cde-dotnetcc

Skill Claude CodeCodex

Add a domain entity, aggregate, or value object to the .NET API — rich mutable class with private ctor + static factory (UUIDv7), invariants that throw, tenantid, identity equality; records for value objects. Use when modeling new domain state under apps/api/{{ProjectName}}.Domain.

109 1mo ago A 67 tokens

add-endpoint

14

atherio-danp/cde-dotnetcc

Skill Claude CodeCodex

Add a Minimal API endpoint (a feature/use case) to the .NET API — feature folder, IEndpoint self-registration, contract validation, Kommand dispatch, Result→ProblemDetails. Use when adding or changing an HTTP endpoint under apps/api/{{ProjectName}}.Api.

109 1mo ago A 59 tokens

cqrs-kommand

15

atherio-danp/cde-dotnetcc

Skill Claude CodeCodex

Author a CQRS command or query in the {{ProductName}} backend using the Kommand library, the three-scope validation model, and the Result failure pattern. Use whenever creating or modifying a command/query/handler/validator in apps/api/{{ProjectName}}.Application, or wiring its endpoint in {{ProjectName}}.Api.

109 1mo ago A 74 tokens

dotnet-ai-stack

16

atherio-danp/cde-dotnetcc

Skill Claude CodeCodex

Choose and wire AI features in the .NET backend — LLM calls, agentic tool-calling/multi-step workflows, RAG/vector search, structured output, streaming. Use when adding or changing anything that talks to a model or orchestrates agents (your agentic pipeline). Tailored to our LLM provider + MAF + pgvector stack.

109 1mo ago A 76 tokens

atherio-danp/cde-dotnetcc

Skill Claude CodeCodex

Scan .NET/C# code for performance anti-patterns (async, memory/strings, collections/LINQ, regex, serialization, I/O) with tiered severity, reporting findings without editing. Use when auditing hot paths, reviewing allocation-heavy code, or analyzing the API for optimization opportunities.

109 1mo ago A 64 tokens

efcore-patterns

18

atherio-danp/cde-dotnetcc

Skill Claude CodeCodex

Add or change EF Core (Npgsql/PostgreSQL) persistence in the .NET backend — entities, EF configurations, repositories, queries, migrations. Use when adding a table/entity, a query, a repository, or a migration under apps/api.

109 1mo ago A 55 tokens

atherio-danp/cde-dotnetcc

Skill Claude CodeCodex

Optimize EF Core (Npgsql/PostgreSQL) queries in the .NET API — fix N+1, choose tracking modes, use compiled queries, split queries, and avoid translation traps. Use when a query is slow, emits excessive SQL, or causes high DB load. Complements the efcore-patterns scaffolding skill.

109 1mo ago A 71 tokens

explain-codebase

20

atherio-danp/cde-dotnetcc

Skill Claude CodeCodex

Explain how a specific area / file / feature / topic actually works — grounded line-by-line in the real code, with file:line citations. Use when asked to explain, trace, or understand a part of the code (e.g. "explain the model router", "how does the agentic pipeline work", "trace what CreateProject does"). Read-only…

109 1mo ago A 85 tokens

mcp-csharp

21

atherio-danp/cde-dotnetcc

Skill Claude CodeCodex

Create, debug, test, and publish MCP (Model Context Protocol) servers in C# using the official ModelContextProtocol SDK — tools/prompts/resources, stdio vs HTTP transport, MapMcp hosting. Use when building or changing an MCP server in the .NET backend (relevant to your agentic pipeline).

109 1mo ago A 69 tokens

microbenchmarking

22

atherio-danp/cde-dotnetcc

Skill Claude CodeCodex

Create, run, configure, and interpret BenchmarkDotNet microbenchmarks in the .NET API — measure and compare approaches, runtime configs, or package versions. Use when proving a performance change, comparing implementations, or validating a hot-path optimization. (Not for profiling or load testing.).

109 1mo ago A 61 tokens

onboard

23

atherio-danp/cde-dotnetcc

Skill Claude CodeCodex

Produce a structured "get up to speed on this whole project" orientation — vision, architecture, where things live, conventions, how to do common tasks, current state — grounded in the real code/config with pointers. Optionally writes/updates docs/ONBOARDING.md. Use when asked to onboard, give a project overview, or…

109 1mo ago A 90 tokens

atherio-danp/cde-dotnetcc

Skill Claude CodeCodex

Add or change OpenTelemetry tracing, metrics, and structured logging in the .NET API (apps/api) — OTLP exporter setup, custom ActivitySource spans, IMeterFactory metrics, log/trace correlation. Use when adding observability, custom spans/metrics, or troubleshooting distributed traces.

109 1mo ago A 63 tokens