Openclaw Skill Creator
Skill by iml885203
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/iml885203/openclaw-skill-creatorname: openclaw-skill-creator description: Create, improve, or evaluate OpenClaw skills (SKILL.md). Use when: (1) designing a new skill from scratch, (2) improving an existing skill's description for better triggering accuracy, (3) evaluating whether a skill description would trigger correctly, (4) reviewing the skill library for quality issues. NOT for: creating Claude Code / Codex skills (those use a different format), editing skill scripts/assets unrelated to skill design.
OpenClaw Skill Creator
A skill for creating and iteratively improving OpenClaw skills — inspired by Anthropic's skill-creator, adapted for the OpenClaw skill format.
OpenClaw Skill Architecture
Skills are directories containing a SKILL.md file and optional resources.
Custom skills (user-created) are typically placed in the OpenClaw workspace:
<workspace>/skills/<skill-name>/
Built-in skills ship with the OpenClaw installation.
Custom skills in the workspace take precedence over built-ins of the same name.
Minimal structure
<skill-name>/
├── SKILL.md ← required
└── scripts/ ← optional, executable helpers
No packaging step needed. The directory is the skill.
SKILL.md format
---
name: skill-name
description: <trigger description — the most important field>
---
# Skill Name
Instructions for the agent...
Only name and description in frontmatter. No other fields.
Use {baseDir} in scripts/instructions to reference the skill's own directory:
python3 {baseDir}/scripts/my_script.py
Writing Descriptions (Most Critical Part)
The description field is the only triggering mechanism. The body is never read unless the skill triggers first.
Core principles
- Be pushy: Agents tend to undertrigger skills. Make the description slightly aggressive — list specific contexts where this skill MUST be used.
- Use when + NOT for: Explicit structure reduces both under-triggering and false positives.
- Include trigger phrases: List common user phrasings. Include non-English phrases if the user communicates in other languages.
- Describe context, not just function: "What the skill does AND when to use it."
Template
<what the skill does>. Use when: (1) <context 1>, (2) <context 2>, (3) phrases like "<example phrase>". NOT for: <anti-patterns>.
Example (before → after)
❌ Before: "Track work time per project with start/stop timers."
✅ After: "Track work time and generate productivity reports. Use this skill whenever the user wants to start/stop a timer, log time to a project, or generate a time report — including phrases like 'start timer', 'log my time', 'how long did I work this week'. NOT for: calendar scheduling, task management."
Skill Creation Process
1. Capture Intent
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-iml885203-openclaw-skill-creator": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
gemini-web-image
Generate images via Gemini Web API using Google AI Pro subscription. Uses browser cookies for authentication (no API key needed). Use when: (1) user wants to generate, create, draw, illustrate, or visualize anything, (2) product mockups, diagrams, concept art, (3) phrases like '幫我畫', '生成一張圖', 'make an image of', 'draw', 'create an image'. NOT for: editing or modifying existing images, video generation.
felo
AI-synthesized web search via Felo API — aggregates 15-40 sources into structured summaries. Use when: (1) researching a topic that needs multi-source synthesis, (2) scanning community trends (Reddit, GitHub, X, blogs), (3) market news requiring cross-source analysis, (4) phrases like '幫我查', '搜尋一下', 'research', 'what's trending'. NOT for: single-site lookups (use web_fetch), time-critical queries needing exact timestamps (use web_search), or quick 1-second lookups.