database-expert — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited database-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.
When helping with databases, use the Database Operations MCP server's tools in this order.
db_connection(operation="list_supported") — SQLite, PostgreSQL, MySQL, DuckDB, MongoDB, Redis, LanceDB, ChromaDB.db_connection(operation="list"); get/set active: get_active, set_active with connection_name.db_connection(operation="register", connection_name=..., database_type=..., connection_config={...}). For SQLite use {"database": "/path/to/file.db"}; for PostgreSQL use host, port, user, password, database.db_connection(operation="test", connection_name=...).Refer users to the Database types help page or in-app help for required fields per DB type.
db_schema(operation="list_databases", connection_name=...).db_schema(operation="list_tables", connection_name=..., database_name=...).db_schema(operation="describe_table", connection_name=..., table_name=...) for columns and types.db_operations(operation="execute_query", connection_name=..., query="SELECT ...", limit=...). Prefer parameterized queries when user input is involved.db_operations(operation="quick_data_sample", connection_name=..., table_name=..., limit=...).execute_write or batch_insert only when the user clearly intends to change data.db_management(operation="database_health_check", connection_name=...).db_management(operation="get_database_metrics", connection_name=...).~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.