AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Clean Backend

skill-allanops-clean-backend-clean-backend · by AllanOps

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.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-allanops-clean-backend-clean-backend

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-allanops-clean-backend-clean-backend)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Clean Backend? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

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.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.