73 lines
2.1 KiB
Bash
Executable File
73 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
# Add project file update reminder to session handoff
|
|
|
|
cd ~/firefrost-work/firefrost-operations-manual
|
|
|
|
# Add reminder section to session-handoff.md
|
|
cat >> docs/session-handoff.md << 'REMINDEREOF'
|
|
|
|
---
|
|
|
|
## **PROJECT FILE UPDATE REMINDERS**
|
|
|
|
**For Claude: Check at END of every session**
|
|
|
|
### When to Remind Michael to Update Project Files
|
|
|
|
**ALWAYS remind if ANY of these occurred during session:**
|
|
- ✅ Architecture pivot (e.g., BookStack → MkDocs)
|
|
- ✅ New system deployed (e.g., automation framework)
|
|
- ✅ Phase added or updated (e.g., Phase 1 DDoS)
|
|
- ✅ Major documentation added (e.g., doc principle)
|
|
- ✅ Process change (e.g., new workflow step)
|
|
|
|
**Files that need updating most often:**
|
|
1. FIREFROST-PROJECT-SCOPE-V2.md (after phases/architecture changes)
|
|
2. session-handoff.md (after status updates)
|
|
3. workflow-guide.md (after process changes)
|
|
|
|
### The Reminder Protocol
|
|
|
|
**At END of session, Claude checks:**
|
|
1. Did we update FIREFROST-PROJECT-SCOPE-V2.md? → Remind to re-upload
|
|
2. Did we update workflow-guide.md? → Remind to re-upload
|
|
3. Did we update session-handoff.md? → Remind to re-upload
|
|
|
|
**Reminder format:**
|
|
```
|
|
🔄 PROJECT FILE UPDATE REMINDER
|
|
|
|
The following project files were updated this session:
|
|
- FIREFROST-PROJECT-SCOPE-V2.md (Phase 1 DDoS added)
|
|
- workflow-guide.md (Doc principle added)
|
|
|
|
Please re-upload these files to keep project context fresh!
|
|
Location: /root/firefrost-work/firefrost-operations-manual/docs/
|
|
```
|
|
|
|
### Michael's Commitment
|
|
|
|
**"Always update project files when reminded."**
|
|
|
|
This prevents documentation drift and ensures every future Claude session has current context.
|
|
|
|
**5 minutes now = hours saved later** ⏱️💎
|
|
|
|
REMINDEREOF
|
|
|
|
# Commit
|
|
git add docs/session-handoff.md
|
|
git commit -m "Add project file update reminder protocol
|
|
|
|
Established:
|
|
- When Claude should remind (pivots, deployments, major changes)
|
|
- Which files need updating most often
|
|
- The reminder format for end-of-session
|
|
- Michael's commitment to always update when reminded
|
|
|
|
Ensures: Project files stay fresh, no documentation drift"
|
|
|
|
git push
|
|
|
|
echo "Project file reminder protocol added to session-handoff.md"
|