Our review
Creates a new OpenCode skill by invoking the skill-creator skill.
Strengths
- Automates skill creation with two modes: quick and full.
- Guides the user through an interactive interview for customization.
- Enforces naming conventions (kebab-case) and OpenCode structure.
Limitations
- Requires the skill-creator skill to be available in the environment.
- Limited to the OpenCode ecosystem; not applicable to other tools.
- Created skills must strictly follow the expected format.
Use this command when you need to quickly scaffold a new OpenCode skill with proper structure.
Do not use it if you want to create a script or tool outside the OpenCode skill framework.
Security analysis
SafeThe skill only invokes the skill-creator skill with provided arguments; it does not perform any direct file operations, network calls, or destructive actions.
No concerns found
Examples
/new-skill my-awesome-skill/new-skill my-awesome-skill --quickname: new-skill description: Create a new OpenCode skill (invokes skill-creator) arguments:
- name: skill-name description: Name for the new skill (lowercase-kebab-case) required: true
- name: quick description: Skip interview, just scaffold required: false
New Skill Command
Create a new OpenCode skill using the skill-creator skill.
Instructions
-
Load skill-creator skill:
skill({ name: "skill-creator" }) -
Determine mode from arguments:
- If
$ARGUMENTScontains--quick: Quick mode (scaffold only) - Otherwise: Full mode (search + interview + generate)
- If
-
Pass skill name to workflow:
- Extract skill name from
$ARGUMENTS(first argument, excluding flags) - Follow skill-creator's workflow with this name
- Extract skill name from
Usage Examples
# Full AI-assisted creation
/new-skill my-awesome-skill
# Quick scaffolding only
/new-skill my-awesome-skill --quick
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.