backend-developer

backend-developer is a skill for Claude Code from Vinix24/vnx-orchestration. It costs 16 tokens per session (1,429 once invoked), scanned B, original, MIT.

A guide for building the server-side part of applications, including data handling, business rules, and web endpoints. It covers reliability, security, database design, testing, and API contracts—the agreed format for requests and responses.

In plain words
What is it for?
Use it to build features such as authentication services, data-processing pipelines, real-time event handlers, and REST APIs. It also helps with validation, logging, error handling, database queries, rate limits, and integration tests.
Why use it?
It gives structure for avoiding common backend problems such as invalid input, unclear errors, insecure database queries, broken authentication, and unreliable services. It also helps keep server behavior consistent as the application grows.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions Codex.

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 skills/vinix24/vnx-orchestration/backend-developer
Any agent
npx skills add Vinix24/vnx-orchestration --skill backend-developer
Clone the repo
git clone --depth 1 https://github.com/Vinix24/vnx-orchestration

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-developer

README.md
[![agentmods](https://agentmods.dev/badge/skills/vinix24/vnx-orchestration/backend-developer.svg)](https://agentmods.dev/skills/vinix24/vnx-orchestration/backend-developer)
Your own site
<a href="https://agentmods.dev/skills/vinix24/vnx-orchestration/backend-developer"><img src="https://agentmods.dev/badge/skills/vinix24/vnx-orchestration/backend-developer.svg" alt="Measured on agentmods" height="20"></a>
Per session 16 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,429 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.1 $0.00016 $0.01429
Opus 5 $0.00008 $0.00714
Sonnet 5 $0.00003 $0.00286
Haiku 4.5 $0.00002 $0.00143

Measured 6d ago against content hash 3013c7494c4b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade B, and why

backend-developer scanned grade B with 1 finding 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 6d 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.

Asks the agent to reveal its instructionsmediumSystem prompt leakage

Directions to print, repeat or translate the system prompt extract configuration the operator did not intend to expose.

## Output Instructions
.claude/skills/backend-developer/SKILL.md · 112 lines

How it starts

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

Backend Developer

Create fault-tolerant, scalable server-side solutions with focus on reliability and security.

Core Responsibilities

  • Design data models and schemas
  • Implement business logic with tests
  • Create API endpoints with validation
  • Add error handling and logging
  • Optimize database queries
  • Document API contracts

Core Principles

  • Reliability First: Build fault-tolerant systems
  • Security by Default: Validate inputs, sanitize outputs
  • Performance Aware: Optimize queries, cache strategically
  • API Design: RESTful conventions, clear contracts

Examples

  • "Implement user authentication service"
  • "Create data processing pipeline"
  • "Build real-time event handler"

Guidelines

  • Error Handling: Graceful degradation, meaningful messages
  • Logging: Structured logs with correlation IDs
  • Security: Input validation, SQL injection prevention
  • Testing: Unit tests >80%, integration tests
  • Database: Normalized design, indexed queries

API Development Standards

  • Clear resource naming (/users, /products)
  • HTTP status codes correctly used
  • Request/response validation
  • Rate limiting implemented
  • Authentication/authorization checks

Performance Targets

  • Response time <200ms p95
  • Database queries <50ms
  • Connection pooling configured
  • Caching strategy defined
  • Background jobs for heavy tasks

Quality Requirements

  • PR under 300 lines
  • Include unit and integration tests
  • Update API documentation
  • No breaking changes without versioning
  • Follow existing patterns

Codex Defense Checklist (mandatory before commit)

These patterns recur in codex_gate findings. Apply preemptively.

File I/O

  • Atomic writes: any rewrite of a persistent file (YAML, NDJSON, JSON config, schema files) MUST write to <path>.tmp then os.replace(tmp, path). Never open(path, 'w') directly on canonical state.
  • fcntl.flock for shared NDJSON: any read-then-rewrite of an NDJSON file consumed by live appenders MUST acquire fcntl.flock(fd, fcntl.LOCK_EX) on the same lock the appenders use. Hold through atomic rename.
  • Subprocess stdin writes: wrap proc.stdin.write() in try: ... except BrokenPipeError: return AdapterResult(status='failed', ...). Provider startup-failures must surface as structured failures, not raised exceptions.

Read the full file on GitHub · 112 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. 6d ago First seen · 112 lines · 16 tokens per session scan B 3013c7494c4b

Subscribe to this mod's changes

backend-developer is a skill published in the GitHub repository Vinix24/vnx-orchestration (57 stars, last pushed yesterday), licensed MIT. It adds 16 tokens to every session and 1,429 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (asks the agent to reveal its instructions). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

agent-teams

Coordinates Claude agent teams via filesystem protocol. Use when orchestrating parallel agents with task dependencies. Do not use for single-agent tasks.

athola/claude-night-market · 30 tokens

relocate-claude-vm

Move the Claude Desktop "Computer Use" sandbox VM bundle (typically 11-13 GB at %APPDATA%\Claude\vmbundles on Windows) off the system drive to a roomier disk via a directory junction. Transparent to Claude Desktop, reversible. Use when the system drive is low on space and a disk scan shows vmbundles as a top consumer.…

ibrews/claude-fleet · 98 tokens

aoi

Govern material engineering work in any AOI-configured repository through the installed AOI CLI. Use when AOI hooks report an active project, before edits or external actions, and when planning, claiming, delegating, verifying, checkpointing, delivering, or closing AOI tasks.

Ryan529616/aoi-orgware · 59 tokens

crew

Run every ticket of a spec unattended — parallel Claude and Codex children in tmux worktrees, routed per ticket, wave by wave, onto a throwaway integration branch.

okqixiaobao727-design/agentcrew-dev-skills · 37 tokens

aoi-bootstrap

Inspect an existing Git repository and turn the user's project requirements into a conservative, reviewable AOI organization profile. Use when the user asks to initialize AOI, create or review aoi.toml, design the initial AOI departments, roles, and evidence profile, or bootstrap AOI governance for a new project. Do…

Ryan529616/aoi-orgware · 85 tokens

aoi

Operate under AOI governance in this repository. Use whenever an AOI SessionStart/UserPromptSubmit hook says "AOI is active" for this project, when a task must be created/claimed/verified/closed, or before dispatching a governed sub-agent. AOI records authority, ownership, evidence, and closure so parallel agents do…

Ryan529616/aoi-orgware · 81 tokens