PostgreSQL

Security checks across malware telemetry and agentic risk

Overview

This is an instruction-only PostgreSQL guidance skill, with normal database optimization advice and a minor caution that some suggested actions can affect real databases if applied.

This skill appears safe as a PostgreSQL reference. Before letting an agent run any generated SQL, especially DROP INDEX, VACUUM, lock, timeout, or schema-change commands, confirm the target database and review the command manually.

VirusTotal

66/66 vendors flagged this skill as clean.

View on VirusTotal

Risk analysis

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.

#
ASI02: Tool Misuse and Exploitation
Low
What this means

If an agent turns this advice into action, it could make changes to a real database.

Why it was flagged

This is purpose-aligned PostgreSQL tuning advice, but dropping indexes is a schema-changing action that can affect database performance or application behavior if done without review.

Skill content
Unused indexes hurt every INSERT/UPDATE—query `pg_stat_user_indexes` for `idx_scan = 0`, drop them
Recommendation

Require explicit user approval before running DDL or maintenance commands, and test changes on the intended database environment first.