You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 23, 2025. It is now read-only.
docs!: deprecate plugin - skills now native in OpenCode v1.0.190+
BREAKING CHANGE: This plugin is deprecated. Skills functionality is now built into OpenCode natively.
- Add graduation banner and migration guide
- Document directory change (.opencode/skills/ → skill/)
- Document config migration (tools → permission.skill)
- Add Thank You section acknowledging community support
- Promote opencode-sessions as the next plugin to try
- Move original README to collapsed Historical Documentation section
Native implementation PRs:
- anomalyco/opencode#5930 (v1.0.190)
- anomalyco/opencode#6000 (v1.0.191)
[](https://github.com/sst/opencode/pull/5930)
Bring Anthropic's Agent Skills Specification (v1.0) to OpenCode. This plugin automatically discovers and registers skills as dynamic tools, enabling the Agent to leverage specialized knowledge, workflows, and bundled resources.
20
+
---
21
+
22
+
## Migration
23
+
24
+
### 1. Remove the Plugin
25
+
26
+
```diff
27
+
// opencode.json
28
+
{
29
+
- "plugin": ["opencode-skills"]
30
+
}
31
+
```
32
+
33
+
### 2. Move Your Skills Directory
34
+
35
+
```bash
36
+
# Native uses skill/ (singular) at project root instead of .opencode/skills/
37
+
mv .opencode/skills skill
38
+
39
+
# For global skills
40
+
mv ~/.opencode/skills ~/.config/opencode/skill
41
+
```
42
+
43
+
### 3. Update Your Config (Optional)
44
+
45
+
Native skills use pattern-based permissions instead of tool-level config:
Your existing `SKILL.md` files work unchanged - just move them to the new location!
73
+
74
+
---
75
+
76
+
## Thank You! 💜
77
+
78
+
To everyone who starred, used, and provided feedback on this plugin - **your support made native implementation possible**.
79
+
80
+
This plugin was the first stepping stone, proving that the OpenCode community wanted skills support. Your adoption and feedback directly influenced the native implementation.
81
+
82
+
Special thanks to the OpenCode maintainers ([@thdxr](https://github.com/thdxr)) for the collaboration on PRs [#5930](https://github.com/sst/opencode/pull/5930) and [#6000](https://github.com/sst/opencode/pull/6000).
83
+
84
+
---
85
+
86
+
## What's Next?
87
+
88
+
I'm working on something new. **Stay tuned.** ✨
89
+
90
+
In the meantime, check out my other OpenCode plugin:
0 commit comments