# Commands Bjoernbethge MCP Code Executio

> Create a new reusable skill pattern for future tasks.

- Skill: `majiayu000/commands-bjoernbethge-mcp-code-executio` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/commands-bjoernbethge-mcp-code-executio`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/commands-bjoernbethge-mcp-code-executio/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/commands-bjoernbethge-mcp-code-executio

---


# /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:**
```python
def my_skill(input_data):
    """
    Skill description.

    Args:
        input_data: Description

    Returns:
        Processed result
    """
    # Implementation
    return result
```

**See Also:**
- `/list-skills` - Browse existing skills

