907 B
907 B
Jamyun Skills
A collection of agent skills for reusable, modular capabilities.
Each skill lives in its own directory under skills/ and contains a SKILL.md file with metadata, usage instructions, and implementation details.
Structure
skills/
└── <skill-name>/
└── SKILL.md
Example
skills/
└── final-answer/
└── SKILL.md
Writing a Skill
A SKILL.md file should follow this format:
---
name: skill-name
description: Short description of what this skill does.
---
# Skill Name
Longer description of the skill.
## Usage
When to use this skill and how to invoke it.
## Implementation
Details on how the skill works or how to extend it.
Adding a Skill
- Create a new directory under
skills/<skill-name>/. - Add a
SKILL.mdfile with the required frontmatter. - Commit the change.