snowflake-integration-testing — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited snowflake-integration-testing (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.
list_databases, list_schemas, list_tables, describe_table, read_query) work correctly| Tool | Purpose |
|---|---|
list_databases | List all accessible databases |
list_schemas | List schemas in a database |
list_tables | List tables in a database.schema |
describe_table | Get column metadata for a fully-qualified table |
read_query | Execute a read-only SQL query |
Verify the connection is active and inspect the session context:
SELECT CURRENT_USER(), CURRENT_ROLE(), CURRENT_WAREHOUSE(), CURRENT_DATABASE(), CURRENT_SCHEMA()Use read_query to execute this. Confirm user, role, warehouse, database, and schema are as expected.
Follow this sequence to explore the data landscape:
list_databases — note accessible databaseslist_schemas with database parameterlist_tables with database and schema parametersdescribe_table with fully-qualified name (database.schema.table)Find tables with specific column types using read_query:
-- Find OBJECT columns (nested JSON)
SELECT table_schema, table_name, column_name, data_type
FROM <DATABASE>.information_schema.columns
WHERE data_type = 'OBJECT'
LIMIT 20
-- Find VARIANT columns
SELECT table_schema, table_name, column_name, data_type
FROM <DATABASE>.information_schema.columns
WHERE data_type = 'VARIANT'
LIMIT 20
-- Find ARRAY columns
SELECT table_schema, table_name, column_name, data_type
FROM <DATABASE>.information_schema.columns
WHERE data_type = 'ARRAY'
LIMIT 20Sample rows from discovered tables to verify data shape:
SELECT * FROM <DATABASE>.<SCHEMA>.<TABLE> LIMIT 10For tables with JSON columns, verify nested structure:
SELECT * FROM <DATABASE>.<SCHEMA>.<TABLE>
WHERE <JSON_COLUMN> IS NOT NULL
LIMIT 10describe_tableread_query--exclude-json-results flag awareness: JSON resource attachments may be omitted~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.