Documentation / Agent skills
Skills documentation
Everything you need to know about agent skills—what they are, how to author them, and where to find examples and the skill library.
Welcome to the Agentic Hosting skills documentation. This section covers everything you need to know about skills—what they are, how to create them, and how to use them.
Getting started
If you are new to skills, start here:
| Document | Description |
|---|---|
| Skills introduction | What skills are and why they matter. |
| Skills format specification | Technical format and structure. |
| Skills setup guide | How to create and deploy skills. |
Skills library
Browse common skills for your platform:
| Document | Description |
|---|---|
| Skills library | Catalog of ready-to-use skills. |
Examples
Real-world skill examples:
| Document | Description |
|---|---|
| Example: Web fetch | Simple HTTP fetch skill. |
| Example: Data transform | Data processing skill. |
Quick reference
File structure
skills/
├── SKILL.md # Required: Main skill definition
├── README.md # Optional: Skill-specific notes
├── examples/ # Optional: Example files
│ └── example.yaml
└── assets/ # Optional: Images, diagrams
└── diagram.pngRequired frontmatter
---
title: "Skill Display Name"
slug: skill-slug
description: "Brief description (1-2 sentences)."
version: "1.0.0"
author: "Your Name"
tags: ["tag1", "tag2"]
category: "core|automation|research|ops|integration|data|security"
status: "active|draft|deprecated"
requirements: []
---Categories
core— Built-in and foundational platform skillsautomation— Task automation and workflowsresearch— Information gathering and analysisops— Operational tasksintegration— External API connectionsdata— Data processingsecurity— Security-related tasks
Contributing
Have a skill to share? Community contributions are welcome.
- Follow the skills format specification.
- Test your skill thoroughly.
- Submit via the standard contribution process.
Support
- Documentation issues: Report errors or suggest improvements.
- Skill requests: Request new skills or modifications.
- Community: Share your skills with the community.
Last updated: April 2026.