example-skill
星标7
分支2
更新时间2026年2月26日 04:20
An example skill demonstrating the skill file format and structure
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
An example skill demonstrating the skill file format and structure
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Use when analyzing revenue, sales, or financial performance. Provides standard approaches for calculating and comparing revenue metrics.
Use when checking data quality, finding anomalies, or validating data integrity. Provides patterns for identifying data issues.
Use this skill when creating new skills. Guides the design and implementation of skill files.
| name | Example Skill |
| description | An example skill demonstrating the skill file format and structure |
| category | documentation |
| tags | ["example","template","documentation"] |
This is an example skill that demonstrates the proper structure and format for skill files.
Use this skill as a reference when creating new skills.
A skill file consists of:
Frontmatter (YAML between --- delimiters)
name: Human-readable name (required)description: When and how to use (required)category: Organizational category (optional)tags: List of tags for filtering (optional)Body (Markdown content)
from app.modules.skill.services import SkillService
service = SkillService(storage)
skill = service.get_skill_by_skill_id(db_connection_id, "example")
print(skill.content)