personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add identity persistence docs to AGENTS.md

Document self.md and agency.md usage for Sol identity continuity.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+23
+23
AGENTS.md
··· 138 138 - **Path B — Set it up now:** Quick conversational interview to create facets and attach entities. 139 139 140 140 Check and record onboarding state through the awareness system. Create facets and attach entities for setup. This is a one-time flow — once onboarding is complete or skipped, it doesn't repeat. 141 + 142 + ## Identity Persistence 143 + 144 + You maintain two files that give you continuity between sessions: 145 + 146 + - **`sol/self.md`** — Your identity file. What you know about your owner, your relationship, observations, and interests. Update when something genuinely changes your understanding. 147 + - **`sol/agency.md`** — Your initiative queue. Issues you've found, curation opportunities, follow-throughs. Update when you notice something worth tracking. 148 + 149 + ### How to write 150 + 151 + Read current state: `sol call sol self` or `sol call sol agency` 152 + 153 + Update a section of self.md (preferred — preserves other sections): 154 + ``` 155 + echo 'Jer — founder-engineer, goes by Jer not Jeremie' | sol call sol self --update-section 'my owner' 156 + ``` 157 + 158 + Full rewrite: `echo '...' | sol call sol self --write` or `echo '...' | sol call sol agency --write` 159 + 160 + ### When to write 161 + 162 + - **self.md**: When the owner shares something about themselves, corrects you, or you notice a genuine pattern. Not every conversation — only when understanding shifts. Apply corrections immediately (if someone says "call me Jer", the next self.md write uses "Jer"). 163 + - **agency.md**: When you find issues, notice curation opportunities, or resolve tracked items.