backend-agent

backend-agent is a skill for Claude Code, Codex from Bilal140202/the-lord-of-the-skills. It costs 25 tokens per session (834 once invoked), scanned A, original, MIT.

A backend development guide for building web APIs and server-side features with FastAPI, a Python web framework. It organizes code into request handling, business rules, and database access.

In plain words
What is it for?
Use it to build REST or GraphQL APIs, database features, authentication, authorization, background jobs, and server-side logic.
Why use it?
It gives backend code a consistent structure and keeps business logic separate from database operations and HTTP details.

Skill for Claude CodeCodex

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

Good fit Use it to build REST or GraphQL APIs, database features, authentication, authorization, background jobs, and server-side logic.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bilal140202/the-lord-of-the-skills/ssstainlesss__antigravity-launchpad
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 Bilal140202/the-lord-of-the-skills --skill ssstainlesss__antigravity-launchpad
Clone the repo
git clone --depth 1 https://github.com/Bilal140202/the-lord-of-the-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-agent

README.md
[![agentmods](https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/ssstainlesss__antigravity-launchpad/github.svg)](https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/ssstainlesss__antigravity-launchpad)
Your own site
<a href="https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/ssstainlesss__antigravity-launchpad"><img src="https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/ssstainlesss__antigravity-launchpad/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-agent

Your own site · 80×15
<a href="https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/ssstainlesss__antigravity-launchpad"><img src="https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/ssstainlesss__antigravity-launchpad.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 834 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.00025 $0.00834
Opus 5 $0.00013 $0.00417
Sonnet 5 $0.00005 $0.00167
Haiku 4.5 $0.00003 $0.00083

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

Security

Grade A, and why

backend-agent 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 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.

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.

skills/gondor/claude-code/SSSTAiNLESSS__AntiGravity-Launchpad/SKILL.md · 108 lines

How it starts

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

Backend Agent - API & Server Specialist

When to use

  • Building REST APIs or GraphQL endpoints
  • Database design and migrations
  • Authentication and authorization
  • Server-side business logic
  • Background jobs and queues

When NOT to use

  • Frontend UI -> use Frontend Agent
  • Mobile-specific code -> use Mobile Agent

Core Rules

  1. DRY (Don't Repeat Yourself): Business logic in Service, data access logic in Repository
  2. SOLID:
    • Single Responsibility: Classes and functions should have one responsibility
    • Dependency Inversion: Use FastAPI's Depends for dependency injection
  3. KISS: Keep it simple and clear

Architecture Pattern

Router (HTTP) → Service (Business Logic) → Repository (Data Access) → Models

Repository Layer

  • File: src/[domain]/repository.py
  • Role: Encapsulate DB CRUD and query logic
  • Principle: No business logic, return SQLAlchemy models

Service Layer

  • File: src/[domain]/service.py
  • Role: Business logic, Repository composition, external API calls
  • Principle: Business decisions only here

Router Layer

  • File: src/[domain]/router.py
  • Role: Receive HTTP requests, input validation, call Service, return response
  • Principle: No business logic, inject Service via DI

Core Rules

  1. Clean architecture: router → service → repository → models
  2. No business logic in route handlers
  3. All inputs validated with Pydantic
  4. Parameterized queries only (never string interpolation)
  5. JWT + bcrypt for auth; rate limit auth endpoints
  6. Async/await consistently; type hints on all signatures
  7. Custom exceptions via src/lib/exceptions.py (not raw HTTPException)

Dependency Injection

# src/recipes/routers/dependencies.py
async def get_recipe_service(db: AsyncSession = Depends(get_db)) -> RecipeService:
    repository = RecipeRepository(db)
    return RecipeService(repository)

# src/recipes/routers/base_router.py
@router.get("/{recipe_id}")
async def get_recipe(
    recipe_id: str,
    service: RecipeService = Depends(get_recipe_service)
):
    return await service.get_recipe(recipe_id)

Read the full file on GitHub · 108 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 · 108 lines · 25 tokens per session scan A e00ab0f4dfa8

Subscribe to this mod's changes

backend-agent is a skill published in the GitHub repository Bilal140202/the-lord-of-the-skills (4 stars, last pushed 6d ago), licensed MIT. It adds 25 tokens to every session and 834 once invoked, about $0.0001 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-09-03.