Commands Bjoernbethge MCP Code Executio

Create a new reusable skill pattern for future tasks.

majiayu000 335330a 2 files · 1.3 KB Updated 567 repo stars

File contents

/create-skill

Create a new reusable skill pattern for future tasks.

This command will:

  • Prompt for skill name and description
  • Collect the implementation code
  • Create Python and/or TypeScript versions
  • Add to skills registry
  • Generate documentation

Usage:

/create-skill [skill-name] [--python] [--typescript]

Examples:

  • /create-skill extract-emails - Create Python + TypeScript versions
  • /create-skill parse-json --python - Python-only skill
  • /create-skill transform-csv --typescript - TypeScript-only skill

Skill Template:

def my_skill(input_data):
    """
    Skill description.

    Args:
        input_data: Description

    Returns:
        Processed result
    """
    # Implementation
    return result

See Also:

  • /list-skills - Browse existing skills

majiayu000/claude-skill-registry-data/tree/main/development/commands-bjoernbethge-mcp-code-executio commit 335330a099

Frequently asked questions

npx skillmds add majiayu000/commands-bjoernbethge-mcp-code-executio