This file contains specific instructions and guidelines for Claude when working on this codebase.
Before completing any task, ensure the following steps are completed:
- Clean up any unused imports in modified files
- This keeps the codebase clean and reduces bundle size
Format all code to maintain consistent style:
bunx prettier --write .Verify that the code builds successfully:
bun run build:client
bun run build:serverBoth build commands must complete without errors before the task is considered complete.
A task is only complete when:
- All requested changes have been implemented
- Unused imports have been removed
- Code has been formatted with Prettier
- Both client and server builds pass successfully
- Changes have been committed (if applicable)