backend-system-architect

backend-system-architect is an agent for Claude Code from ArieGoldkin/ai-agent-hub. It costs 362 tokens per session (4,654 once invoked), scanned B, original, MIT.

An agent for designing and reviewing server-side systems, including APIs, databases, authentication, caching, queues, and service boundaries. It compares architectural choices such as a single application versus multiple services.

In plain words
What is it for?
Use it to design APIs, database schemas, authentication flows, migrations, middleware, serverless systems, microservices, caches, queues, and other backend architecture.
Why use it?
It helps make backend decisions that fit the system's security, scalability, cost, and complexity needs. It also checks that proposed designs are real implementations rather than only high-level diagrams.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter; reads .claude/ paths; names the NotebookEdit tool.

Good fit Use it to design APIs, database schemas, authentication flows, migrations, middleware, serverless systems, microservices, caches, queues, and other backend architecture.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/ariegoldkin/ai-agent-hub/backend-system-architect
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.

Clone the repo
git clone --depth 1 https://github.com/ArieGoldkin/ai-agent-hub

Made for: Claude Code.

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-system-architect

README.md
[![agentmods](https://agentmods.dev/badge/agents/ariegoldkin/ai-agent-hub/backend-system-architect.svg)](https://agentmods.dev/agents/ariegoldkin/ai-agent-hub/backend-system-architect)
Your own site
<a href="https://agentmods.dev/agents/ariegoldkin/ai-agent-hub/backend-system-architect"><img src="https://agentmods.dev/badge/agents/ariegoldkin/ai-agent-hub/backend-system-architect.svg" alt="Measured on agentmods" height="20"></a>
Per session 362 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,654 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 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.00362 $0.04654
Opus 5 $0.00181 $0.02327
Sonnet 5 $0.00072 $0.00931
Haiku 4.5 $0.00036 $0.00465

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

Security

Grade B, and why

backend-system-architect scanned grade B with 2 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 8d 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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

curl -X POST http://localhost:8000/api/auth/login -d '{"email":"[email protected]","password":"test"}'

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

2. **Test with curl** - Every endpoint must be verifiable
agents/backend-system-architect.md · 597 lines

How it starts

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

You are a master backend architect with deep expertise in designing scalable, secure, and maintainable server-side systems. Your experience spans microservices, monoliths, serverless architectures, and everything in between.

AUTO-DETECTION MODE

Check .claude/context-triggers.md for keywords matching your domain. When keywords match, auto-invoke naturally without announcing.

Your Keywords

API, database, backend, server, endpoint, auth, authentication, microservice, REST, GraphQL, SQL, PostgreSQL, MongoDB, Redis, schema, migration, route, controller, FastAPI, Express, Django, serverless, lambda, queue, cache, webhook, JWT, OAuth, session, middleware

Auto Behavior

  • Monitor all user messages for your keywords
  • Auto-invoke when 2+ keywords match
  • Work naturally without saying "invoking Backend System Architect"
  • Coordinate through Studio Coach for multi-agent tasks

Architectural Decisions: When choosing between architecture patterns (monolith vs microservices, SQL vs NoSQL, sync vs async), use "think hard" to evaluate trade-offs in scalability, cost, and complexity.

IMPLEMENTATION VERIFICATION PROTOCOL

Real Implementation Requirements

You MUST build ACTUAL working backends, not mocks or placeholders:

  1. Every Endpoint Must Work - No fake responses

    # ❌ WRONG - Mock implementation
    @app.get("/api/users")
    async def get_users():
        return {"users": ["mock1", "mock2"]}  # NO!
    
    # ✅ CORRECT - Real implementation
    @app.get("/api/users")
    async def get_users(db: Database = Depends(get_db)):
        users = await db.fetch_all("SELECT * FROM users")
        return {"users": users}
    
  2. Test with curl - Every endpoint must be verifiable

    # After creating each endpoint, test it:
    curl -X GET http://localhost:8000/api/users
    curl -X POST http://localhost:8000/api/auth/login -d '{"email":"[email protected]","password":"test"}'
    
    # Response must be valid JSON with correct structure
    

Read the full file on GitHub · 597 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. 8d ago First seen · 597 lines · 0 tokens per session scan B b578b69a7182

Subscribe to this mod's changes

backend-system-architect is an agent published in the GitHub repository ArieGoldkin/ai-agent-hub (11 stars, last pushed 9mo ago), licensed MIT. It adds 362 tokens to every session and 4,654 once invoked, about $0.0018 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

supabase-architect

Projeta schema + RLS + topologia realtime antes da primeira migration. Entrega plano arquitetural (schema, RLS, realtime, branching). Use ao iniciar app Supabase. Não escreve código. (pesado).

luanpdd/kit-mcp · 50 tokens

evolution-go-integrator

Gera tabelas orgwhatsappconfigs + whatsappmessages, webhook Edge Function e send queue pgmq para WhatsApp (Evolution Go ou Meta Cloud API) em Supabase B2B multi-tenant. (pesado — despacha.

luanpdd/kit-mcp · 53 tokens

backend-architect

Design RESTful APIs, microservice boundaries, and database schemas. Reviews system architecture for scalability and performance bottlenecks. Use PROACTIVELY when creating new backend services or APIs.

einverne/dotfiles · 41 tokens

cqrs-specialist

Use for event-driven and CQRS work: command/outbox writes, idempotent projectors, and read-model handlers. Domain-neutral; never catches errors inside a transaction boundary.

mnzralee/claude-multi-agent-architecture · 41 tokens

Backend Architect

Senior backend architect specializing in scalable system design, database architecture, API development, and cloud infrastructure. Builds robust, secure, performant server-side applications and microservices.

criptogus/agent-evolve-network · 34 tokens

backend

A back-end development agent for the server-side parts of an application, including APIs, databases, authentication, and infrastructure. An API lets software exchange data, while authentication checks identity and authorization controls access.

workdd/my_claude_code_setting · 89 tokens