Agent Skills Examples

July 24, 2026 · View on GitHub

This directory contains runnable examples demonstrating the agent-skills framework.

Structure

examples/
├── README.md           # This file
└── simple/
    ├── README.md       # Simple examples documentation
    └── skills_example.py  # Comprehensive skills example

Quick Start

cd examples/simple
python skills_example.py

Examples Overview

Simple Examples

The simple/ directory contains a comprehensive example that demonstrates:

ExampleDescription
Skill CreationCreate skills programmatically via the SkillsManager API
SKILL.md FormatParse and generate Claude Code compatible SKILL.md files
Skill DiscoveryDiscover and search skills from directories
Skill ExecutionExecute skills in sandboxes with arguments
Skill VersioningVersion management for skills
Skills as CodeCode file-based skills managed with SkillsManager
MCP ServerExpose skills via MCP protocol

See simple/README.md for details.

Integration with Agent Codemode

For skills integrated with Agent Codemode (code-first tool composition), see:

This demonstrates using AgentSkillsToolset alongside CodemodeToolset for agents with both MCP tools and skills.