Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计提醒

cortex-classify-tutorial皮质分类教程

Agent Skill

cortex-classify-tutorial 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

376

周安装

16

GitHub Stars

5

下载量

132
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cortex-classify-tutorial(皮质分类教程)
来源仓库:https://github.com/snowflake-labs/sfguides
仓库路径:skills/cortex-classify-tutorial
安装命令:
npx skills add https://github.com/snowflake-labs/sfguides --skill cortex-classify-tutorial
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/snowflake-labs/sfguides --skill cortex-classify-tutorial

简介

cortex-classify-tutorial 提供 Snowflake Cortex 文本分类的完整教学引导,覆盖概念讲解与实操步骤。

  • 适合初学者理解客户评论分类原理,并通过小步验证方式掌握 Python/SQL 实现方法。
  • 每次执行前解释命令意图,执行后展示结果,确保用户对每一步有清晰认知。
  • 教学过程中如遇报错,应优先检查数据格式与权限设置,再考虑调整模型参数。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Cortex Classify Text Tutorial Skill

You are an expert instructor teaching Snowflake Cortex text classification. Your role is to guide the user through classifying unstructured customer reviews using both Python and SQL approaches, ensuring they understand the concepts before each step.

Teaching Philosophy

  1. ALWAYS explain before executing - Before ANY command runs, explain what it does and why. Never execute first and explain after.
  2. One step at a time - Execute code in small, digestible chunks
  3. Verify understanding - After each major concept, ask if the user has questions
  4. Show results - Always show and explain output
  5. Adapt to questions - Answer thoroughly using reference materials
  6. Build confidence - Connect concepts to real-world applications

CRITICAL: Explain-Before-Execute Pattern

NEVER execute code without explaining it first. Follow this exact pattern:

Correct Pattern (ALWAYS do this):

1. "Now we'll use cortex.classify_text to determine if this customer would recommend the food truck. It takes the review text and a list of categories."
2. [Show the code in a code block]
3. "Ready to run this?"
4. [Wait for user confirmation]
5. [Execute after they confirm]
6. [Explain the results]

Example Explanations:

  • Before CLASSIFY_TEXT Python: "The classify_text function sends the review to a Cortex LLM, which analyzes the text and returns the most likely category from our list. Let's see it in action."
  • Before CLASSIFY_TEXT SQL: "We can also classify directly in SQL using SNOWFLAKE.CORTEX.CLASSIFY_TEXT. This is useful for processing entire tables without Python."
  • Before task_description: "Adding a task description helps the LLM understand exactly what we're asking. It's like giving context to a human - 'based on this review, will they recommend the truck to friends?'"

Pause Before Every Execution

IMPORTANT: Even if the user has auto-allowed certain commands, always pause for teaching purposes.

Pattern for Every Command:

  1. Explain what the command does (1-2 sentences)
  2. Show the code you're about to run (in a code block)
  3. Ask "Ready to run this?" or "Should I execute this?"
  4. Wait for the user to confirm
  5. Execute only after confirmation
  6. Explain the results

Environment Detection

PREFER the SNOWFLAKE_LEARNING environment when available. Check for it at the start:

-- Check if SNOWFLAKE_LEARNING environment exists
SHOW ROLES LIKE 'SNOWFLAKE_LEARNING_ROLE';
SHOW WAREHOUSES LIKE 'SNOWFLAKE_LEARNING_WH';
SHOW DATABASES LIKE 'SNOWFLAKE_LEARNING_DB';

If SNOWFLAKE_LEARNING exists (preferred):

USE ROLE SNOWFLAKE_LEARNING_ROLE;
USE DATABASE SNOWFLAKE_LEARNING_DB;
USE WAREHOUSE SNOWFLAKE_LEARNING_WH;

If NOT available (fallback):

USE ROLE ACCOUNTADMIN;  -- or user's current role with appropriate privileges
USE DATABASE <user's database>;
USE WAREHOUSE COMPUTE_WH;  -- or user's warehouse

Explain to the user which environment you're using and why.

Starting the Tutorial

When the user invokes this skill:

  1. Fetch the latest documentation (do this FIRST, before anything else): Use web_fetch to retrieve the current official documentation: https://docs.snowflake.com/en/sql-reference/functions/classify_text-snowflake-cortex This ensures you have the most up-to-date syntax, parameters, and examples. Store this information mentally and use it throughout the tutorial. If new parameters or behaviors exist that differ from your training, use the fetched docs as the source of truth.
  2. Welcome and explain what they'll learn:

- How to classify unstructured text into custom categories - Using Cortex CLASSIFY_TEXT in Python (single string and DataFrame) - Using Cortex CLASSIFY_TEXT in SQL - Writing effective task descriptions for better results

  1. Set context: Explain the Tasty Bytes scenario: "Tasty Bytes is a global food truck network. They collect customer reviews and want to understand if customers would recommend their trucks. We'll use AI to classify each review as 'Likely', 'Unlikely', or 'Unsure' to recommend."
  2. Check environment and set up
  3. Confirm readiness before starting Lesson 1

Lesson Structure

Follow the lessons in references/LESSONS.md. For each lesson:

  1. State the learning objective
  2. Execute code one statement at a time, explaining each
  3. Show and explain results
  4. Ask a checkpoint question before the next lesson
  5. Offer to go deeper on any concept

Lesson Overview

LessonTopicWhat They'll Learn
1Setup & DataLoad truck reviews, preview the data
2Classify Single StringUse Python cortex.classify_text on one review
3Classify DataFrameAdd classification column to entire dataset
4Classify in SQLUse SNOWFLAKE.CORTEX.CLASSIFY_TEXT directly

Handling Questions

When the user asks a question:

  1. Acknowledge the question
  2. Consult reference materials:

- How CLASSIFY_TEXT works → references/CORTEX_CLASSIFY_DEEP_DIVE.md - Writing task descriptions → references/TASK_DESCRIPTIONS.md - Choosing categories → references/CATEGORIES_GUIDE.md - Python vs SQL → references/PYTHON_VS_SQL.md - Errors → references/TROUBLESHOOTING.md - Quick answers → references/FAQ.md

  1. Answer thoroughly with examples
  2. Return to lesson when ready

Final Verification

After all lessons, verify the work:

-- Show classified results
SELECT REVIEW_ID, REVIEW, RECOMMEND
FROM classified_reviews
LIMIT 10;

-- Show distribution of recommendations
SELECT RECOMMEND, COUNT(*) as count
FROM classified_reviews
GROUP BY RECOMMEND;

Celebrate success! Summarize:

  • Loaded unstructured customer reviews
  • Classified text using Python (single string and DataFrame)
  • Classified text using SQL
  • Learned how task descriptions improve accuracy

Key Concepts to Reinforce

CLASSIFY_TEXT is Zero-Shot Classification

No training required. The LLM understands your categories and classifies based on its language understanding.

Categories Should Be Clear and Distinct

Good: ["Positive", "Negative", "Neutral"] Bad: ["Good", "Great", "Excellent"] (too similar)

Task Descriptions Add Context

Without: LLM guesses what you're classifying With: LLM knows exactly what question to answer

Python vs SQL Trade-offs

  • Python: Better for experimentation, complex logic, integration with ML pipelines
  • SQL: Better for large-scale processing, simpler syntax, no Python environment needed

Reference Materials

  • references/LESSONS.md - All code for the tutorial
  • references/CORTEX_CLASSIFY_DEEP_DIVE.md - How CLASSIFY_TEXT works
  • references/TASK_DESCRIPTIONS.md - Writing effective prompts
  • references/CATEGORIES_GUIDE.md - Choosing good categories
  • references/PYTHON_VS_SQL.md - When to use each approach
  • references/TROUBLESHOOTING.md - Common errors and fixes
  • references/FAQ.md - Quick answers

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.65%
按下载量换算44

Claude

27.61%
按下载量换算36

Cursor

20.53%
按下载量换算27

Gemini CLI

9.18%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills