Skills
Extensible slash-command skill library for AI agents
Overview
Skills are modular capabilities that agents can invoke via slash commands. They extend agent functionality without modifying core agent logic.
How Skills Work
- Agent receives a task that requires a specific capability
- Agent invokes the skill using a slash command (e.g.,
/inspect-vessel) - Skill executes with the agent's context and returns results
- Agent incorporates the skill output into its workflow
Skill Categories
| Category | Examples | Description |
|---|---|---|
| Maritime | /inspect-vessel, /check-certificates | Domain-specific operations |
| Communication | /send-report, /notify-team | Messaging and notifications |
| Data | /query-fleet, /generate-report | Data retrieval and analysis |
| System | /health-check, /compact-memory | Agent maintenance |
Creating Custom Skills
Skills are defined as modules in the skills/ directory of your Lifeverse AI deployment. Each skill exports a handler function that receives the agent context and parameters.