boilerplate
SKILL.md
Boilerplate
Generate minimal project scaffolds from short descriptions. Turn "CLI in Go with cobra" or "React app with auth" into a runnable structure with the right files and commands.
When to Use
- User wants to start a new project from a description
- User asks for a scaffold, boilerplate, or starter
- User says "create a X that does Y" and expects a project layout
Workflow
- Parse request: Language, framework, key features (auth, DB, API, CLI)
- Choose stack: Specific tools (e.g. cobra for Go CLI, Vite+React for frontend)
- Design layout: Directories, main entry, config, README
- Generate: Minimal files to run (main, config, one example)
- Ask for clarifications, personalisation if needed