Overview
Theskills command allows you to manage custom skills that extend your agent’s capabilities. Skills are reusable prompt templates and instructions that can be loaded dynamically.
Subcommands
list
List all installed skills in your workspace.list-builtin
List all built-in skills that come with PicoClaw.install
Install a skill from a URL or file path.URL to a skill file or local file path
install-builtin
Install a built-in skill to your workspace.Name of the built-in skill to install
show
Display the content of a skill.Name of the skill to display
search
Search for skills by name or keyword.Search query (skill name or keyword)
remove
Remove an installed skill from your workspace.Name of the skill to remove
Skill Locations
Skills are loaded from three locations in order of priority:- Workspace skills:
~/.picoclaw/workspace/skills/ - Global skills:
~/.picoclaw/skills/ - Built-in skills: Bundled with PicoClaw installation
Workspace skills override global skills, and global skills override built-in skills with the same name.
Creating Custom Skills
Skills are Markdown files with YAML frontmatter. See the Skills feature guide for detailed instructions on creating custom skills. Example skill file:Use Cases
Project Templates
Install skills for common project setups (Git workflows, CI/CD patterns)
Code Review
Load specialized code review checklists and best practices
Documentation
Install documentation writing guides (Mintlify, OpenAPI, etc.)
Team Standards
Share team-specific coding standards and patterns
Next Steps
Skills Feature
Learn about the skills system and how to create custom skills
Agent Configuration
Configure which skills your agent loads
Workspace
Understand workspace structure and file organization