A meta-skill that generates other skills. Transform your ideas into production-ready AgentSkills with proper structure, documentation, and packaging.
.zip archiveUser: "帮我创建一个处理PDF的Skill"
→ This skill interviews → Generates → Packages → Delivers zip file
Skill会自动询问关键问题:
根据需求生成:
your-skill/
├── SKILL.md # 主文档 (name, description, instructions)
├── manifest.json # Clawhub元数据
├── scripts/ # 可选: 可执行脚本
│ └── (Python/Node.js/Bash)
├── references/ # 可选: 参考文档、示例
│ └── (schemas, examples, guides)
├── assets/ # 可选: 模板、图标等
│ └── (templates, icons, images)
└── README.md # 安装说明 (可选)
自动打包为 your-skill-v1.0.0.zip,包含:
| 级别 | 特点 | 包含内容 |
|---|---|---|
| ------ | ------ | --------- |
| Simple | 纯文本指导 | SKILL.md only |
| Standard | 带辅助脚本 | SKILL.md + scripts/ |
| Advanced | 完整工具集 | SKILL.md + scripts/ + references/ + assets/ |
This skill automatically ensures:
📦 Generated: pdf-master-v1.0.0.zip
📁 Contents:
├── SKILL.md ✓ Valid YAML frontmatter
├── manifest.json ✓ Clawhub ready
├── scripts/
│ ├── merge.py
│ ├── split.py
│ └── rotate.py
├── references/
│ ├── examples.md
│ └── api-guide.md
└── README.md
🚀 Next Steps:
1. Extract the zip
2. Test locally: openclaw skill install ./pdf-master
3. Upload to Clawhub: https://clawhub.com/upload
Generated skills include:
Craft your skills. Share with the world.
共 1 个版本