backend-systems-guidance

backend-systems-guidance is a skill for Claude Code, Codex from n-n-code/n-n-code-skills. It costs 66 tokens per session (1,574 once invoked), scanned A, original, MIT.

A set of rules for designing and reviewing complex server-side software that communicates over a network, uses data stores, or crosses security boundaries.

In plain words
What is it for?
Use it for backend services, HTTP or gRPC endpoints, webhooks, queue workers, message producers, repositories, transactions, authentication, and related tests.
Why use it?
It helps expose reliability, architecture, data-handling, and trust problems that can be missed in a simple request handler.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it for backend services, HTTP or gRPC endpoints, webhooks, queue workers, message producers, repositories, transactions, authentication, and related tests.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/n-n-code/n-n-code-skills/backend-systems-guidance
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 n-n-code/n-n-code-skills --skill backend-systems-guidance
Clone the repo
git clone --depth 1 https://github.com/n-n-code/n-n-code-skills

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 backend-systems-guidance

README.md
[![agentmods](https://agentmods.dev/badge/skills/n-n-code/n-n-code-skills/backend-systems-guidance.svg)](https://agentmods.dev/skills/n-n-code/n-n-code-skills/backend-systems-guidance)
Your own site
<a href="https://agentmods.dev/skills/n-n-code/n-n-code-skills/backend-systems-guidance"><img src="https://agentmods.dev/badge/skills/n-n-code/n-n-code-skills/backend-systems-guidance.svg" alt="Measured on agentmods" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,574 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.00066 $0.01574
Opus 5 $0.00033 $0.00787
Sonnet 5 $0.00013 $0.00315
Haiku 4.5 $0.00007 $0.00157

Measured 2d ago against content hash f514fc0dd26a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

backend-systems-guidance 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 2d 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.

.agents/skills/backend-systems-guidance/SKILL.md · 152 lines

How it starts

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

Backend Systems Guidance

This is a composable overlay, not a standalone workflow. Use alongside the repo's implementation skill when the change touches backend code.

Choose activity independently from backend depth. A review request is read-only unless the user also asks for remediation; use the architecture and reliability rules as inspection criteria and report findings instead of changing code.

This is the canonical backend overlay in this repo. It extends the thin baseline backend-guidance overlay with stronger guidance for non-trivial service boundaries, repositories, reliability, and trust boundaries.

Prefer it over backend-guidance when the task includes new endpoints or consumers, multi-layer refactors, repository or transaction work, auth or trust-boundary logic, or backend review that needs explicit testing and reliability checks.

Use the bundled references only when needed:

When to use

  • the repo has server-side networked code such as HTTP handlers, gRPC methods, webhooks, queue consumers, or message producers
  • the task adds or reshapes routes, controllers, services, repositories, middleware, or request-processing boundaries
  • the task changes auth, authorization, validation, idempotency, retries, external requests, caching, or observability
  • the task needs backend review beyond basic handler thinness, especially for security, data access, or missing tests

Not for

  • HTTP client code, CLI tooling, offline batch scripts, or data pipelines with no request or consumer boundary
  • frontend-only work
  • threat modeling or security audit work where security should be the primary workflow skill

Do not fold infrastructure deployment workflows, outbound-client-only guidance, or full security-audit checklists into this skill. Keep this overlay centered on backend request and consumer systems plus their immediate reliability and trust boundaries.

Read the full file on GitHub · 152 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 2d ago Changed · +1 lines f514fc0dd26a
  2. 7d ago First seen · 151 lines · 66 tokens per session scan A ccb946b0eb96

Subscribe to this mod's changes

backend-systems-guidance is a skill published in the GitHub repository n-n-code/n-n-code-skills (4 stars, last pushed 2d ago), licensed MIT. It adds 66 tokens to every session and 1,574 once invoked, about $0.0003 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

httpie

Use this skill whenever the user wants to make HTTP requests, test APIs, call REST endpoints, debug web services, or interact with any HTTP/HTTPS API using the HTTPie CLI tool (http command). Trigger this skill for any request involving: sending GET/POST/PUT/PATCH/DELETE requests, testing API endpoints, sending JSON…

jjmartres/ai-coding-agents · 148 tokens

web-api-tester

Test API endpoints for correctness, edge cases, auth handling, and OpenAPI contract compliance.

0x-Professor/Agent-Skills-Hub · 23 tokens

web-auth-integrator

Integrate authentication and authorization flows with provider-specific setup and RBAC safeguards.

0x-Professor/Agent-Skills-Hub · 20 tokens

web-backend-builder

Scaffold backend API, data models, ORM setup, and endpoint inventory with OpenAPI output.

0x-Professor/Agent-Skills-Hub · 24 tokens

mcp-builder

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

jjmartres/ai-coding-agents · 61 tokens

creating-springboot-projects

Use when starting a new Spring Boot 4 project — scaffolding a service, REST API, or modular backend; picking an architecture (layered, package-by-module, modular-monolith, tomato, DDD-hexagonal); selecting Spring Boot 4 features; or applying the bundled templates and references in this skill. Not for migrating…

a-pavithraa/springboot-skills-marketplace · 91 tokens