Create New Skill

VerifiedSafe

Create a new OpenCode skill by invoking the skill-creator. Supports full AI-assisted mode with interview or quick scaffolding mode.

Sby Skills Guide Bot
DevelopmentIntermediate
206/2/2026
Claude Code
#skill-creation#opencode#scaffolding#workflow

Recommended for

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.
When to use it

Use this command when you need to quickly scaffold a new OpenCode skill with proper structure.

When not to use it

Do not use it if you want to create a script or tool outside the OpenCode skill framework.

Security analysis

Safe
Quality score75/100

The 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

Full skill creation
/new-skill my-awesome-skill
Quick scaffolding
/new-skill my-awesome-skill --quick

name: 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

  1. Load skill-creator skill:

    skill({ name: "skill-creator" })
    
  2. Determine mode from arguments:

    • If $ARGUMENTS contains --quick: Quick mode (scaffold only)
    • Otherwise: Full mode (search + interview + generate)
  3. Pass skill name to workflow:

    • Extract skill name from $ARGUMENTS (first argument, excluding flags)
    • Follow skill-creator's workflow with this name

Usage Examples

# Full AI-assisted creation
/new-skill my-awesome-skill

# Quick scaffolding only
/new-skill my-awesome-skill --quick
Related skills