Skills
Skills are installable packages that bundle tool definitions (OpenAI function schemas) with their Python backend implementations. They extend the platform’s tool capabilities without modifying core code.
How Skills Fit In
Section titled “How Skills Fit In”Skill Package ├── skill.json # Manifest ├── setup.py # Lifecycle hooks ├── tool-definitions.json └── backend/tools/ ├── tool_a.py └── tool_b.py ↓Tool Registry (agent sees these tools) ↓Agent Runtime (executes tools during conversation)Installing Skills
Section titled “Installing Skills”Skills are managed via:
- Web UI — the
/skillspage for uploading, enabling/disabling, and deleting - CLI — the
evonic skillcommands for command-line management
Once installed and enabled, a skill’s tools are automatically available for assignment to agents.
Learn More
Section titled “Learn More”- Skills — Full Reference — complete documentation with package structure, installation, and management
- Skillsets — group skills for agent configuration