Skip to content
Development
Skill

/clean-backend

Use when designing, writing, or reviewing backend code — HTTP endpoints, payment or state-changing flows, database reads and writes, calls to other services, background jobs, rolling out a risky change, or production alerting and on-call.

From plugin
clean-backend
91 skill
Install
$ npx -y skills add AllanOps/Clean-Backend --skill clean-backend --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/clean-backend

Context preview

The summary Claude sees to decide when to auto-load this skill.

Use when designing, writing, or reviewing backend code — HTTP endpoints, payment or state-changing flows, database reads and writes, calls to other services, background jobs, rolling out a risky change, or production alerting and on-call.

SKILL.md

clean-backend.SKILL.md
name: clean-backend
description: Use when designing, writing, or reviewing backend code — HTTP endpoints, payment or state-changing flows, database reads and writes, calls to other services, background jobs, rolling out a risky change, or production alerting and on-call.
license: MIT

Clean Backend

The operational habits that don't surface from inside the code in front of you.

Every practice here was measured missing from real baseline output. The practices that showed up reliably without prompting were removed — see *Deliberately not covered* at the end. Apply these **in addition to** your own engineering judgment; they are a floor to add, not a checklist that replaces what you already do well.

Part 1 — Absent from every baseline

Three lifecycle decisions. Nothing inside a single endpoint cues them, which is exactly why they get skipped.

1. Version the route from day one

// Measured: the route ships unversioned, every time.
POST /charges
GET  /products

// Fill the version slot.
POST /api/v1/charges
GET  /api/v1/products

Mobile clients outlive your refactors. An unversioned route turns the first breaking change into a coordinated migration.

**Skip it when** the service has exactly one consumer that you deploy atomically with it.

2. Deploying is not releasing

// Measured: the new path ships live to everyone at once.
return renderCheckoutV2(cart);

// Put the risky path behind a switch you can flip without a deploy.
if (flags.checkoutV2.on(user)) return renderCheckoutV2(cart);
return renderCheckoutV1(cart);

Rollback becomes a config change instead of an emergency deploy at 3am.

**Skip it when** the change has no behavioral surface — a pure refactor or a typo fix. Flagging those only creates flag debt.

3. Break the circuit before you retry

// Measured: bounded concurrency and retries appear; a breaker never does.
while (!ok) await inventory.get(id);

// Fail fast once the dependency is known-sick.
if (breaker.isOpen()) return fallback();
if (!bucket.take())   return backoff();
return inventory.get(id);

Retrying into a struggling dependency is how one slow service becomes two dead ones.

**Skip it when** the call has no downstream service. A breaker around your own primary database usually converts a slow query into an outage.

Part 2 — Present only when the task cues them

You already reach for these when the task makes them obvious. The gap is the quiet case, so make them unconditional.

4. Every I/O gets a deadline, including the database

// Measured: the scary external call gets a deadline; the database call doesn't.
await withTimeout(paymentProvider.charge(order), 8_000);
await db.charges.insert(row);              // unbounded

// Both cross a process boundary. Both get one.
await withTimeout(db.charges.insert(row), 800);

The hung dependency that takes you down is the one nobody thought could hang.

5. Anything the caller doesn't await leaves the request path

// Measured: the receipt email is awaited inline, on the user's latency budget.
await mailer.sendReceipt(customerId, chargeId);

// Hand it to a worker and return the receipt now.
await queue.enqueue('receipt.send', { customerId, chargeId });

Email, PDFs, webhooks, search indexing, thumbnails — none of it belongs in the response.

6. Emit the counter, not just the log line

// Measured: rich structured logs, and nothing you can alert on.
log.error('charge.failed', { err });

// A log is forensics after the fact. A counter is a page during it.
log.error('charge.failed', { err });
metrics.increment('charge.failed');

Alert on charges per minute and checkout failures per minute, not CPU. Healthy servers happily serve a broken product.

7. Every read filters tombstones

-- Measured: the delete path tombstones correctly, then a read forgets.
SELECT * FROM products WHERE active = true;      -- returns deleted rows

-- The tombstone only means anything if every read respects it.
SELECT * FROM products WHERE active = true AND deleted_at IS NULL;

Soft delete is a read-side discipline. Stamping `deleted_at` is the easy half.

**Skip it when** the read is an idempotency or audit lookup. A tombstoned row is still proof the key was spent; hiding it lets a retry charge the customer twice.

Deliberately not covered

Field-limited responses, validation at the boundary, idempotency keys, graceful degradation, and intention-revealing naming are **not** in this skill. Each was measured across baseline runs and applied reliably without any prompting — including complete idempotency on money-moving endpoints in every single run. Carrying them here would spend your context restating what you already do, and crowd out the seven above.

Read more
Ships withclean-backend

Claude skill for production-hardening practices whenever you're designing, writing, or reviewing your backend code. Featuring endpoints, payment flows, deletes, background jobs, and alerting.

Get the whole plugin
Stats
9
Stars
1
Forks
Active
Maintenance
JavaScript
Language
MIT
License
3d ago
Last commit
2mo ago
Created

Repo: AllanOps/Clean-Backend