This guide shows how to create skills using three methods: asking the agent, using the dashboard, or via API.Documentation Index
Fetch the complete documentation index at: https://docs.usechar.com/llms.txt
Use this file to discover all available pages before exploring further.
New to skills? Read Understanding Skills first.
Where Skills Live
In this product, organization skills are stored in the backend database and scoped to your current organization.- Create and edit them from the Skills page.
- The agent can also create and update them with
create_skillandupdate_skill_with_patch. - Each skill is still authored as full
SKILL.mdcontent (YAML frontmatter + Markdown body).
skill-creator-webmcpat locationbuiltin://skill-creator-webmcp
Ask the Agent
The agent has a built-increate_skill tool. Describe the workflow you want to capture:
“Create a skill for processing return requests. First verify the order exists, check if it’s within 30 days and unused, generate a return label, then send confirmation.”To refine an existing skill:
“Update the returns skill to require photo proof for items over $100”The agent uses
update_skill_with_patch to make targeted edits.
From the Dashboard
- Go to Skills in the sidebar
- Click Create Skill
- Enter a name (lowercase, hyphens only)
- Write a description of when the skill should activate
- Add workflow steps in the body
- Click Save
From the API
See Skill Schema — API for endpoints and request formats.Writing the Description
The description determines when the agent loads the skill. Be specific:| Vague | Specific |
|---|---|
Handle orders | Check order status, provide tracking links, explain delivery estimates |
Customer support | Process returns, explain refund timelines, generate shipping labels |
Writing the Body
Structure the body as numbered steps. Reference the tools the agent should use:Testing
Ask the agent a question that should trigger the skill. If it doesn’t activate:- Check the description matches the question type
- Verify the name format (lowercase, no consecutive hyphens)
- Check for validation errors in the dashboard
Next Steps
Skill Schema
Field definitions and validation rules
Understanding Skills
How progressive disclosure works

