Skillset Management
Skillsets are pre-configured agent templates that define tools, skills, system prompts, and KB files. Commands for listing, inspecting, and applying skillset templates.
evonic skillset list
Section titled “evonic skillset list”List all available skillset templates.
evonic skillset listOutput:
ID Name Description Tools Skills-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------coder Coder General-purpose coding agent for building, debugging, and refactoring software... 7 0data_analyst Data Analyst Data analysis agent for statistical analysis, data processing, visualization... 7 1devops DevOps Engineer DevOps and infrastructure agent for managing CI/CD pipelines... 8 0pentester Penetration Tester Penetration testing agent for security assessment... 5 0sysadmin System Administrator System administration agent for server management... 8 0evonic skillset get <skillset_id>
Section titled “evonic skillset get <skillset_id>”Show detailed information about a specific skillset template.
evonic skillset get coderOutput:
ID: coderName: CoderDescription: General-purpose coding agent for building, debugging, and refactoring software.Model: (default)
System Prompt: You are a skilled software developer. You write clean, well-documented code...
Tools (7): - read_file - write_file - str_replace - patch - bash - runpy - calculator
Skills (0):evonic skillset apply <skillset_id>
Section titled “evonic skillset apply <skillset_id>”Create a new agent from a skillset template.
evonic skillset apply <skillset_id> --agent-id <id> [--name <name>] [--description <desc>] [--model <model>]| Flag | Required | Description |
|---|---|---|
--agent-id | Yes | Agent ID for the new agent |
--name | No | Display name (default: from skillset) |
--description | No | Description (default: from skillset) |
--model | No | Model override |
Example:
evonic skillset apply coder --agent-id my_coder --name "My Coder Agent"Output:
Agent created: My Coder Agent (my_coder) from skillset 'coder'