Scaffolding Skill
Generate boilerplate code that matches existing project conventions.
Workflow
1. Detect Project Conventions
Before generating, find existing patterns:
# Find similar files
find . -name "*.tsx" -path "*/components/*" | head -5
# Check file structure
ls -la src/components/
# Look at existing code
cat src/components/Button/Button.tsx
Key conventions to detect:
- File/folder structure (flat vs nested)
- Naming conventions (PascalCase, camelCase,
[Description truncada. Veja o README completo no GitHub.]