Help us improve
Share bugs, ideas, or general feedback.
From claudeclaw
Creates new skills for Claude Code. Guides users through defining skill behavior, scope (project or global), and generating SKILL.md files with proper frontmatter and trigger phrases.
npx claudepluginhub moazbuilds/claudeclaw --plugin claudeclawHow this skill is triggered — by the user, by Claude, or both
Slash command
/claudeclaw:create-skillThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create new skills for Claude Code. Use `$ARGUMENTS` to determine what the user wants.
Guides creating Claude Code skills: clarify purpose, set file structure, configure frontmatter like disable-model-invocation, user-invocable, hooks. Triggers on 'create skill' requests.
Guides development of Claude Code SKILL.md files with best practices, structure, YAML frontmatter rules, categories, patterns, references, and testing.
Guides creation of Claude Code skills and slash commands: SKILL.md structure, frontmatter fields, invocation controls, commands vs skills, and best practices.
Share bugs, ideas, or general feedback.
Create new skills for Claude Code. Use $ARGUMENTS to determine what the user wants.
A skill is a SKILL.md file inside a skills/<skill-name>/ directory. It uses YAML frontmatter:
---
name: my-skill
description: Short description of when to trigger this skill. Include trigger phrases so Claude knows when to activate it.
---
# Skill Title
Instructions for what Claude should do when this skill is triggered.
my-skill)Skills can be created at two levels:
<project-root>/skills/<skill-name>/SKILL.md~/.claude/skills/<skill-name>/SKILL.md~/.claude/Ask the user conversationally what the skill should do, what scope (project or global), and what name they want. Suggest ideas based on context.
Based on their answers, generate the SKILL.md content:
name in kebab-casedescription with plenty of trigger phrases so Claude knows when to activate itCreate the skill:
skills/<skill-name>/SKILL.md relative to project root~/.claude/skills/<skill-name>/SKILL.mdConfirm creation and show the user:
/<plugin-name>:<skill-name> or just by asking naturally (Claude auto-triggers based on description)