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 johnkozaris/jko-claude-plugins --skill backend-architecturegit clone --depth 1 https://github.com/johnkozaris/jko-claude-pluginsWrote 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/johnkozaris/jko-claude-plugins/backend-architecture)<a href="https://agentmods.dev/skills/johnkozaris/jko-claude-plugins/backend-architecture"><img src="https://agentmods.dev/badge/skills/johnkozaris/jko-claude-plugins/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.
<a href="https://agentmods.dev/skills/johnkozaris/jko-claude-plugins/backend-architecture"><img src="https://agentmods.dev/badge/skills/johnkozaris/jko-claude-plugins/backend-architecture.svg" alt="Reviewed on agentmods" width="80" 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.00119 | $0.00883 |
| Opus 5 | $0.00060 | $0.00441 |
| Sonnet 5 | $0.00024 | $0.00177 |
| Haiku 4.5 | $0.00012 | $0.00088 |
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 9d 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 — 83 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Backend Architecture
Start from the system that exists, not from an architecture diagram you already want to impose.
Investigate before choosing
Inspect entry points, module boundaries, data stores, call paths, deployment units, tests, and recent changes. Where available, inspect runtime signals, incident and deployment history, data growth, and ownership or regulatory constraints. Identify the constraint driving the decision: independent deployment, failure isolation, data ownership, latency, throughput, team ownership, regulatory separation, or simply code that is hard to change.
Separate evidence from assumptions and perform a blind-spot pass before converging. Research what the repository, telemetry, and primary documentation can answer; prioritize remaining user questions by how likely their answers are to change the architecture. Do not use remembered version trivia as evidence.
Production opinions
- Default to a modular monolith. A process boundary must earn its network, operational, consistency, and observability costs. Split a service when the system needs independent deployment, failure isolation, scaling, ownership, or a genuinely separate data lifecycle--not to make the folder tree look cleaner.
- Draw boundaries around change and ownership. Code that changes together should usually live together. A service owns its writes and invariants; shared tables and cross-service transactions are evidence the boundary is wrong.
- Keep delivery mechanisms thin. HTTP handlers, message consumers, jobs, CLIs, and real-time hubs translate and delegate. They should not become the only place where business rules are enforced.
- Put invariants near the state they protect. Use application services for orchestration and transaction boundaries. Use domain types when they prevent illegal states. Do not add layers, repositories, interfaces, or value objects that protect no real seam or invariant.
- Prefer synchronous flows until asynchronous behavior is required, unless the workload is inherently ingest-, stream-, or fan-in-shaped. Events and queues are justified by decoupled lifecycles, buffering, fan-out, or resilience requirements.
- Name one authority for each invariant and published contract. Validate at every trust boundary; derive mechanical validators and types from versioned contracts where useful. Avoid shared runtime packages that compromise independent service release autonomy.
- Architecture includes operations. Account for cancellation, backpressure, graceful shutdown, readiness, migrations, telemetry, failure recovery, and bounded resource use. A clean dependency graph that fails badly in production is not a good architecture.
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.
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.
- 9d ago First seen · 83 lines · 119 tokens per session scan A c35f2474bda2
backend-architecture is a skill published in the GitHub repository johnkozaris/jko-claude-plugins (11 stars, last pushed 13d ago), licensed MIT. It adds 119 tokens to every session and 883 once invoked, about $0.0006 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.
Other skills, from other repositories
dotnet-backend-expert
This skill should be used when the user is writing, reviewing, debugging, or architecting pure .NET backend code for Kestrel-hosted services. It provides expert critique for REST endpoints, SignalR hubs, TypeScript/React client integration shape, pragmatic Rust interop, application services, AppHost-aware project…
python-backend-expert
This skill should be used when the user is writing, reviewing, debugging, or architecting Python backend code using Litestar or FastAPI with SQLAlchemy or Advanced Alchemy. Provides expert critique covering SOLID principles, hexagonal architecture, repository/service patterns, dependency injection, async correctness…
esp32-expert
This skill should be used when the user is writing, reviewing, debugging, or architecting C++ firmware for ESP32 and variants (ESP32-S2, S3, C3, C6, H2, P4) using ESP-IDF or PlatformIO. Provides expert critique covering FreeRTOS task design, memory management (IRAM/DRAM/PSRAM), peripheral drivers (I2C/SPI/UART/GPIO)…
rust-expert
This skill should be used when the user is writing, reviewing, debugging, or architecting Rust code. Detects edition and toolchain from the project. Provides expert critique covering ownership, error handling, unsafe review, async correctness, trait design, type system patterns, performance, SOLID principles, and…
swiftui-expert
This skill should be used when the user is building, reviewing, or debugging SwiftUI views and apps. Detects iOS and Swift version from the project. Covers creating views, state management with @Observable, NavigationStack routing, animations, accessibility, performance optimization, Liquid Glass adoption, design…
dead-code-expert
This skill should be used when the user wants to find, audit, or remove dead code, unused imports, unused functions, unused variables, duplicate implementations, or simplify a codebase. Works across all programming languages. Relevant when the user says "find dead code", "remove dead code", "remove unused imports"…