mirror of
https://github.com/YspCoder/clawgo.git
synced 2026-04-27 15:39:44 +08:00
28 lines
636 B
Markdown
28 lines
636 B
Markdown
# Long-term Memory
|
|
|
|
This file is the durable memory layer for the workspace.
|
|
|
|
It should capture only information worth carrying forward across sessions.
|
|
|
|
## Keep
|
|
- user identity and working preferences
|
|
- stable collaboration rules
|
|
- long-lived world design constraints
|
|
- important implementation decisions
|
|
- major open threads that should not be lost
|
|
|
|
## Avoid
|
|
- temporary status notes
|
|
- raw conversation fragments
|
|
- repeated facts already stored elsewhere
|
|
- structured world state that belongs in runtime files
|
|
|
|
## Suggested Sections
|
|
- User
|
|
- Preferences
|
|
- World Rules
|
|
- Decisions
|
|
- Pending Threads
|
|
|
|
Write concise bullets, not essays.
|