Skillsmith - OpenClaw Skill Scaffolding
LiveForge a new Skill with structure instead of starting from a blank folder
Developer ToolsScaffoldGenerator
Skillsmith - OpenClaw Skill Scaffolding
Published on ClawHub as skillsmith.
The fastest way to forge production-ready OpenClaw Skills.
Quick Start
# Create a new Skill
npx create-openclaw-skill my-skill
# Answer a few questions
? Skill name: my-awesome-skill
? Description: Does something useful
? Category: AI Skills
? Include scripts: Yes
? Include GitHub Actions: Yes
# Done! Your Skill is ready.
cd my-skill
Generated Structure
my-skill/
├── SKILL.md # Main skill definition
├── scripts/ # Executable scripts
│ └── main.js
├── references/ # Documentation
│ └── README.md
├── .github/
│ └── workflows/
│ └── security-scan.yml # Skill Sentinel / ClawShield CI
└── CHANGELOG.md
Generated SKILL.md
Auto-generated with OpenClaw-aligned best practices:
- Proper frontmatter (name, description, gating)
- Security considerations section
- Usage examples
- Testing checklist
Built-in Quality Checks
Every generated Skill includes:
- Skill Sentinel integration - Security scan on every commit
- Lint rules - SKILL.md format validation
- Test template - Basic functionality tests
Best Practices Included
- ✅ Minimal permissions principle
- ✅ Clear documentation
- ✅ Version management
- ✅ Security-first design
- ✅ Community guidelines
信任层·社区画像
Trust Layer
Data handling is explicit
Open and auditable workflow
Runtime boundaries are transparent
Risk Note
Third-party skills may include hidden network calls or unsafe install scripts. Scan before use.