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.

← Documentation overview

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:

DocumentDescription
Skills introductionWhat skills are and why they matter.
Skills format specificationTechnical format and structure.
Skills setup guideHow to create and deploy skills.

Skills library

Browse common skills for your platform:

DocumentDescription
Skills libraryCatalog of ready-to-use skills.

Examples

Real-world skill examples:

DocumentDescription
Example: Web fetchSimple HTTP fetch skill.
Example: Data transformData 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.png

Required 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 skills
  • automation — Task automation and workflows
  • research — Information gathering and analysis
  • ops — Operational tasks
  • integration — External API connections
  • data — Data processing
  • security — Security-related tasks

Contributing

Have a skill to share? Community contributions are welcome.

  1. Follow the skills format specification.
  2. Test your skill thoroughly.
  3. 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.