Skills System
Skills are reusable capability packages that give the agent domain-specific knowledge and tool configurations.
CLI commands
Section titled “CLI commands”human skills list # List installed skillshuman skills search <query> # Search the skill registryhuman skills install <name> # Install a skillhuman skills remove <name> # Remove a skillhuman skills info <name> # Show skill detailshuman skills publish <path> # Publish a skill to the registrySkill structure
Section titled “Skill structure”A skill is a directory with a skill.json manifest:
{ "name": "web-research", "version": "1.0.0", "description": "Web research and summarization", "tools": ["web_search", "web_fetch"], "system_prompt": "You are a web research assistant...", "parameters": { "max_results": 10, "summary_length": "brief" }}Built-in skills
Section titled “Built-in skills”| Skill | Description |
|---|---|
code-review | Analyze code for bugs and style issues |
web-research | Search and summarize web content |
file-manager | Organize and manage files |
data-analysis | Analyze CSV/JSON datasets |
sysadmin | System administration tasks |
Creating custom skills
Section titled “Creating custom skills”- Create a directory with
skill.json - Define the system prompt and tool configuration
- Test locally with
human skills install ./my-skill - Publish with
human skills publish ./my-skill