← ClaudeAtlas

opencode-skillslisted

Create, configure, and troubleshoot OpenCode agent skills (SKILL.md definitions). Covers file locations, discovery, frontmatter spec, permissions, per-agent overrides, and publishing.
Timmy6942025/opencode-builder-skill · ★ 1 · Data & Documents · score 72
Install: claude install-skill Timmy6942025/opencode-builder-skill
# OpenCode Skills > **📚 Official Docs:** For the latest information, always refer to the official documentation: > [https://opencode.ai/docs/skills/](https://opencode.ai/docs/skills/) ## Overview OpenCode agent skills are reusable instruction sets defined as `SKILL.md` files. Agents see available skills listed in the `skill` tool description and can load full content on demand by calling the skill tool. Skills let you encapsulate domain knowledge, workflows, and best practices that agents can discover and use without bloating every conversation with their full content. Skills are: - **On-demand loaded**: agents see only names and descriptions until they explicitly load a skill - **Project-local or global**: scoped to a repository or shared across all projects - **Permission-controlled**: restrict which agents can load which skills via pattern-based rules - **Claude-compatible**: share a directory convention with Claude Code skills --- ## File Locations OpenCode searches for `SKILL.md` files in these directories. Each skill lives in its own subdirectory named after the skill. ### Project-local (in your repository) | Path | Description | |---|---| | `.opencode/skills/<name>/SKILL.md` | Primary OpenCode project skill | | `.claude/skills/<name>/SKILL.md` | Claude Code-compatible project skill | | `.agents/skills/<name>/SKILL.md` | Agent-compatible project skill | ### Global (shared across all projects) | Path | Description | |---|---| | `~/.config/opencode/skills/<nam