Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ This repo includes:
| [Snowflake CLI](https://docs.snowflake.com/en/developer-guide/snowflake-cli/index) (`snow`) | Manage Snowflake objects, deploy apps, run SQL from the terminal | System PATH (via pipx/pip/brew) |
| [Cortex Code CLI](https://docs.snowflake.com/en/user-guide/cortex-code/cortex-code-cli) (`cortex`) | AI coding assistant for Snowflake — generate code, explore data, build apps | System PATH (via official installer) |
| [Cortex Code plugin for Claude Code](plugins/cortex-code/) | Auto-route Snowflake prompts from Claude Code to Cortex Code | [Claude Code marketplace](#install-via-claude-code-marketplace) (separate install) |
| [Subagent Cortex Code integrations](subagent-cortex-code/) | Additional agent and CLI integrations for Codex, Cursor, and terminal workflows | Source package in this repo |

### Install

Expand Down
14 changes: 14 additions & 0 deletions subagent-cortex-code/.coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[run]
source = shared/
omit =
*/tests/*
*/__pycache__/*
*/venv/*

[report]
precision = 2
show_missing = True
skip_covered = False

[html]
directory = htmlcov
46 changes: 46 additions & 0 deletions subagent-cortex-code/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/

# Temporary files
/tmp/
*.tmp
*.log
.DS_Store

# Cortex cache
/tmp/cortex-capabilities.json
~/.cache/cortex-skill/

# User configuration (local settings)
config.yaml
# Exception: Claude Code and Codex need default config.yaml for proper setup
!integrations/claude-code/config.yaml
!integrations/codex/config.yaml

# Generated/temporary directories
.worktrees/
semantic_view_*/
DB_STOCK_*/

# Audit logs (may contain sensitive data)
audit.log

# IDE
.vscode/
.idea/
*.swp
*.swo

# OS
Thumbs.db
# Coverage reports
.coverage
htmlcov/
.pytest_cache/
39 changes: 39 additions & 0 deletions subagent-cortex-code/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
Snowflake Skills License

© 2026 Snowflake Inc. All rights reserved.

LICENSE: Use of these materials (including all code, prompts, assets, files,
and other components of these skills (collectively, "Skills")) is governed by
your agreement with Snowflake for the Service. If no separate agreement exists,
use is governed by Snowflake's Terms of Service (available at:
https://www.snowflake.com/en/legal/terms-of-service/).

Your applicable agreement is referred to as the "Agreement." "Service" is as
defined in the Agreement.

ADDITIONAL RESTRICTIONS: Notwithstanding anything in the Agreement to the
contrary, you may not:

· Extract from the Service or retain copies of the Skills outside use with
the Service;
· Reproduce or copy the Skills, except for temporary copies created
automatically during authorized use of the Service;
· Create derivative works based on the Skills;
· Distribute, sublicense, or transfer the Skills to any third party;
· Make, offer to sell, sell, or import any inventions embodied in the Skills;
nor,
· Reverse engineer, decompile, or disassemble the Skills.

The receipt, viewing, or possession of the Skills does not convey or imply any
license or right beyond those expressly granted above.

Snowflake retains all rights, title, and interest in the Skills, including all
copyrights, trademarks, patents, and all other applicable intellectual property
rights.

THE SKILLS ARE PROVIDED "AS IS," WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SKILLS OR THE USE OR OTHER DEALINGS IN THE SKILLS.
Loading