61 lines
1014 B
Markdown
Executable File
61 lines
1014 B
Markdown
Executable File
# Memory Template
|
|
|
|
Copy this structure to `~/self-improving/memory.md` on first use.
|
|
|
|
```markdown
|
|
# Self-Improving Memory
|
|
|
|
## Confirmed Preferences
|
|
<!-- Patterns confirmed by user, never decay -->
|
|
|
|
## Active Patterns
|
|
<!-- Patterns observed 3+ times, subject to decay -->
|
|
|
|
## Recent (last 7 days)
|
|
<!-- New corrections pending confirmation -->
|
|
```
|
|
|
|
## Initial Directory Structure
|
|
|
|
Create on first activation:
|
|
|
|
```bash
|
|
mkdir -p ~/self-improving/{projects,domains,archive}
|
|
touch ~/self-improving/{memory.md,index.md,corrections.md}
|
|
```
|
|
|
|
## Index Template
|
|
|
|
For `~/self-improving/index.md`:
|
|
|
|
```markdown
|
|
# Memory Index
|
|
|
|
## HOT
|
|
- memory.md: 0 lines
|
|
|
|
## WARM
|
|
- (no namespaces yet)
|
|
|
|
## COLD
|
|
- (no archives yet)
|
|
|
|
Last compaction: never
|
|
```
|
|
|
|
## Corrections Log Template
|
|
|
|
For `~/self-improving/corrections.md`:
|
|
|
|
```markdown
|
|
# Corrections Log
|
|
|
|
<!-- Format:
|
|
## YYYY-MM-DD
|
|
- [HH:MM] Changed X → Y
|
|
Type: format|technical|communication|project
|
|
Context: where correction happened
|
|
Confirmed: pending (N/3) | yes | no
|
|
-->
|
|
```
|