@sprouted/create-vibes
Version:
Create a new Vibes monorepo
55 lines (43 loc) • 1.12 kB
Markdown
Quick tools to keep you in the flow.
The main CLI for common tasks:
```bash
vibe create user-auth
vibe add mobile
vibe dev
vibe check
vibe help
```
Creates a new feature with the full structure:
```bash
./create-feature.sh my-feature
```
Initial setup for new developers:
```bash
./setup.sh
```
1. Create a script in this directory
2. Make it executable: `chmod +x your-tool.sh`
3. Add it to this README
4. Keep it simple and focused
- Start with a shebang: `
- Use colors for better UX
- Provide helpful error messages
- Show next steps after completion
- Keep them fast and focused
Use these for consistency:
```bash
GREEN='\033[0;32m'
BLUE='\033[0;34m'
YELLOW='\033[1;33m'
PURPLE='\033[0;35m'
NC='\033[0m'
```
Remember: Tools should enhance the vibe, not complicate it!