Skills
Skills are the core building blocks of AgCel. They represent specific capabilities that an AI agent can perform.
Anatomy of a Skill
Section titled “Anatomy of a Skill”A skill is defined by a directory structure containing a SKILL.md file.
skills/└── my-skill/ └── SKILL.mdSKILL.md Format
Section titled “SKILL.md Format”The SKILL.md file contains the instructions and context for the skill.
# My Skill
This skill does something useful.
## Usage
When the user asks for X, do Y.Creating a New Skill
Section titled “Creating a New Skill”To create a new skill:
- Create a new directory in your
skillsfolder. - Add a
SKILL.mdfile with clear instructions. - (Optional) Add any supporting files or scripts.
Using Skills
Section titled “Using Skills”Once a skill is created, it is automatically detected by the AgCel server and made available to connected AI agents.