Documentation Index
Fetch the complete documentation index at: https://docs.ardor.cloud/llms.txt
Use this file to discover all available pages before exploring further.
Skill Types
Personal
Skills attached to your user account. Use them for private preferences, personal workflows, or individual coding standards.
Workspace
Skills shared with everyone in the workspace. Use them for team conventions, project workflows, and shared operational playbooks.
System
Skills provided by Ardor. They teach Cerebrum how to work with built-in Ardor capabilities and supported platform workflows.
How Skills Work
Cerebrum discovers skills by reading their metadata and descriptions. When a you ask for something, the agent compares the request with available skill descriptions and activates the most relevant skill automatically.Cerebrum matches a skill
The agent checks skill metadata, especially the description trigger in the YAML frontmatter.
Package Structure
Every skill is stored as a structured package:| Path | Required | Purpose |
|---|---|---|
SKILL.md | Yes | Contains YAML frontmatter with the skill name and trigger description, followed by step-by-step instructions for Cerebrum. |
references/ | No | Stores supporting documentation, policies, examples, and reference material. |
scripts/ | No | Stores executable scripts that automate repeatable work. |
assets/ | No | Stores templates, code examples, snippets, and reusable files. |
SKILL.md
SKILL.md is the entry point for every skill. It contains metadata and the instructions Cerebrum should follow.
The description should be specific enough for Cerebrum to know when the skill applies.
Ways to Use Skills
Automatic activation
Automatic activation
Cerebrum activates a skill automatically when your request matches the skill’s YAML frontmatter description.For example, if a skill description says it should be used for API reviews, asking “review this API contract” can activate that skill without any extra command.
Manual activation
Manual activation
You can explicitly ask Cerebrum to use a skill by name, either through a slash command or directly in text.Examples:
/api-review check this endpoint designUse the api-review skill for this service
When to Create a Skill
Create a skill when you want Cerebrum to follow the same guidance repeatedly:- Team engineering standards
- Code review checklists
- Deployment or incident workflows
- Documentation templates
- Project-specific context that should be reused across sessions
The best way to do this is asking Cerebrum to create skill and describe the workflow you want to bake in.

