| name | skill-creator |
| description | Create or update Qorven agent skills with structured SKILL.md files, scripts, and references. |
Skill Creator
Use this skill when asked to create a new skill, update an existing skill, or extend agent capabilities.
What is a Skill?
A skill is a directory containing a SKILL.md file that teaches an agent how to perform a specific task. Skills are injected into the agent's system prompt.
Skill Structure
skills/<skill-name>/
├── SKILL.md # Required — instructions for the agent
├── scripts/ # Optional — helper scripts the agent can exec
└── references/ # Optional — reference docs, examples
SKILL.md Format
---
name: my-skill-name
description: What this skill does (used for search)
---
Describe when this skill should be activated.
Step-by-step instructions for the agent.
Show example inputs and expected outputs.
Creating a Skill
- Create the directory:
mkdir -p skills/<name>
- Write
SKILL.md with frontmatter (name, description) and instructions
- Add helper scripts in
scripts/ if needed
- Test by asking the agent to use the skill
- Publish with
publish_skill(path: "skills/<name>")
Best Practices
- Keep instructions clear and specific
- Include examples of expected behavior
- Use
{baseDir} placeholder for paths to skill files
- Test with multiple scenarios before publishing
- Never include secrets or API keys in skill content