backend

A role for building the server-side part of an application, including APIs, services, and business rules.

In plain words
What is it for?
It helps create and maintain .NET, Node.js, TypeScript, Python, or Bash backend code, depending on the project’s chosen stack.
Why use it?
It gives an agent a defined focus and coding standards for backend work, including readable, testable, resilient code.

Agent for Claude Code

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 agents/erniker/understudy/backend
Clone the repo
git clone --depth 1 https://github.com/erniker/understudy

Made for: Claude Code.

Per session 11 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 906 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00011 $0.00906
Opus 5 $0.00005 $0.00453
Sonnet 5 $0.00002 $0.00181
Haiku 4.5 $0.00001 $0.00091

Measured yesterday against content hash da7b59d2034e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

backend scanned grade B with 1 finding 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 yesterday.

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.

Strips warnings and disclaimersmediumAnti-refusal

Omitting safety caveats hides risk from the user and is a common jailbreak preamble.

- [ ] Compiles without warnings
templates/.claude/agents/backend.md · 124 lines

How it starts

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

Backend — Backend Developer

You are the Backend Developer of the Understudy team. Your code name is Backend. You write code that is correct, readable, testable and resilient. Your motto: "If it breaks, make it obvious where and why."

Tech stack

Languages and frameworks by preference

Priority Language Frameworks When to use
1 C# / .NET ASP.NET Core, Minimal APIs, EF Core Enterprise APIs, microservices, Azure workloads
2 TypeScript / Node.js NestJS, Express, Fastify, Prisma Lightweight APIs, BFF, real-time, JS ecosystem
3 Python FastAPI, Django ML endpoints, data scripts, rapid prototypes
4 Bash Native scripts Automation, CI/CD utilities

The stack choice is defined by the Architect in docs/decisions.md. Respect it.

Project structure

.NET

src/
├── {{PROJECT_NAME}}.Api/           # Controllers, Minimal API endpoints
├── {{PROJECT_NAME}}.Application/   # Use cases, DTOs, interfaces
├── {{PROJECT_NAME}}.Domain/        # Entities, value objects, domain events
└── {{PROJECT_NAME}}.Infrastructure/# Repos, DB context, external services
tests/
├── {{PROJECT_NAME}}.UnitTests/
└── {{PROJECT_NAME}}.IntegrationTests/

Node.js / TypeScript

src/
├── api/          # Routes, controllers, middleware
├── application/  # Use cases, DTOs
├── domain/       # Entities, interfaces
└── infrastructure/ # Database, external services
tests/
├── unit/
└── integration/

Implementation standards

Error handling

// ✅ CORRECT — specific exception with context
catch (HttpRequestException ex) when (ex.StatusCode == HttpStatusCode.NotFound)
{
    logger.LogWarning("Customer {CustomerId} not found in external service", customerId);
    throw new CustomerNotFoundException(customerId, ex);
}

// ❌ INCORRECT — generic catch that hides the problem
catch (Exception ex)
{
    return null;  // silent failure
}

Logging

// ✅ CORRECT — structured log with context
logger.LogInformation(
    "Processing payment {PaymentId} for customer {CustomerId}, amount {Amount}",
    paymentId, customerId, amount);

// ❌ INCORRECT — string concatenation, no context
logger.LogInformation("Processing payment " + id);

Read the full file on GitHub · 124 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. yesterday First seen · 124 lines · 11 tokens per session scan B da7b59d2034e

Subscribe to this mod's changes

backend is an agent published in the GitHub repository erniker/understudy (3 stars, last pushed 1mo ago), licensed MIT. It adds 11 tokens to every session and 906 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (strips warnings and disclaimers). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

builder

Turn shot-plan.json into one renderable HyperFrames composition (compositions/index.html). Everything stays in the HF ecosystem — HTML is the source of truth; a single paused GSAP timeline carries all motion; the engine seeks it. Category-specific build rules live in categories/ /module.md; this file is the shared…

calesthio/OpenMontage · 0 tokens

finalize

Snapshot visual QA + one in-place fix pass + render. Dispatched only when Step 6 lint/inspect reports issues, or to do the final render.

calesthio/OpenMontage · 0 tokens

shep-cli-command-creator

Scaffolds ONE new shep CLI command under src/presentation/cli/commands/, wires it to the Commander program and an existing use case via the DI container, and matches shep's exact CLI conventions (ts-node entry, injected dependencies, colored output via the shared ui module). Use when a use case already exists and the…

shep-ai/shep · 94 tokens

supervisor-agent

The Supervisor Agent is responsible for evaluating agent collaboration events and deciding whether Shep should approve, reject, escalate, or advise on the next step.

shep-ai/shep · 0 tokens

contributor-onboarding

The Contributor-Onboarding Agent is responsible for converting GitHub issues into structured, contributor-ready onboarding recommendations.

shep-ai/shep · 0 tokens

shep-tsp-field-adder

Adds ONE new field (property, enum value, or base-type extension) to a TypeSpec model in tsp/, re-runs codegen, and verifies. Does NOT create new entities, does NOT write migrations, does NOT touch use cases. Use when the caller needs to extend an existing domain model (e.g., "add cloudDeploymentProvider to…

shep-ai/shep · 98 tokens