Get skills skill
OpenCode only. Use this skill when the user wants to install, add, or get a skill in OpenCode — either globally (~/.config/opencode/skills/) or locally in the current project (.opencode/skills/). Always asks global vs local if not specified. Triggers on: "install the skill X", "add the skill from this repo", "get the skill X globally", "add skill X to this project", "install skill from URL", or any request to install an OpenCode skill.From its SKILL.md
npx -y skills add tomekness/get-skills-skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.9 KB, 299 tokens by cl100k_base, as published. Nobody here has run it
get-skills-skill (interactive)
Install skills based on input, global/local selectable:
- Fetches the requested skill via npx.
- Prompts if the target is missing: "Install globally or locally?"
- Creates missing skills folders and opencode.json.
- Moves the skill into the target.
- Updates the correct opencode.json.
- Returns success or error.
Prompt formats:
- "Install the skill from <repo/url> --skill <sub>"
- "Install the skill from <repo/url> global"
- "Install the skill from <repo/url> local"
No CLI needed – use as an OpenCode skill.
Behavior
- Detects
--skill <name>in the prompt - Detects
global/localand prompts if missing - Updates opencode.json with
"<skill>": "allow" - Returns
success,message, optionalerror, and on successskill,target,config
Output example
Success: { "success": true, "message": "Skill installed and registered", "skill": "pdf", "target": "/home/tk/.config/opencode/skills/pdf", "config": "/home/tk/.config/opencode/opencode.json" }
Error: { "success": false, "message": "Temp skills directory not found after npx install" }
What ships with it: 6 files
11.8 KB alongside SKILL.md, 2 of them executable
- .gitattributes23 B
- install.jsruns2.0 KB
- LICENSE1.0 KB
- package.json350 B
- README.md1.9 KB
- skill.jsruns6.5 KB