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

  1. Agent receives a task that requires a specific capability
  2. Agent invokes the skill using a slash command (e.g., /inspect-vessel)
  3. Skill executes with the agent's context and returns results
  4. Agent incorporates the skill output into its workflow

Skill Categories

CategoryExamplesDescription
Maritime/inspect-vessel, /check-certificatesDomain-specific operations
Communication/send-report, /notify-teamMessaging and notifications
Data/query-fleet, /generate-reportData retrieval and analysis
System/health-check, /compact-memoryAgent 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.

On this page