codestral-review — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited codestral-review (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.
You drive a focused code review of a diff using the Mistral codestral-latest model.
If $ARGUMENTS contains a unified diff, use it. Otherwise:
git diff --staged first (most likely intent)git diff HEAD~1..HEAD (last commit)Inspect file paths and diff content to pick the most relevant lens:
| Signal | Focus |
|---|---|
Files touching auth/, crypto/, secrets, .env, JWT/OAuth code, SQL queries with string concat, eval, file uploads | security |
| Hot loops, big-O changes, async/parallelism, caching layer, DB queries, benchmark files | performance |
| Public API surface: exported symbols, route handlers, schemas/contracts, breaking signature changes | api_design |
| Anything else (refactor, bug fix, feature work) | correctness |
If multiple apply, ask the user which to prioritize, or run two passes with different focus values.
Call the MCP prompt codestral_review from the mistral server with:
diff : the diff from step 1focus : the lens from step 2Pass the resulting messages to mistral_chat:
model : codestral-latesttemperature : 0.2 (deterministic critique)max_tokens : 1500The review must end with a verdict: `ship`, `change-requested`, or `block`.
Findings should be:
/mistral-mcp:codestral-review — auto-detect from git diff --staged/mistral-mcp:codestral-review security — force the security lens/mistral-mcp:codestral-review <diff text> — review a pasted diff~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.