developing-serverpod-backend — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited developing-serverpod-backend (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Serverpod splits projects into three modules: server, client, and shared. Models defined in .spy.yaml files generate type-safe Dart classes and database migrations via serverpod generate.
#### 1.1 Understand Project Structure Serverpod separates code into server, client, and shared modules. Endpoint logic lives in server; generated client code goes into client.
#### 1.2 Define Data Models Define database models using .spy.yaml files, then run serverpod generate to produce Dart classes and database migrations. Use explicit foreign key mappings for relational tables.
#### 2.1 Develop Endpoints Implement business logic inside endpoint classes. Use session parameters for authentication context, built-in caching, and native JSON serialization.
#### 2.2 Authentication & Caching Use the serverpod_auth module for token-based authentication. Configure Redis for caching to reduce repeated database queries.
serverpod_auth setup, endpoint protection, and Redis caching.#### 2.3 Database-less Backends (Serverpod Mini) Use Serverpod Mini when you only need proxy/BFF endpoints without a PostgreSQL database.
#### 3.1 Docker & Production Use docker-compose to orchestrate local and production environments. Configure environment variables for credentials and connection strings.
serverpod_auth, endpoint protection, Redis caching.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.