Skills are folders of instructions, scripts, and resources that Foxl loads dynamically to improve performance on specialized tasks. Each skill teaches the agent how to complete specific tasks in a repeatable way.
Each skill is a folder containing:
SKILL.md- Skill definition with YAML frontmatter and instructionsscripts/- Optional executable scripts the skill can invokereferences/- Optional reference documentationtemplates/- Optional templates
---
name: my-skill
description: What this skill does and when to trigger it
trigger: auto | manual
tags: tag1, tag2
requires: [curl, python3]
always: false
---
# My Skill
Instructions for the agent to follow when this skill is active.| Field | Required | Description |
|---|---|---|
name |
Yes | Unique identifier (lowercase, hyphens) |
description |
Yes | What the skill does and trigger conditions |
trigger |
No | auto (keyword-activated) or manual (explicit invocation) |
tags |
No | Comma-separated tags for categorization |
requires |
No | System dependencies needed |
always |
No | If true, skill is always loaded into agent context |
apple-notes apple-notes-native apple-reminders bear-notes notion obsidian outlook-web quip things-mac trello
discord himalaya imsg slack
browser-tool code-review code-search-tool coding-agent drawio exec-tool gemini git-tool github electron kiro-send-tool
apple-photos camsnap gifgrep openai-image-gen peekaboo songsee video-frames voice-call whisper whisper-api
docx pdf pptx xlsx nano-pdf
autoresearch blogwatcher research-assistant summarize web-fetch-tool
food-order goplaces local-places openhue sonos spotify spotify-player weather
blucli eightctl healthcheck mcporter mole nano-banana-pro oracle sag session-logs sherpa-onnx-tts tmux wacli
morning-briefing bird gog
Foxl automatically loads skills from the data/skills/ directory. To get the latest skills:
cd /path/to/foxl/data
git clone https://github.com/foxl-ai/skills.git skillsTo update:
cd /path/to/foxl/data/skills
git pull- Create a new folder:
my-skill/ - Add
SKILL.mdwith frontmatter and instructions - Optionally add
scripts/for executable tools - Restart the agent to load the new skill
MIT No Attribution (MIT-0). See LICENSE.