run-review — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited run-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.
Run a local cubic AI code review via CLI to catch issues before committing or opening a PR.
-b main, -c HEAD~1).which cubicIf not found, show install options and stop:
curl -fsSL https://cubic.dev/install | bashAfter installing, the user needs to authenticate with cubic auth.
git status --porcelaincubic review -j (reviews working directory)cubic review -b -j (reviews branch vs base)cubic review -j <flags>After invoking cubic review, do not assume the result is final immediately.
issues array yet), poll until complete.-b or PR-linked context): sleep 30 seconds between retries, up to 30 retries (15 minutes total).The JSON output contains an issues array. Each issue has:
priority: P0 (critical), P1 (high), P2 (medium), P3 (low)file: File pathline: Line numbertitle: Issue titledescription: Detailed explanationIf no issues found, tell the user the code looks good.
If issues found, present them grouped by priority (P0 first). Highlight P0 and P1 as requiring immediate attention.
List each issue by number so the user can pick which to fix. For each selected issue:
## cubic Local Review
Found 4 issues:
### P0 — Critical (1)
1. **SQL injection in query builder** — `src/auth.ts:45`
Unsanitized user input passed directly to SQL query.
### P1 — High (1)
2. **Missing null check** — `src/api.ts:88`
`user.email` accessed without checking if user exists.
### P2 — Medium (1)
3. **Unhandled promise rejection** — `src/worker.ts:23`
Async function missing try/catch around external API call.
### P3 — Low (1)
4. **Unused import** — `src/utils.ts:1`
`lodash` imported but never used.
Which issues should I fix? (e.g., "1, 2" or "all P0 and P1")~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.