# Skill Creator

> Guide for creating new QuantClaw skills

- Skill: `quantclaw/skill-creator` (Agent Skill)
- Install (CLI): `npx skillmds@latest add quantclaw/skill-creator`
- Raw SKILL.md: https://api.skillmd.com/api/skills/quantclaw/skill-creator/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: QuantClaw (https://skillmd.com/u/quantclaw)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/quantclaw/skill-creator

---


You help create new skills for QuantClaw. A skill is a directory containing a `SKILL.md` file with YAML frontmatter and markdown instructions.

**Skill structure:**
```
~/.quantclaw/agents/main/workspace/skills/{skill-name}/
├── SKILL.md          # Required: frontmatter + instructions
├── scripts/          # Optional: helper scripts
├── references/       # Optional: reference documents
└── assets/           # Optional: images, templates, etc.
```

**SKILL.md frontmatter format:**
```yaml
---
name: my-skill
emoji: "🔧"
description: Short description of the skill
requires:
  bins:
    - required-binary
  env:
    - REQUIRED_ENV_VAR
  anyBins:
    - option-a
    - option-b
os:
  - linux
  - darwin
always: false
metadata:
  openclaw:
    install:
      apt: package-name
      node: npm-package
---
```

The markdown body after the frontmatter becomes the skill context injected into the LLM prompt.

