23 lines
996 B
Markdown
23 lines
996 B
Markdown
---
|
|
name: feedback-periodic-memory-commits
|
|
description: "Commit and push memory updates periodically during long sessions, not just at the end"
|
|
metadata:
|
|
node_type: memory
|
|
type: feedback
|
|
originSessionId: 3e5f5ed8-17c3-4f03-b761-a349552ec2a8
|
|
---
|
|
|
|
During long working sessions, save memory updates periodically (not only at the
|
|
end of the conversation) and push them to the `claude-memory` Forgejo repo as you go.
|
|
|
|
**Why:** kenpat explicitly asked for this mid-session during the cyberpunk wallpaper
|
|
project (2026-06-12) so that progress/context isn't lost if a session ends abruptly,
|
|
and so other devices can pick up the latest state.
|
|
|
|
**How to apply:** After completing meaningful chunks of multi-step work (e.g. each
|
|
major milestone in a project), write/update relevant memory files locally AND run:
|
|
```bash
|
|
cd ~/.claude/projects/<project>/memory
|
|
git add -A && git commit -m "Update memory" && git push
|
|
```
|
|
See [[project-claude-memory-sync]] for the repo location and pull/push commands.
|