Record wallpaper project architecture findings + periodic-commit preference

This commit is contained in:
kenpat 2026-06-12 00:53:52 -05:00
parent 30cb020a91
commit f56f93c19c
3 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,23 @@
---
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.