Guides
Custom Skills
Build and publish custom skills
Building Custom Skills
Create custom skills to extend Overseer with new capabilities.
Skill Structure
skills/
my-skill/
index.ts # Skill implementation (tools)
skill.json # Metadata
README.md # DocumentationStep-by-Step
1. Create Directory
mkdir -p skills/my-skill2. Define Metadata
{
"name": "my-skill",
"version": "1.0.0",
"description": "What this skill does",
"author": "Your Name",
"tools": ["myTool"]
}3. Implement Tools
import { tool } from "ai";
import { z } from "zod";
export const tools = {
myTool: tool({
description: "Description of the tool",
parameters: z.object({
input: z.string().describe("Input parameter"),
}),
execute: async ({ input }) => {
// Your implementation
return { success: true, result: `Processed: ${input}` };
},
}),
};4. Test
Restart Overseer — skills are auto-discovered from the skills/ directory.
Skills can include multiple tools. Group related functionality into a single skill for better organization.