backend-api-development

backend-api-development is a skill for Claude Code, Codex from VoDaiLocz/kilo-kit-mcp. It costs 49 tokens per session (3,210 once invoked), scanned A, original, Apache-2.0.

A guide to designing and building backend APIs, the interfaces through which software exchanges data and actions. It covers services, endpoints, routes, controllers, and REST or GraphQL conventions.

In plain words
What is it for?
Use it to plan resources and endpoints, build backend services, add routes, and implement or refactor REST and GraphQL functionality.
Why use it?
It helps prevent unclear or inconsistent API contracts, where clients and servers disagree about available operations or returned data. It gives developers a structured process before implementation.

Skill for Claude CodeCodex

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

Good fit Use it to plan resources and endpoints, build backend services, add routes, and implement or refactor REST and GraphQL functionality.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vodailocz/kilo-kit-mcp/backend
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 VoDaiLocz/kilo-kit-mcp --skill backend
Clone the repo
git clone --depth 1 https://github.com/VoDaiLocz/kilo-kit-mcp

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-api-development

README.md
[![agentmods](https://agentmods.dev/badge/skills/vodailocz/kilo-kit-mcp/backend/github.svg)](https://agentmods.dev/skills/vodailocz/kilo-kit-mcp/backend)
Your own site
<a href="https://agentmods.dev/skills/vodailocz/kilo-kit-mcp/backend"><img src="https://agentmods.dev/badge/skills/vodailocz/kilo-kit-mcp/backend/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-api-development

Your own site · 80×15
<a href="https://agentmods.dev/skills/vodailocz/kilo-kit-mcp/backend"><img src="https://agentmods.dev/badge/skills/vodailocz/kilo-kit-mcp/backend.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,210 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00049 $0.03210
Opus 5 $0.00024 $0.01605
Sonnet 5 $0.00010 $0.00642
Haiku 4.5 $0.00005 $0.00321

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

Security

Grade A, and why

backend-api-development 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 5d 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/kilo-kit/development/backend/SKILL.md · 541 lines

How it starts

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

🔧 Backend API Development Skill

Philosophy: APIs are contracts. Build them right the first time.

When to Use

Use this skill when:

  • Creating a new API endpoint
  • Building a new service/module
  • Refactoring existing API code
  • Adding new functionality to backend
  • Need to follow RESTful/GraphQL best practices

Do NOT use this skill when:

  • Just fixing a small bug (use debugging skill)
  • Only modifying frontend (use frontend skill)
  • Database-only changes (use database skill)

Prerequisites

Before starting:

  • Requirements are clear (what the API should do)
  • Understand the existing architecture
  • Know the target stack (NestJS, Express, FastAPI, etc.)
  • Database schema exists (or will be created)

Process

Phase 1: DESIGN 📐

Goal: Design the API before writing code.

Steps:

  1. Define the Resource

    resource:
      name: User
      description: Represents a platform user
      domain: authentication
    
  2. Design Endpoints (REST)

    endpoints:
      - method: GET
        path: /users
        description: List all users
        query_params: [page, limit, search]
        response: User[]
      
      - method: GET
        path: /users/:id
        description: Get single user
        response: User
      
      - method: POST
        path: /users
        description: Create new user
        body: CreateUserDto
        response: User
      
      - method: PUT
        path: /users/:id
        description: Update user
        body: UpdateUserDto
        response: User
      
      - method: DELETE
        path: /users/:id
        description: Delete user
        response: void
    
  3. Define DTOs (Data Transfer Objects)

    // CreateUserDto
    interface CreateUserDto {
      email: string;      // required, email format
      password: string;   // required, min 8 chars
      name: string;       // required, min 2 chars
      role?: UserRole;    // optional, default: 'user'
    }
    
    // UpdateUserDto
    type UpdateUserDto = Partial<CreateUserDto>;
    
    // UserResponseDto
    interface UserResponseDto {
      id: string;
      email: string;
      name: string;
      role: UserRole;
      createdAt: DateTime;
      updatedAt: DateTime;
      // Note: password NOT included
    }
    

Read the full file on GitHub · 541 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. 5d ago First seen · 541 lines · 49 tokens per session scan A bd720551d13e

Subscribe to this mod's changes

backend-api-development is a skill published in the GitHub repository VoDaiLocz/kilo-kit-mcp (26 stars, last pushed today), licensed Apache-2.0. It adds 49 tokens to every session and 3,210 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

n8n-code-javascript

Write JavaScript code in n8n Code nodes. Use when writing JavaScript in n8n, using $input/$json/$node syntax, making HTTP requests with $helpers, working with dates using DateTime, troubleshooting Code node errors, or choosing between Code node modes.

hybridlabor-api/bdb-dev-optimized-agent-skills · 63 tokens

cloudflare-workers-expert

Expert in Cloudflare Workers and the Edge Computing ecosystem. Covers Wrangler, KV, D1, Durable Objects, and R2 storage.

hybridlabor-api/bdb-dev-optimized-agent-skills · 33 tokens

godmode-engineering

BDB Engineering Godmode, enforcing strict Domain-Driven Design, TypeScript strictness, and Clean Architecture. Use when implementing backend/fullstack features or running the systematic 5-step debugging triage.

hybridlabor-api/bdb-dev-optimized-agent-skills · 45 tokens

microservices-patterns

Master microservices architecture patterns including service boundaries, inter-service communication, data management, and resilience patterns for building distributed systems.

hybridlabor-api/bdb-dev-optimized-agent-skills · 29 tokens

n8n-workflow-patterns

Proven architectural patterns for building n8n workflows.

hybridlabor-api/bdb-dev-optimized-agent-skills · 19 tokens

n8n-mcp-tools-expert

Expert guide for using n8n-mcp MCP tools effectively. Use when searching for nodes, validating configurations, accessing templates, managing workflows, or using any n8n-mcp tool. Provides tool selection guidance, parameter formats, and common patterns.

hybridlabor-api/bdb-dev-optimized-agent-skills · 59 tokens