From valur-prototype
Review a Valur prototype for production-readiness. Checks code against Valur's standards (soft-delete, timestamps, Decimal math, API patterns) and generates an integration report for engineers.
How this skill is triggered — by the user, by Claude, or both
Slash command
/valur-prototype:reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Review prototype code to assess how ready it is for engineering integration into Valur's production stack.
Review prototype code to assess how ready it is for engineering integration into Valur's production stack.
Read the prototype's key files:
.gitignore — should exist and exclude node_modules/, dist/, prototype.db, .vercel/, .envserver/db/schema.ts — database tablesserver/routes/ — all API route filescalcs/ — all calculation filessrc/pages/ — all page componentssrc/stores/ — all Pinia storessrc/router.ts — route definitionsCheck each area against these standards:
.gitignore exists and excludes node_modules/, dist/, prototype.db, .vercel/, .envgit ls-files and check)package.json only contains template dependencies — no extra UI frameworksserver/db/schema.ts)id, is_deleted, created_at, updated_atserver/routes/)WHERE is_deleted = 0SET is_deleted = 1), never hard-deleteis_deleted = 0 before operating (don't modify deleted records)calcs/)Decimal from decimal.js for all financial math (no native number for money){ years: [...], totals: {...} } for projectionssrc/pages/, src/stores/)useApi() composable for API calls## Prototype Review
### Summary
<1-2 sentence assessment>
### Production-Ready
- <things that will port cleanly>
### Needs Changes
For each issue:
- **File**: path — **Issue**: what's wrong — **Fix**: how to fix
### Integration Notes for Engineers
- Which production files to create (Django models, DRF views, Vuex stores, etc.)
- Estimated effort
- Any complex logic that needs careful porting
npx claudepluginhub valur-inc/valur-prototype --plugin valur-prototypeAPI and backend code review — REST conventions, auth, validation, error handling, pagination, rate limiting, test coverage. Use when asked to "review this API", "code review", "review backend", or "pre-launch backend check".
Validates multi-component full-stack apps across backend, frontend, database, and infrastructure. Detects monorepos, Docker Compose setups, and tech stacks like FastAPI, React, PostgreSQL for parallel cross-layer checks.
Reviews interactive prototypes for PRD/Journey alignment, interaction completeness, engineering isolation, and downstream usability before API Contract/HLD.