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.
npx skills add AndreiBozantan/svelte-axum-template --skill review-backendgit clone --depth 1 https://github.com/AndreiBozantan/svelte-axum-templateWrote 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.
[](https://agentmods.dev/skills/andreibozantan/svelte-axum-template/review-backend)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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.
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.
- 11d ago First seen · 139 lines · 54 tokens per session scan A 43145180a3f7
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.
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.
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…
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.
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".
secret-lint
Automated secret scanning using secretlint to prevent credential leaks.
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"…