snowflake-expert

snowflake-expert is a skill for Claude Code from personamanagmentlayer/pcl. It costs 69 tokens per session (1,013 once invoked), scanned A, a copy of snowflake-expert, Apache-2.0.

A guide for working with Snowflake, a cloud platform for storing and analyzing large datasets with SQL.

In plain words
What is it for?
Use it when configuring virtual warehouses, sharing data, using streams and tasks, cloning or restoring data, or optimizing SQL.
Why use it?
It helps you manage Snowflake resources and make data queries more efficient, cost-aware, and reliable.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it when configuring virtual warehouses, sharing data, using streams and tasks, cloning or restoring data, or optimizing SQL.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/personamanagmentlayer/pcl/snowflake-expert
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add personamanagmentlayer/pcl --skill snowflake-expert
Clone the repo
git clone --depth 1 https://github.com/personamanagmentlayer/pcl

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for snowflake-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/snowflake-expert/github.svg)](https://agentmods.dev/skills/personamanagmentlayer/pcl/snowflake-expert)
Your own site
<a href="https://agentmods.dev/skills/personamanagmentlayer/pcl/snowflake-expert"><img src="https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/snowflake-expert/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for snowflake-expert

Your own site · 80×15
<a href="https://agentmods.dev/skills/personamanagmentlayer/pcl/snowflake-expert"><img src="https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/snowflake-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,013 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 92% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00069 $0.01013
Opus 5 $0.00034 $0.00507
Sonnet 5 $0.00014 $0.00203
Haiku 4.5 $0.00007 $0.00101

Measured 4d ago against content hash ab362a4e4c09, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

snowflake-expert scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

92% identical to snowflake-expert — 635 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

stdlib/data/snowflake-expert/SKILL.md · 139 lines

How it starts

The opening of the file, as written. The whole thing — 139 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Snowflake Expert

You are an expert in Snowflake with deep knowledge of virtual warehouses, data sharing, streams, tasks, time travel, zero-copy cloning, and SQL optimization. You design and manage enterprise-scale data warehouses that are performant, cost-effective, and secure.

Best Practices

1. Warehouse Sizing and Management

  • Start with smaller warehouses and scale up as needed
  • Use multi-cluster warehouses for concurrency
  • Set AUTO_SUSPEND to 5-10 minutes to avoid cold starts
  • Monitor credit usage with resource monitors
  • Use separate warehouses for different workloads (ETL, BI, ad-hoc)

2. Data Organization

  • Use databases for major boundaries (prod/dev/test)
  • Use schemas for logical grouping
  • Implement clustering for large tables (>1TB)
  • Use transient tables for temporary data to reduce storage costs
  • Leverage zero-copy cloning for development/testing

3. Cost Optimization

  • Use table types appropriately (permanent, transient, temporary)
  • Set data retention periods based on needs
  • Monitor and drop unused objects
  • Use result caching for repeated queries
  • Implement query timeouts to prevent runaway queries

4. Performance Optimization

  • Cluster large tables on commonly filtered columns
  • Use materialized views for expensive aggregations
  • Leverage search optimization for point lookups
  • Partition pruning with proper WHERE clauses
  • Monitor query profile for bottlenecks

5. Security and Governance

  • Implement role-based access control
  • Use row-level and column-level security
  • Enable network policies for IP whitelisting
  • Use secure views for data sharing
  • Enable MFA for privileged accounts

Anti-Patterns

1. Over-Clustering

-- Bad: Too many clustering keys
ALTER TABLE orders CLUSTER BY (order_date, customer_id, status, product_id);

-- Good: 1-3 columns, most selective first
ALTER TABLE orders CLUSTER BY (order_date, customer_id);

2. Undersized Warehouses

-- Bad: Using X-Small for large ETL jobs
CREATE WAREHOUSE etl_wh WITH WAREHOUSE_SIZE = 'X-SMALL';

-- Good: Appropriately sized for workload
CREATE WAREHOUSE etl_wh WITH WAREHOUSE_SIZE = 'LARGE';

Read the full file on GitHub · 139 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago Changed · -564 lines · +43 tokens per session ab362a4e4c09
  2. 10d ago First seen · 703 lines · 26 tokens per session scan A 77c2aa554f4d

Subscribe to this mod's changes

snowflake-expert is a skill published in the GitHub repository personamanagmentlayer/pcl (40 stars, last pushed 2d ago), licensed Apache-2.0. It adds 69 tokens to every session and 1,013 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 92% identical to snowflake-expert, differing in 635 lines, and is treated as a copy.