review-backend

review-backend is a skill for Claude Code, Codex from AndreiBozantan/svelte-axum-template. It costs 54 tokens per session (1,631 once invoked), scanned A, original, MIT.

A review guide for Rust backend code, including database queries and web services. It checks files, changes, or code snippets against stated engineering and security practices.

In plain words
What is it for?
Use it when reviewing Rust or SQL backend code, pull requests, or partial snippets. It covers error handling, logging, request validation, architecture, and avoiding unnecessary complexity.
Why use it?
It helps find design, reliability, security, and maintainability problems before they reach production. Findings explain what to change and what may break if the issue remains.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it when reviewing Rust or SQL backend code, pull requests, or partial snippets. It covers error handling, logging, request validation, architecture, and avoiding unnecessary complexity.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/andreibozantan/svelte-axum-template/review-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 AndreiBozantan/svelte-axum-template --skill review-backend
Clone the repo
git clone --depth 1 https://github.com/AndreiBozantan/svelte-axum-template

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 review-backend

README.md
[![agentmods](https://agentmods.dev/badge/skills/andreibozantan/svelte-axum-template/review-backend/github.svg)](https://agentmods.dev/skills/andreibozantan/svelte-axum-template/review-backend)
Your own site
<a href="https://agentmods.dev/skills/andreibozantan/svelte-axum-template/review-backend"><img src="https://agentmods.dev/badge/skills/andreibozantan/svelte-axum-template/review-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 review-backend

Your own site · 80×15
<a href="https://agentmods.dev/skills/andreibozantan/svelte-axum-template/review-backend"><img src="https://agentmods.dev/badge/skills/andreibozantan/svelte-axum-template/review-backend.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,631 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.00054 $0.01631
Opus 5 $0.00027 $0.00816
Sonnet 5 $0.00011 $0.00326
Haiku 4.5 $0.00005 $0.00163

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

Security

Grade A, and why

review-backend 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 11d 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.

.agents/skills/review-backend/SKILL.md · 139 lines

How it starts

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

Rust Backend Code Review

Review from the perspective of a principal engineer with deep expertise in Rust, Axum, SQL, web application architecture, and security. Explain findings clearly (as if the reader is a junior engineer): what to change, why it matters, and what breaks if left unaddressed.

0. Problem-Solution Fit

Real Issue Resolution: Ensure the code addresses a real issue or feature request, rather than hypothetical future needs. Flag speculative or "just in case" abstractions.

Simplicity of Solution: Look for the simplest design that solves the problem. Check for premature generalization, over-engineering, unnecessary abstractions, or unneeded layers of indirection.

1. Project Standards

Error Handling: Try to avoid map_err. Use ? propagation with implicit From conversions.

Structured Logging: Log messages must be short, lowercase, using underscores, no spaces, with key-value fields. Example: warn!(user_id = user.id.0, error = %err, "password_rehash_failed");

Chaining & Validation: Enforce method call chaining for functional pipelines, and ensure validator::Validate is used for incoming request payloads.

DDD Structure: Ensure bounded contexts are organized with the 3-file feature layout: _api.rs, _db.rs, and _service.rs.

Test Placement: New tests must go in backend/test/ which ensures fast builds.

2. Correctness

Logic & Edge Cases: Check paths for empty inputs, off-by-one, integer overflow, and Option/Result unwrap chains.

Panics: No .unwrap(), .expect(), panic!, or todo!() in request-handling paths. Use ? error-propagation or safe options like .get().

Concurrency: Ensure Mutexes are not held across .await points. Use tokio::sync::Mutex for async environments if needed, or avoid locks entirely.

3. Simplicity

Cyclomatic Complexity: If a function has more than ~7 decision branches, recommend splitting (excluding exhaustive match on sealed enums).

Coupling: Avoid reaching into other modules' internals. Favor dependency injection.

Read the full file on GitHub · 139 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. 11d ago First seen · 139 lines · 54 tokens per session scan A 43145180a3f7

Subscribe to this mod's changes

review-backend is a skill published in the GitHub repository AndreiBozantan/svelte-axum-template (2 stars, last pushed yesterday), licensed MIT. It adds 54 tokens to every session and 1,631 once invoked, about $0.0003 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-08-31.

Related

Other skills, from other repositories

axum

Axum (Rust) web framework patterns for production APIs: routers/extractors, state, middleware, error handling, tracing, graceful shutdown, and testing.

bobmatnyc/claude-mpm-skills · 34 tokens

privacy-first

Prevent email addresses and personal data from entering the codebase. Use when user asks to "prevent emails", "remove personal data", "privacy check", "no email", or when writing/editing any Rust code, Cargo.toml, config, or documentation files. Also triggers during code review, quality gate checks, or when adding…

d-oit/rust-2026-template · 72 tokens

skill-evaluator

Reusable skill for evaluating other skills with structure checks, eval coverage review, and real usage spot checks. Use when you need to check a skill, add evals, benchmark a skill, validate outputs against assertions, or compare current skill behavior against a baseline.

d-oit/rust-2026-template · 55 tokens

lint-rust

Run comprehensive linting and static analysis on Rust code including clippy, format check, security audit, supply chain, and unused dependencies. Use before committing, during CI, or when reviewing code quality. Triggers: "lint rust", "clippy", "static analysis", "code quality".

d-oit/rust-2026-template · 63 tokens

secret-lint

Automated secret scanning using secretlint to prevent credential leaks.

d-oit/rust-2026-template · 16 tokens

anti-ai-slop

Apply this skill when auditing, writing, or reviewing Rust code to avoid generic "AI slop" patterns: boilerplate structs with no purpose, copy-paste error handling, meaningless variable names, over-engineered abstractions, or hollow documentation. Triggers: "this looks AI-generated", "too much boilerplate"…

d-oit/rust-2026-template · 112 tokens