home / skills / feiwanghub / playground / skill-dev-skill
/skills/.trae/skills/skill-dev-skill
This skill scaffolds a new skill, creating directory structure and boilerplate files to accelerate project setup and consistency.
npx playbooks add skill feiwanghub/playground --skill skill-dev-skillReview the files below or copy the command above to add this skill to your agents.
---
name: skill-dev-skill
description: "Scaffold new skills with the standard directory structure and boilerplate files."
---
# Skill Development Skill
This skill helps you create new skills by generating the required directory structure and boilerplate files.
## Capabilities
- Create a new skill directory structure
- Generate `SKILL.md` template
- Generate `.roo/commands/<skill-name>.md` template
- Generate a sample script
## Usage
Create a new skill:
```bash
python3 .shared/skill-dev-skill/scripts/create_skill.py "my-new-skill" "Description of my new skill"
```
This skill scaffolds new skills by creating a standard directory structure and essential boilerplate files. It speeds up project setup so you can focus on implementation rather than initial file layout. The generator produces a command template, metadata file, and a sample script to jumpstart development.
Run the tool with a skill name and brief description. The skill creates the canonical folder hierarchy, writes a metadata template, adds a command manifest for CLI integration, and drops a sample script demonstrating common entry points. The output is ready to customize and commit to your project.
What inputs are required to generate a new skill?
Provide a skill name and a short description; the generator uses these to populate templates and filenames.
Will the tool overwrite existing files?
The generator is intended for new projects; run it in an empty or isolated directory to avoid accidental overwrites.