Snowflake-Labs/snowflake-ai-kit

Snowflake AI Kit: Cortex Code plugin for automatic Snowflake routing, envelope-based permission policy, and one-command installers for Snowflake CLI + Cortex Code CLI.

37

stars

60

commits

Python

primary language

Aug 13, 2026

updated

claude-code
claude-code-plugin
cortex-code
cortex-code-plugin
developer-tools
envelope-policy
snowflake
snowflake-ai
snowflake-cli

README

Snowflake AI Kit

Connect your AI coding agent to Snowflake. Plugins for Claude Code and OpenAI Codex that automatically detect Snowflake prompts and route them to Cortex Code — where 55+ built-in skills handle SQL, data governance, dynamic tables, ML, and more.

Claude Code OpenAI Codex License CI Plugin Python

Quick Start

Claude Code

claude plugin install snowflake-cortex-code@claude-plugins-official

OpenAI Codex

From your terminal:

codex plugin marketplace add Snowflake-Labs/snowflake-ai-kit
codex plugin add snowflake-cortex-code@snowflake-ai-kit

Or inside Codex, open /plugins and install "Snowflake Cortex Code" from the Snowflake AI Kit marketplace.

That's it

Ask naturally — the plugin handles routing:

  • "Show me my Snowflake warehouses"
  • "What databases do I have access to?"
  • "List all tables in my current schema"
  • "Create a dynamic table that refreshes hourly"

Non-Snowflake prompts ("fix the bug in auth.py", "write a unit test") stay in your current agent.

How It Works

You → Claude Code / Codex → [Plugin detects Snowflake intent] → Cortex Code CLI → Snowflake
  1. A lightweight keyword filter runs on every prompt (~50ms, no network)
  2. If Snowflake intent is detected, the plugin routes to Cortex Code CLI
  3. Cortex Code executes with 55+ specialized skills (SQL, governance, ML, streaming, etc.)
  4. Results flow back to your agent session

To explicitly invoke Cortex Code (bypassing auto-detection):

$cortex-run show me my warehouses and their current state

See plugins/cortex-code/ for full documentation on security model, envelopes, and configuration.

Cursor

Works natively — enable "Third-party skills" in Cursor Settings. No separate plugin needed.

Prerequisites

The plugin requires Cortex Code CLI (cortex) on your PATH. Install it from the official docs.

Snowflake Connection

Cortex Code CLI needs a Snowflake connection configured at ~/.snowflake/connections.toml:

snow connection add

Installer

The bundled installer sets up both Snowflake CLI (snow) and Cortex Code CLI (cortex):

PlatformCommand
macOS / Linuxbash install.sh
Windows.\install.ps1
npx (any)npx @snowflake-labs/ai-kit
FlagDescription
--check / -CheckCheck installation status without installing
--with-claude / -WithClaudeAlso install Claude Code CLI + plugin
--with-codex / -WithCodexAlso install OpenAI Codex CLI + plugin
--help / -HelpShow help

Skills

Cortex Code CLI ships with 55+ built-in skills that activate automatically based on your prompt:

cortex skill list

Examples: semantic-view, cortex-agent, data-quality, dynamic-tables, cost-intelligence, machine-learning, iceberg, data-governance, cortex-ai-functions, deploy-to-spcs, lineage, dbt-projects-on-snowflake, snowflake-notebooks, security-investigation, workload-performance-analysis.

Skills are organized by source:

CategoryDescription
BUNDLEDShip with the CLI binary. Updated on cortex update.
GLOBALUser-installed in ~/.snowflake/cortex/skills/. Shared across projects.
EXTERNALAdded via cortex skill add <path> or cortex skill add owner/repo.
PROJECTDiscovered from the current working directory.

Troubleshooting

ProblemFix
cortex: command not foundRe-run bash install.sh or install from Cortex Code CLI docs.
snow: command not foundEnsure ~/.local/bin is in $PATH. Open a new terminal.
Connection errorsRun snow connection add. Docs: Specify credentials
Plugin not routingVerify plugin is enabled in your agent's settings.
Installer hangs on WindowsRun PowerShell as Administrator.

Contributing

All PRs run CI on macOS and Windows via GitHub Actions (test.yml). The full test suite (200 tests) must pass on both platforms.

bash tests/run-tests.sh --verbose        # macOS / Linux
.\tests\run-tests.ps1 -Verbose           # Windows (PowerShell)

License

Copyright (c) Snowflake Inc. All rights reserved.

Skills are licensed under the Snowflake Skills License. All other content is Apache 2.0.

Contributors

iamontheinet

42 commits

sfc-gh-ddesai

11 commits

Git2richie

2 commits

Snowflake-Labs/snowflake-ai-kit

Snowflake AI Kit: Cortex Code plugin for automatic Snowflake routing, envelope-based permission policy, and one-command installers for Snowflake CLI + Cortex Code CLI.

37

stars

60

commits

Python

primary language

Aug 13, 2026

updated

claude-code
claude-code-plugin
cortex-code
cortex-code-plugin
developer-tools
envelope-policy
snowflake
snowflake-ai
snowflake-cli

README

Snowflake AI Kit

Connect your AI coding agent to Snowflake. Plugins for Claude Code and OpenAI Codex that automatically detect Snowflake prompts and route them to Cortex Code — where 55+ built-in skills handle SQL, data governance, dynamic tables, ML, and more.

Claude Code OpenAI Codex License CI Plugin Python

Quick Start

Claude Code

claude plugin install snowflake-cortex-code@claude-plugins-official

OpenAI Codex

From your terminal:

codex plugin marketplace add Snowflake-Labs/snowflake-ai-kit
codex plugin add snowflake-cortex-code@snowflake-ai-kit

Or inside Codex, open /plugins and install "Snowflake Cortex Code" from the Snowflake AI Kit marketplace.

That's it

Ask naturally — the plugin handles routing:

  • "Show me my Snowflake warehouses"
  • "What databases do I have access to?"
  • "List all tables in my current schema"
  • "Create a dynamic table that refreshes hourly"

Non-Snowflake prompts ("fix the bug in auth.py", "write a unit test") stay in your current agent.

How It Works

You → Claude Code / Codex → [Plugin detects Snowflake intent] → Cortex Code CLI → Snowflake
  1. A lightweight keyword filter runs on every prompt (~50ms, no network)
  2. If Snowflake intent is detected, the plugin routes to Cortex Code CLI
  3. Cortex Code executes with 55+ specialized skills (SQL, governance, ML, streaming, etc.)
  4. Results flow back to your agent session

To explicitly invoke Cortex Code (bypassing auto-detection):

$cortex-run show me my warehouses and their current state

See plugins/cortex-code/ for full documentation on security model, envelopes, and configuration.

Cursor

Works natively — enable "Third-party skills" in Cursor Settings. No separate plugin needed.

Prerequisites

The plugin requires Cortex Code CLI (cortex) on your PATH. Install it from the official docs.

Snowflake Connection

Cortex Code CLI needs a Snowflake connection configured at ~/.snowflake/connections.toml:

snow connection add

Installer

The bundled installer sets up both Snowflake CLI (snow) and Cortex Code CLI (cortex):

PlatformCommand
macOS / Linuxbash install.sh
Windows.\install.ps1
npx (any)npx @snowflake-labs/ai-kit
FlagDescription
--check / -CheckCheck installation status without installing
--with-claude / -WithClaudeAlso install Claude Code CLI + plugin
--with-codex / -WithCodexAlso install OpenAI Codex CLI + plugin
--help / -HelpShow help

Skills

Cortex Code CLI ships with 55+ built-in skills that activate automatically based on your prompt:

cortex skill list

Examples: semantic-view, cortex-agent, data-quality, dynamic-tables, cost-intelligence, machine-learning, iceberg, data-governance, cortex-ai-functions, deploy-to-spcs, lineage, dbt-projects-on-snowflake, snowflake-notebooks, security-investigation, workload-performance-analysis.

Skills are organized by source:

CategoryDescription
BUNDLEDShip with the CLI binary. Updated on cortex update.
GLOBALUser-installed in ~/.snowflake/cortex/skills/. Shared across projects.
EXTERNALAdded via cortex skill add <path> or cortex skill add owner/repo.
PROJECTDiscovered from the current working directory.

Troubleshooting

ProblemFix
cortex: command not foundRe-run bash install.sh or install from Cortex Code CLI docs.
snow: command not foundEnsure ~/.local/bin is in $PATH. Open a new terminal.
Connection errorsRun snow connection add. Docs: Specify credentials
Plugin not routingVerify plugin is enabled in your agent's settings.
Installer hangs on WindowsRun PowerShell as Administrator.

Contributing

All PRs run CI on macOS and Windows via GitHub Actions (test.yml). The full test suite (200 tests) must pass on both platforms.

bash tests/run-tests.sh --verbose        # macOS / Linux
.\tests\run-tests.ps1 -Verbose           # Windows (PowerShell)

License

Copyright (c) Snowflake Inc. All rights reserved.

Skills are licensed under the Snowflake Skills License. All other content is Apache 2.0.

Contributors

iamontheinet

42 commits

sfc-gh-ddesai

11 commits

Git2richie

2 commits

Languages

Python

66.4%

TypeScript

17.5%

PowerShell

9.4%

Shell

6.5%