# Project: [Project Name]

## Quick Links
- Workflow rules: see [AGENTS.md](./AGENTS.md)
- Style/personality: see [SOUL.md](./SOUL.md)
- Custom commands: see [COMMANDS.md](./COMMANDS.md)
- Learned patterns: see [LEARNED.md](./LEARNED.md)

## Project Overview
[Brief description of what this project does]

## Quick Start
```bash
# Install dependencies
npm install

# Start development
npm run dev

# Run tests
npm test
```

## Architecture
```
src/
├── components/    # UI components
├── lib/          # Utilities
├── pages/        # Routes
└── api/          # Backend
```

## Key Files
- `src/index.ts` - Entry point
- `src/config.ts` - Configuration
- `.env.example` - Required environment variables

## Testing
```bash
npm test                    # All tests
npm test -- --watch        # Watch mode
npm test -- --coverage     # Coverage report
```
