Skill Management
Skills are self-contained tool packages that extend agent capabilities. The CLI provides commands for listing, installing, inspecting, and removing skills.
evonic skill list
Section titled “evonic skill list”List all installed skills with their status and tool count.
evonic skill listOutput:
ID Name Version Status Tools-------------------------------------------------------------hello_world Hello World 1.0.0 enabled 1kanban_agent Kanban Agent 1.0.0 enabled 4evonic skill add <source>
Section titled “evonic skill add <source>”Install a skill from a local path, zip file, or GitHub URL.
evonic skill add <source>| Source Type | Description |
|---|---|
| Local path | Path to a skill directory (e.g. ./my-skill/) |
| Zip file | Path to a .zip file (e.g. ./my-skill.zip) |
| GitHub URL | Repository URL (e.g. https://github.com/user/repo) |
Example:
# Install from local directoryevonic skill add ./my-skill/
# Install from zip fileevonic skill add ./my-skill.zip
# Install from GitHubevonic skill add https://github.com/user/my-skillOutput:
Skill installed: My Skill (my_skill) v1.0.0evonic skill get <skill_id>
Section titled “evonic skill get <skill_id>”Show detailed information about a specific skill.
evonic skill get hello_worldOutput:
ID: hello_worldName: Hello WorldVersion: 1.0.0Status: enabledDescription: Simple demo skill
Tools (1): - hello Say hello
Variables (0):evonic skill rm <skill_id>
Section titled “evonic skill rm <skill_id>”Uninstall a skill by its ID. Built-in/core skills cannot be removed.
evonic skill rm my_skillOutput:
Skill uninstalled: my_skill