example-skill
An example skill demonstrating the skill file format and structure
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
An example skill demonstrating the skill file format and structure
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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)