architecture

architecture is a cursor rule for Cursor from yerdaulet-damir/vibe-coding-rules. It costs 1,193 tokens per session, scanned A, original, MIT.

A rulebook for structuring FastAPI code in four layers: request handlers, business logic, data access, and database or external storage code.

In plain words
What is it for?
Use it when designing endpoints, services, repositories, dependency injection, authentication checks, and response models for a FastAPI application.
Why use it?
It stops web routes from becoming overloaded and prevents unrelated layers from depending directly on each other.

Cursor rule for Cursor

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 rules/yerdaulet-damir/vibe-coding-rules/architecture
Clone the repo
git clone --depth 1 https://github.com/yerdaulet-damir/vibe-coding-rules

Made for: Cursor.

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 architecture

README.md
[![agentmods](https://agentmods.dev/badge/rules/yerdaulet-damir/vibe-coding-rules/architecture.svg)](https://agentmods.dev/rules/yerdaulet-damir/vibe-coding-rules/architecture)
Your own site
<a href="https://agentmods.dev/rules/yerdaulet-damir/vibe-coding-rules/architecture"><img src="https://agentmods.dev/badge/rules/yerdaulet-damir/vibe-coding-rules/architecture.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,193 This file is loaded in full into every session.
When invoked 1,193 The same file — it is already loaded in full.
Security scan A 0 findings. 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.01193 $0.01193
Opus 5 $0.00596 $0.00596
Sonnet 5 $0.00239 $0.00239
Haiku 4.5 $0.00119 $0.00119

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

Security

Grade A, and why

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 3d 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.

.cursor/rules/architecture.mdc · 131 lines

How it starts

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

Layer Architecture Rules

This codebase follows strict 4-layer architecture: Router → Service → Repository → ORM/HTTP/Storage. Imports flow downward only. Each layer has hard boundaries you must NOT cross.

Hard Rules

1. Router files (app/routers/**)

  • Handlers are thin: ≤10 lines of executable code per handler.
  • Allowed imports: fastapi, app.schemas.*, app.core.deps, app.services.*.
  • Forbidden imports: sqlalchemy, httpx, boto3, app.models.*, app.repositories.* (except via Depends).
  • Every endpoint declares response_model= for OpenAPI fidelity.
  • Every endpoint (except /auth/*) requires user_id: str = Depends(get_current_user_id).
  • Business logic lives in services. Routers parse input, call one service method, return a response.
# ✅ GOOD
@router.post("/wallet/charge", response_model=WalletResponse, status_code=201)
async def charge(
    req: ChargeRequest,
    user_id: str = Depends(get_current_user_id),
    svc: WalletUserService = Depends(get_wallet_service),
) -> WalletResponse:
    wallet = await svc.charge(user_id=user_id, amount=req.amount, key=req.idempotency_key)
    return WalletResponse.from_domain(wallet)
# ❌ BAD — business logic and SQL in router
@router.post("/wallet/charge")
async def charge(req: ChargeRequest, db: Session = Depends(get_db)):
    wallet = db.query(Wallet).filter(Wallet.user_id == user_id).with_for_update().one()
    if wallet.balance < req.amount:
        raise HTTPException(402)
    wallet.balance -= req.amount
    db.commit()
    return wallet

2. Service files (app/services/**)

  • Forbidden imports: sqlalchemy, httpx, boto3, redis, FastAPI Request/Response/HTTPException.
  • Allowed imports: app.repositories.protocols, app.providers._types, app.domain.*, stdlib, Pydantic.
  • Services raise domain exceptions (e.g. InsufficientFundsError); routers map them to HTTP.
  • Constructor injects Protocol-typed dependencies, not concrete classes.

Read the full file on GitHub · 131 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. 3d ago First seen · 131 lines · 1,193 tokens per session scan A e1bbdfe775cf

Subscribe to this mod's changes

architecture is a cursor rule published in the GitHub repository yerdaulet-damir/vibe-coding-rules (10 stars, last pushed 4mo ago), licensed MIT. It adds 1,193 tokens to every session, about $0.0060 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.