# Vibes Tools

Quick tools to keep you in the flow.

## Available Tools

### vibe
The main CLI for common tasks:
```bash
vibe create user-auth    # Create a feature
vibe add mobile         # Add an app
vibe dev               # Start development
vibe check             # Run vibe check
vibe help              # Show all commands
```

### create-feature.sh
Creates a new feature with the full structure:
```bash
./create-feature.sh my-feature
```

### setup.sh
Initial setup for new developers:
```bash
./setup.sh
```

## Adding New Tools

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

## Tool Guidelines

- Start with a shebang: `#!/bin/bash`
- Use colors for better UX
- Provide helpful error messages
- Show next steps after completion
- Keep them fast and focused

## Colors

Use these for consistency:
```bash
GREEN='\033[0;32m'   # Success
BLUE='\033[0;34m'    # Info
YELLOW='\033[1;33m'  # Warning
PURPLE='\033[0;35m'  # Branding
NC='\033[0m'         # Reset
```

Remember: Tools should enhance the vibe, not complicate it!