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 ページを確認してインストールできます。
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.
SOC 職業分類に基づく
| 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)