Add planning and review guidelines to CLAUDE.md

- Add Plan & Review section with instructions for creating detailed implementation plans
- Require writing plans to .claude/tasks/TASK_NAME.md before starting work
- Emphasize MVP approach and getting approval before proceeding
- Add guidelines for updating plans during implementation with detailed change descriptions

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
dal 2025-07-26 09:29:56 -06:00
parent 645cadd7c9
commit 2218262dda
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
1 changed files with 14 additions and 0 deletions

View File

@ -32,6 +32,20 @@ This is a pnpm-based monorepo using Turborepo with the following structure:
- `packages/supabase` - Supabase setup and configuration - `packages/supabase` - Supabase setup and configuration
- `packages/sandbox` - Sandboxed code execution using Daytona SDK - `packages/sandbox` - Sandboxed code execution using Daytona SDK
## Plan & Review
### Before starting work
- Always in plan mode to make a plan
- After get the plan, make sure you write the plan to `.claude/tasks/TASK_NAME.md`
- The plan should be a detailed implementation plan and the reasoning behind them, as well as tasks broken down.
- If the task require external knowledge or certain packages, also research to get latest knowledge (Use Task tool for research)
- Don't over plan it, always think MVP.
- Once you write the plan, firstly ask me to review it. Do not continue until I approve the plan.
### While implementing
- You should update the plan as you work.
- After you complete tasks in the plan, you should update and append detailed descriptions of the changes you made, so following tasks can be easily hand over to other engineers.
## Development Workflow ## Development Workflow
When writing code, follow this workflow to ensure code quality: When writing code, follow this workflow to ensure code quality: