DB sql

PassAudited by ClawScan on May 1, 2026.

Overview

This is an instruction-only SQL reference that openly covers powerful database commands, so it appears benign but users should review any data-changing or permission-changing SQL before using it.

This skill appears to be a benign SQL learning/reference guide. Before using its examples on a real database, make sure you understand the target database and have approval, backups, and rollback plans for any command that changes data, deletes objects, or modifies permissions.

Findings (2)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If these commands are run against a live database, they could change or remove data.

Why it was flagged

The skill documents SQL commands that can modify or delete database structures and records if applied to a real database.

Skill content
DROP TABLE employees; ... UPDATE employees SET salary = 80000.00 WHERE id = 101; ... DELETE FROM employees WHERE id = 101;
Recommendation

Use these examples only with explicit user intent, backups, transactions, and review before applying them to production data.

What this means

If used on a real database, these commands could expand or reduce another user's database access.

Why it was flagged

The skill includes examples for granting and revoking database permissions, which can affect who has access to data.

Skill content
GRANT SELECT, INSERT ON employees TO 'analyst_user'; ... REVOKE INSERT ON employees FROM 'analyst_user';
Recommendation

Confirm the target database, user, and intended permission change before running access-control SQL.