snowflake
Installation
SKILL.md
Snowflake
Official docs
| Topic | URL |
|---|---|
| Documentation | https://docs.snowflake.com |
| SQL reference | https://docs.snowflake.com/en/sql-reference-commands |
| Access control | https://docs.snowflake.com/en/user-guide/security-access-control-overview |
| Warehouses | https://docs.snowflake.com/en/user-guide/warehouses |
Agent rules
- Role hierarchy — least privilege; use role switching explicitly in scripts.
- Warehouse sizing — note credit impact when changing warehouse size or auto-suspend.
- Idempotent DDL — prefer
CREATE ... IF NOT EXISTS/CREATE OR REPLACEpatterns used in repo. - Stages & pipes — match existing integration (S3/GCS/Azure) naming.
- Dialect — Snowflake-specific functions (
FLATTEN,QUALIFY, etc.) — verify in docs.