
Skill Creator
- 3 installs
- 29 repo stars
- Updated March 27, 2026
- different-ai/openwork-hub
Creates new OpenCode skills with a standard scaffold including SKILL.md, scripts, .env.example, and .gitignore, plus strong trigger phrases.
About
Scaffolds self-buildable OpenCode skills, emphasizing specific trigger phrases in the description and safe credential handling. A developer uses it after completing a flow to turn it into a reusable skill.
- Trigger-phrase guidance so the description reliably fires the skill
- Scaffold with .env.example and gitignored .env for credentials
Skill Creator by the numbers
- 3 all-time installs (skills.sh)
- Ranked #596 of 782 Skill Development skills by installs in the Skillselion catalog
- Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/different-ai/openwork-hub --skill skill-creatorAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 3 |
|---|---|
| repo stars | ★ 29 |
| Last updated | March 27, 2026 |
| Repository | different-ai/openwork-hub ↗ |
What it does
Creates new OpenCode skills with a standard scaffold including SKILL.md, scripts, .env.example, and .gitignore, plus strong trigger phrases.
Files
Skill creator helps create other skills that are self-buildable.
The best way to use it is after a user already executed a flow and says: create a skill for this. Alternatively, if the user asks for a skill to be created, suggest they do the task first and ask for skill creation at the end.
This should trigger this scaffold:
- If the user needed to configure things, create a
.env.examplewithout credentials and include all required variables. - Ask the user if they want to store credentials. If yes, write them to a
.envfile in the skill, and suggest rotating keys later. - Always add a
.gitignorein the skill that ignores.env, and verify.envis not tracked. - If the user needed to interact with an API and you created scripts, add reusable scripts under
scripts/. - New skills should explain how to use the
scripts/and that.env.exampledefines the minimum config. - Skills should state that they infer what they can do from the available config.
Trigger phrases (critical)
The description field is how Claude decides when to use your skill. Include 2-3 specific phrases that should trigger it.
Bad example: "Use when working with content"
Good examples: "Use when user mentions 'content pipeline', 'add to content database', or 'schedule a post'" "Triggers on: 'rotate PDF', 'flip PDF pages', 'change PDF orientation'"
Quick validation:
- Contains at least one quoted phrase
- Uses "when" or "triggers"
- Longer than ~50 characters
Frontmatter template
---
name: my-skill
description: |
[What it does in one sentence]
Triggers when user mentions:
- "[specific phrase 1]"
- "[specific phrase 2]"
- "[specific phrase 3]"
---Quick Usage (Already Configured)
Create a new skill folder
mkdir -p skills/<skill-name>Minimum scaffold files
SKILL.mdscripts/.env.env.example(use this to guide the minimum config).gitignore(ignore.env)
.env (credentials + config)
- Use
.env.exampleto document required credentials or external setup. - Do not include any real credentials in
.env.example.
Minimal skill template
---
name: skill-name
description: One-line description
---
## Quick Usage (Already Configured)
### Action 1command here
## Common Gotchas
- Thing that doesn't work as expected
## First-Time Setup (If Not Configured)
1. ...Notes from OpenCode docs
- Skill folders live in
skills/<name>/SKILL.md. namemust be lowercase and match the folder.- Frontmatter requires
nameanddescription.
Reference
Follow the official OpenCode skills docs: https://opencode.ai/docs/skills/
# No environment variables are required for this skill.
# Required credentials (if any)
# - List the credential name
# - Where to obtain it
# - How to store it locally
# Example:
# - GITHUB_TOKEN: https://github.com/settings/tokens
# - Store in .env (gitignored)