skill-authoring
- Repo stars 225
- Author repo agent-bank
What I do
- Define the steps and checks for adding a new OpenCode skill
- Ensure the skill is discoverable by the
skilltool - Validate naming, frontmatter, and placement rules
When to use
- Adding a new reusable workflow or playbook as a skill
- Updating skill metadata to meet OpenCode discovery requirements
Workflow
- Pick a skill name that matches
^[a-z0-9]+(-[a-z0-9]+)*$and is 1–64 chars. - Create
.opencode/skill/<name>/SKILL.mdand ensure the folder matches the name. - Add YAML frontmatter with
nameanddescription(optional:license,compatibility,metadata). - Write the body with clear sections (Purpose/What I do, When to use, Workflow, Completion criteria).
- Confirm discovery: run OpenCode in the repo and check
skilltool list. - If permissions block it, update
opencode.jsonwithpermission.skillrules.
Placement rules (from opencode.ai docs)
- Project:
.opencode/skill/<name>/SKILL.md - Project (Claude compatible):
.claude/skills/<name>/SKILL.md - Global:
~/.config/opencode/skill/<name>/SKILL.md - Global (Claude compatible):
~/.claude/skills/<name>/SKILL.md
Validation checklist
SKILL.mdis all caps and contains YAML frontmatternamematches folder namedescriptionis 1–1024 characters- No duplicate skill names in the repo
Example
---
name: git-release
description: Create consistent releases and changelogs
compatibility: opencode
---
## What I do
- Draft release notes from merged PRs
- Propose a version bump
- Provide a `gh release create` command
Completion criteria
- Skill appears in
skilltool list skill({ name })loads without errors- Instructions are clear enough to execute without extra context
- Fluxly category
- Other
- Author-declared agents
- No explicit declaration found; this is not inferred or tested compatibility
- Static check
- 88 / 100 · heuristic scan, not runtime safety proof
- Author / version / license
- @different-ai · no license declared
- Fluxly token estimate
- Lean
- Fluxly setup estimate
- Guided setup
- External API key
- No requirement detected
- Detected OS requirements
- Unspecified
- Runtime requirements
- Unspecified
- Detected file/system behavior
-
- Read-only
- Write / modify
- Shell exec
- Detected network behavior
- Local-only
- Install commands
- None (reference only)
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
The current SKILL.md does not define a fixed output example. Define the steps and checks for adding a new OpenCode skill Ensure the skill is discoverable by the skill tool Validate naming, frontmatter, and placement rules
Adding a new reusable workflow or playbook as a skill Updating skill metadata to meet OpenCode discovery requirements
Pick a skill name that matches ^[a-z0-9]+(-[a-z0-9]+)$ and is 1–64 chars. Create .opencode/skill/<name>/SKILL.md and ensure the folder matches the name. Add YAML frontmatter with name and description (optional: license, compatibility, metadata).
Project: .opencode/skill/<name>/SKILL.md Project (Claude compatible): .claude/skills/<name>/SKILL.md Global: ~/.config/opencode/skill/<name>/SKILL.md
SKILL.md is all caps and contains YAML frontmatter name matches folder name description is 1–1024 characters
Example
## What I do
- Define the steps and checks for adding a new OpenCode skill
- Ensure the skill is discoverable by the `skill` tool
- Validate naming, frontmatter, and placement rules
## When to use
- Adding a new reusable workflow or playbook as a skill
- Updating skill metadata to meet OpenCode discovery requirements
## Workflow
1. Pick a skill name that matches `^[a-z0-9]+(-[a-z0-9]+)*$` and is 1–64 chars.
2. Create `.opencode/skill/<name>/SKILL.md` and ensure the folder matches the name.
3. Add YAML frontmatter with `name` and `description` (optional: `license`, `compatibility`, `metadata`).
4. Write the body with clear sections (Purpose/What I do, When to use, Workflow, Completion criteria).
5. Confirm discovery: run OpenCode in the repo and check `skill` tool list.
6. If permissions block it, update `opencode.json` with `permission.skill` rules.
## Placement rules (from opencode.ai docs)
- Project: `.opencode/skill/<name>/SKILL.md`
- Project (Claude compatible): `.claude/skills/<name>/SKILL.md`
- Global: `~/.config/opencode/skill/<name>/SKILL.md`
- Global (Claude compatible): `~/.claude/skills/<name>/SKILL.md`
## Validation checklist
- `SKILL.md` is all caps and contains YAML frontmatter
- `name` matches folder name
- `description` is 1–1024 characters
- No duplicate skill names in the repo
## Example
```
---
name: git-release
description: Create consistent releases and changelogs
compatibility: opencode
---
## What I do
- Draft release notes from merged PRs
- Propose a version bump
- Provide a `gh release create` command
```
## Completion criteria
- Skill appears in `skill` tool list
- `skill({ name })` loads without errors
- Instructions are clear enough to execute without extra context Author text anchors workflow facts; Fluxly only indexes current sections, terms, files, and commands.
sections -> What I do → When to use → Workflow → Placement rules (from opencode.ai docs) → Validation checklist → Example
terms -> 1. Pick a skill name that matches ^[a-z0-9]+(-[a-z0-9]+)$ and is 1–64 chars.
files/cmd -> ^[a-z0-9]+(-[a-z0-9]+)$ · .opencode/skill/<name>/SKILL.md · name · description · license · compatibility · metadata · opencode.json
body sha256 -> 0dc9df6ffb26
Decide Fit First
Design Intent
How To Use It
Boundaries And Review