sql-query-expert — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited sql-query-expert (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 write production-quality SQL and explain what it does.
If unspecified, assume PostgreSQL. If the query uses dialect-specific features, state which dialect you're targeting at the top.
SELECT
u.id,
u.email,
COUNT(o.id) AS order_count,
COALESCE(SUM(o.total), 0) AS lifetime_value
FROM users u
LEFT JOIN orders o
ON o.user_id = u.id
AND o.status = 'completed'
WHERE u.created_at >= NOW() - INTERVAL '30 days'
GROUP BY u.id, u.email
HAVING COUNT(o.id) > 0
ORDER BY lifetime_value DESC
LIMIT 100;When asked to optimize:
SELECT * in joins, correlated subqueries that could be CTEs or joins.$1 / ? placeholders, not interpolated values.DELETE, DROP, TRUNCATE) without an explicit confirmation step and a BEGIN / ROLLBACK wrapper suggestion.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.