backend-architecture

backend-architecture is a skill for Claude Code, Codex from GoldenWing-360/claude-security-skills. It costs 86 tokens per session (4,091 once invoked), scanned A, original, MIT.

A backend design guide for services that must keep working after restarts, redeployments, or modest growth. A backend is the server-side part of an application that handles data and requests.

In plain words
What is it for?
Use it when designing or reviewing a backend, planning a move from prototype to production, handling stored data and migrations, or preparing a service for handoff.
Why use it?
It addresses problems such as lost uploads, dropped jobs, failed deployments, and applications that break when run on more than one server.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when designing or reviewing a backend, planning a move from prototype to production, handling stored data and migrations, or preparing a service for handoff.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/goldenwing-360/claude-security-skills/backend-architecture
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 GoldenWing-360/claude-security-skills --skill backend-architecture
Clone the repo
git clone --depth 1 https://github.com/GoldenWing-360/claude-security-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-architecture

README.md
[![agentmods](https://agentmods.dev/badge/skills/goldenwing-360/claude-security-skills/backend-architecture/github.svg)](https://agentmods.dev/skills/goldenwing-360/claude-security-skills/backend-architecture)
Your own site
<a href="https://agentmods.dev/skills/goldenwing-360/claude-security-skills/backend-architecture"><img src="https://agentmods.dev/badge/skills/goldenwing-360/claude-security-skills/backend-architecture/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for backend-architecture

Your own site · 80×15
<a href="https://agentmods.dev/skills/goldenwing-360/claude-security-skills/backend-architecture"><img src="https://agentmods.dev/badge/skills/goldenwing-360/claude-security-skills/backend-architecture.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,091 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.00086 $0.04091
Opus 5 $0.00043 $0.02046
Sonnet 5 $0.00017 $0.00818
Haiku 4.5 $0.00009 $0.00409

Measured 12d ago against content hash 3f279504fce7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

backend-architecture 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 12d 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.

backend-architecture/SKILL.md · 338 lines

How it starts

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

Backend Architecture — the Solutions Architect Baseline

The most common mistake in vibe-coded backends is treating the application server as if it were a desktop computer: state lives where the code lives, the disk is permanent, restarts are exceptional, one instance runs forever. None of that survives contact with production.

This skill is the architectural baseline that makes a backend production-ready. It is not security-specific — but a backend that loses data, drops jobs, or rolls back to a half-state during deploys is also a backend whose incident-response surface looks much larger than it should. Pairs with the hardening skills, but operates at a different layer.

When to invoke

  • "User uploads disappeared after we redeployed"
  • "The site went down during deploy and we lost the in-flight orders"
  • "I need to scale to a second server but nothing works when there are two"
  • "We're moving from prototype to production"
  • "We're handing off the codebase to a team that has to run it"
  • Designing a new backend from scratch and you want the decisions correct on day one
  • Reviewing an inherited backend before scaling user count or revenue

The single most important rule

App servers are cattle. State lives elsewhere.

Any data that must survive a deploy, reboot, container restart, or instance replacement is state. State does not belong on the app server's local disk, in its memory, or anywhere bound to the instance's lifetime. It belongs in a system designed for durability.

This rule, followed consistently, eliminates 80% of "where did my data go?" incidents.

The state-placement decision matrix

For every piece of data your app handles, decide where it lives before writing the code:

Data type Right place Wrong place
User-uploaded files (images, PDFs, docs) Object storage (S3, R2, B2, Spaces) behind a CDN App server's uploads/ directory
Generated thumbnails / derivatives Object storage, or regenerated on-demand from originals App server's filesystem
Database rows (orders, users, posts) Managed Postgres / MySQL, or a dedicated DB VM with backups SQLite next to the app code
Session data Redis, managed cache, or DB-backed sessions In-process memory (Map, WeakMap)
Cache (computed data, hot reads) Redis / Memcached / Cloudflare KV Local memory if and only if loss-tolerant
Background-job state Persistent queue (BullMQ + Redis, AWS SQS, GCP Pub/Sub, NATS JetStream) setTimeout / setInterval in the web process
Logs Centralized log destination (Loki, hosted, syslog forwarding) App server's /var/log only
Secrets Env vars from a secret manager, or runtime injection .env checked into the image / repo
Search index Managed search (Algolia, Meilisearch, Elasticsearch, Postgres GIN) Recomputed from DB on every request
Email-sending Transactional ESP (Postmark, Mailgun, SES, Resend) Direct SMTP from the app server in production

Read the full file on GitHub · 338 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. 12d ago First seen · 338 lines · 86 tokens per session scan A 3f279504fce7

Subscribe to this mod's changes

backend-architecture is a skill published in the GitHub repository GoldenWing-360/claude-security-skills (17 stars, last pushed 1mo ago), licensed MIT. It adds 86 tokens to every session and 4,091 once invoked, about $0.0004 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-30.

Related

Other skills, from other repositories

tanstack-start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 +…

jezweb/claude-skills · 115 tokens

mcp-builder

Build MCP servers in Python with FastMCP. Define tools / resources / prompts, build the server, test locally, deploy to FastMCP Cloud or Docker. Use whenever the user mentions building an MCP server, exposing tools to LLMs, FastMCP, building a Claude integration, or troubleshooting FastMCP module-level server…

jezweb/claude-skills · 84 tokens

hono-api-scaffolder

Scaffold Hono API routes for Cloudflare Workers. Produces route files, middleware, typed bindings, Zod validation, error handling, and APIENDPOINTS.md documentation. Use after a project is set up with cloudflare-worker-builder or vite-flare-starter, when you need to add API routes, create endpoints, or generate API…

jezweb/claude-skills · 77 tokens

cloudflare-worker-builder

Scaffold and deploy Cloudflare Workers with Hono routing, Vite plugin, and Static Assets. Describe project, scaffold structure, configure bindings, deploy. Use whenever the user wants to create a Worker project, set up Hono on Cloudflare, configure D1 / R2 / KV / Queues bindings, or troubleshoot Worker export syntax…

jezweb/claude-skills · 86 tokens

wordpress-setup

Connect to a WordPress site via WP-CLI over SSH or the REST API. Check CLI, test SSH, set up auth, verify access, save config. Use whenever the user wants to connect to a WordPress site, set up WP-CLI access, create an Application Password, or troubleshoot WordPress connection / auth issues.

jezweb/claude-skills · 71 tokens

vite-flare-starter

Scaffold a full-stack Cloudflare app from the vite-flare-starter template — React 19 + Hono + D1+Drizzle + better-auth + Tailwind v4+shadcn/ui + TanStack Query + R2 + Workers AI. Run setup.sh to clone, configure, and deploy. Use whenever the user wants a batteries-included Cloudflare full-stack app, vite-flare-starter…

jezweb/claude-skills · 110 tokens