Remove claude-progress from codebase and prompts

- Deleted .automaker/claude-progress.txt file
- Removed references from .automaker/coding_prompt.md
- Removed references from reference/prompts/coding_prompt.md
- Removed references from reference/prompts/initializer_prompt.md
- Removed from project structure in reference/README.md
- Updated step numbering in prompts
- Marked feature as verified in feature_list.json
This commit is contained in:
Cody Seibert
2025-12-09 02:11:08 -05:00
parent b02b346377
commit e22061bb93
6 changed files with 24 additions and 348 deletions

View File

@@ -20,13 +20,10 @@ cat app_spec.txt
# 4. Read the feature list to see all work
cat .automaker/feature_list.json | head -50
# 5. Read progress notes from previous sessions
cat claude-progress.txt
# 6. Check recent git history
# 5. Check recent git history
git log --oneline -20
# 7. Count remaining tests
# 6. Count remaining tests
cat .automaker/feature_list.json | grep '"passes": false' | wc -l
```
@@ -201,25 +198,14 @@ git commit -m "Implement [feature name] - verified and cleaned up
git push origin main
```
### STEP 9: UPDATE PROGRESS NOTES
Update `claude-progress.txt` with:
- What you accomplished this session
- Which test(s) you completed
- Any issues discovered or fixed
- What should be worked on next
- Current completion status (e.g., "45/200 tests passing")
### STEP 10: END SESSION CLEANLY
### STEP 9: END SESSION CLEANLY
Before context fills up:
1. Commit all working code
2. Update claude-progress.txt
3. Update .automaker/feature_list.json if tests verified
4. Ensure no uncommitted changes
5. Leave app in working state (no broken features)
2. Update .automaker/feature_list.json if tests verified
3. Ensure no uncommitted changes
4. Leave app in working state (no broken features)
---

View File

@@ -99,9 +99,8 @@ the highest-priority features from .automaker/feature_list.json. Remember:
Before your context fills up:
1. Commit all work with descriptive messages
2. Create `claude-progress.txt` with a summary of what you accomplished
3. Ensure .automaker/feature_list.json is complete and saved
4. Leave the environment in a clean, working state
2. Ensure .automaker/feature_list.json is complete and saved
3. Leave the environment in a clean, working state
The next agent will continue from here with a fresh context window.