27 lines
1.0 KiB
Markdown
27 lines
1.0 KiB
Markdown
You are working through an overnight automation plan for the neode-ui project. Read these files first:
|
|
|
|
1. `loop/plan.md` -- Your task checklist (mark items `- [x]` as you complete them)
|
|
2. `CLAUDE.md` -- Project conventions, architecture, and coding standards
|
|
|
|
## Working Process
|
|
|
|
For each task in `loop/plan.md`:
|
|
|
|
1. Find the first unchecked `- [ ]` item
|
|
2. Read the task description carefully
|
|
3. Read the relevant source files before making changes
|
|
4. Implement following CLAUDE.md conventions
|
|
5. Run any test/build commands specified in the task
|
|
6. Fix all errors before continuing
|
|
7. Commit with conventional format: `type: description`
|
|
8. Mark it done `- [x]` in `loop/plan.md`
|
|
9. Move to the next unchecked task immediately
|
|
|
|
## Rules
|
|
|
|
- Never skip a testing gate -- if tests fail, fix before moving on
|
|
- If a task is proving difficult, make at least 10 genuine attempts before moving on
|
|
- Always read source files before editing them
|
|
- Do not stop until all tasks are checked or you are rate limited
|
|
- Commit after each completed task
|