Documentation Index
Fetch the complete documentation index at: https://astralform.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Skills give your AI agent specialized knowledge and workflows. They follow the open agentskills.io specification using SKILL.md files with YAML frontmatter. When a user’s request matches a skill’s purpose, the agent automatically activates it to get detailed instructions.Adding a Skill
Skills are added through the agent detail page:- Go to Agents and click an agent
- On the Skills tab, click Add New Skill
- Choose a source:
- Custom - Write SKILL.md content directly
- URL - Import from a GitHub raw URL
SKILL.md Format
Required Fields
| Field | Description |
|---|---|
name | Unique identifier (lowercase, hyphens allowed) |
description | Short description shown to the agent (~100 tokens) |
Optional Fields
| Field | Description |
|---|---|
runtime | Execution environment: workspace provisions a sandbox automatically |
metadata.version | Semantic version (e.g., “1.0.0”) |
metadata.author | Skill author name |
Auto-Capsule
Skills withruntime: workspace in their frontmatter automatically provision a sandbox for their agent (auto-capsule). No manual sandbox configuration needed.
When an agent with non-system skills processes a request, an isolated Capsule sandbox (Firecracker microVM) is automatically created. The agent can then execute code, run shell commands, and manage files inside the sandbox.
See Capsule Sandboxes for details on sandbox templates and management.
How Skills Work
- Discovery - At agent startup, skill metadata (name + description) is loaded
- System Prompt - Available skills are listed in the agent’s context
- Activation - Agent calls
activate_skillwhen a request matches - Instructions - Full SKILL.md content is provided to the agent
Managing Skills
Enable/Disable
Toggle skills on/off without deleting them. Disabled skills are not shown to agents.Refresh URL Skills
For skills imported from URLs:- Click Refresh to re-fetch the latest content
- Review changes in the skill editor
- Content updates automatically
Delete
- Click the Delete button
- Confirm deletion
Best Practices
| Do | Don’t |
|---|---|
| Write clear, actionable instructions | Include irrelevant background |
| Keep descriptions under 100 tokens | Write essay-length descriptions |
| Use step-by-step workflows | Assume agent knows procedures |
| Test skills with real requests | Deploy untested skills |
Example Skills
Customer Support
Code Review
Next Steps
Agents
Assign skills to specific agents
MCP Servers
Connect external tools and databases
