Skip to content

Commit 850bce8

Browse files
committed
Add subagent Cortex Code integrations
1 parent 43d9fe4 commit 850bce8

152 files changed

Lines changed: 33733 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ This repo includes:
2424
| [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) |
2525
| [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) |
2626
| [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) |
27+
| [Subagent Cortex Code integrations](subagent-cortex-code/) | Additional agent and CLI integrations for Codex, Cursor, and terminal workflows | Source package in this repo |
2728

2829
### Install
2930

subagent-cortex-code/.coveragerc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[run]
2+
source = shared/
3+
omit =
4+
*/tests/*
5+
*/__pycache__/*
6+
*/venv/*
7+
8+
[report]
9+
precision = 2
10+
show_missing = True
11+
skip_covered = False
12+
13+
[html]
14+
directory = htmlcov

subagent-cortex-code/.gitignore

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
*.egg-info/
8+
dist/
9+
build/
10+
11+
# Temporary files
12+
/tmp/
13+
*.tmp
14+
*.log
15+
.DS_Store
16+
17+
# Cortex cache
18+
/tmp/cortex-capabilities.json
19+
~/.cache/cortex-skill/
20+
21+
# User configuration (local settings)
22+
config.yaml
23+
# Exception: Claude Code and Codex need default config.yaml for proper setup
24+
!integrations/claude-code/config.yaml
25+
!integrations/codex/config.yaml
26+
27+
# Generated/temporary directories
28+
.worktrees/
29+
semantic_view_*/
30+
DB_STOCK_*/
31+
32+
# Audit logs (may contain sensitive data)
33+
audit.log
34+
35+
# IDE
36+
.vscode/
37+
.idea/
38+
*.swp
39+
*.swo
40+
41+
# OS
42+
Thumbs.db
43+
# Coverage reports
44+
.coverage
45+
htmlcov/
46+
.pytest_cache/

subagent-cortex-code/LICENSE

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
Snowflake Skills License
2+
3+
© 2026 Snowflake Inc. All rights reserved.
4+
5+
LICENSE: Use of these materials (including all code, prompts, assets, files,
6+
and other components of these skills (collectively, "Skills")) is governed by
7+
your agreement with Snowflake for the Service. If no separate agreement exists,
8+
use is governed by Snowflake's Terms of Service (available at:
9+
https://www.snowflake.com/en/legal/terms-of-service/).
10+
11+
Your applicable agreement is referred to as the "Agreement." "Service" is as
12+
defined in the Agreement.
13+
14+
ADDITIONAL RESTRICTIONS: Notwithstanding anything in the Agreement to the
15+
contrary, you may not:
16+
17+
· Extract from the Service or retain copies of the Skills outside use with
18+
the Service;
19+
· Reproduce or copy the Skills, except for temporary copies created
20+
automatically during authorized use of the Service;
21+
· Create derivative works based on the Skills;
22+
· Distribute, sublicense, or transfer the Skills to any third party;
23+
· Make, offer to sell, sell, or import any inventions embodied in the Skills;
24+
nor,
25+
· Reverse engineer, decompile, or disassemble the Skills.
26+
27+
The receipt, viewing, or possession of the Skills does not convey or imply any
28+
license or right beyond those expressly granted above.
29+
30+
Snowflake retains all rights, title, and interest in the Skills, including all
31+
copyrights, trademarks, patents, and all other applicable intellectual property
32+
rights.
33+
34+
THE SKILLS ARE PROVIDED "AS IS," WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
35+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
36+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
37+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
38+
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
39+
WITH THE SKILLS OR THE USE OR OTHER DEALINGS IN THE SKILLS.

0 commit comments

Comments
 (0)