# {{projectName}} — Claude Development Guide

## Project Type
**Frontend Only** — React SPA that connects to an external API.

## Workflow
```bash
npm run validate          # Validate the spec
npm run build             # Validate + realize (generate code)
npm run setup             # Build + install deps
npm run dev               # Start Vite dev server
```

## Key Files
- `specs/main.specly` — The UI specification (edit this)
- `manifests/implementation.yaml` — Technology stack config
- `generated/code/` — Generated output (don't edit)
- `generated/code/.env` — Set `VITE_API_BASE_URL` for your API

## Making Changes
1. Edit `specs/main.specly`
2. Run `npm run validate` to check
3. Run `npm run build` to regenerate
4. Run `npm run dev` to test

## SpecVerse Reference
- [User Guide](https://github.com/SpecVerse/specverse-self/blob/main/docs/guides/SPECVERSE-SPECIFYING.md)
- [Golden Rules](https://github.com/SpecVerse/specverse-self/blob/main/docs/GOLDEN-RULES.md)
