一键导入
skill-creator
Meta-skill for creating complex skill packages with scripts, data, and multi-file structures
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Meta-skill for creating complex skill packages with scripts, data, and multi-file structures
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Provides beautiful design system templates for web design, including complete design specifications, component styles, and implementation guides
Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Claude needs to fill in a PDF form or programmatically process, generate, or analyze PDF documents at scale.
| name | skill-creator |
| description | Meta-skill for creating complex skill packages with scripts, data, and multi-file structures |
This skill teaches you how to create Skill Packages—complete directory structures containing guides, scripts, and data.
Rule: Scripts should accept output path parameters, letting callers specify output locations. Skill directories only store code.
For detailed guidelines:
skills_read(path="skills/skill-creator/docs/script-guidelines.md")
A skill package is not just a Markdown file, but a complete directory structure:
skill-name/
├── SKILL.md # Entry guide (required)
├── scripts/ # Executable scripts
│ ├── main.py
│ └── pyproject.toml (dependency config)
├── data/ # Templates and data files
└── docs/ # Detailed documentation (optional)
Based on your needs, read the corresponding detailed documentation:
First time creating a skill package, learn the complete process (5-step creation method).
skills_read(path="skills/skill-creator/docs/quick-start.md")
Learn the structure and template for SKILL.md.
skills_read(path="skills/skill-creator/docs/skillmd-template.md")
Learn Python/Bash script writing standards and dependency management.
skills_read(path="skills/skill-creator/docs/script-guidelines.md")
How to properly clean up old versions after creating replacement scripts.
skills_read(path="skills/skill-creator/docs/iteration-and-cleanup.md")
Reference a complete skill creation process (code reviewer skill).
skills_read(path="skills/skill-creator/docs/full-example.md")
| Tool | Purpose | Example |
|---|---|---|
skills_ls(path="skills") | List all skills | View available skills |
skills_ls(path="skills/<name>") | List files in skill | Check file structure |
skills_read(path="skills/<name>/SKILL.md") | Read skill documentation | Learn skill usage |
skills_create(name, description, instructions) | Create skill skeleton | Create new skill |
skills_write(path, content) | Add/overwrite file | Add script |
skills_run(name, command) | Execute skill command | Test script |
skills_bash(command, cwd) | Execute shell command | Delete/rename file |
Creating the simplest skill requires only 2 steps:
# 1. Create skill skeleton
skills_create(
name="hello-world",
description="Example skill",
instructions="# Hello World\n\nRun `skills_run(name=\"hello-world\", command=\"python scripts/hello.py\")`"
)
# 2. Add script
skills_write(
path="skills/hello-world/scripts/hello.py",
content='print("Hello, World!")'
)
# 3. Test
skills_run(name="hello-world", command="python scripts/hello.py")
Need more detailed guidance? Read Quick Start Guide.