Understanding Skills
Skills are modular, reusable units of work that can be discovered and executed by AI agents.What is a Skill?
A skill is a folder containing instructions, scripts, and resources that agents can use to perform specific tasks. Skills use progressive disclosure to manage context efficiently:- Discovery: At startup, agents load only the name and description
- Activation: When relevant, the full instructions are loaded
- Execution: The agent follows instructions and optionally runs scripts
Skill Structure
SKILL.md Format
Every skill must have aSKILL.md file with YAML frontmatter:
Key Fields
| Field | Required | Description |
|---|---|---|
name | Yes | Unique identifier (lowercase, hyphens) |
description | Yes | When to use this skill (1024 chars max) |
license | No | License for the skill |
metadata | No | Additional metadata (author, version, etc.) |
compatibility | No | Environment requirements |
allowed-tools | No | Pre-approved tools (experimental) |
Live Log Insight Skills
Core Skills (Required)
| Skill | Purpose |
|---|---|
livelogs_insights | Orchestrates the full pipeline |
logsource_discovery | Finds log sources |
fetch_logs | Retrieves raw logs |
parse_logs | Normalizes log formats |
aggregate_logs | Computes metrics |
detect_anomalies | Identifies issues |
generate_summary | Creates reports |
recommend_actions | Suggests actions |
Advanced Skills (Optional)
| Skill | Purpose |
|---|---|
high_hypothesis | Root cause analysis |
How Agents Use Skills
Best Practices
Writing Instructions
- Use clear, step-by-step instructions
- Include examples of inputs and outputs
- Document edge cases and error handling
- Keep the main SKILL.md under 5000 tokens
Organizing Resources
- Use
scripts/for executable code - Use
references/for detailed documentation - Use
assets/for templates and static resources - Keep file references one level deep
Metadata
- Use descriptive names (lowercase, hyphens)
- Write detailed descriptions with keywords
- Include relevant tags for discovery
- Version your skills
Next Steps
Skills Reference
Explore all available skills.
Pipeline Flow
See how skills work together.
