personal memory agent
0
fork

Configure Feed

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

ensure_sol_directory: pre-create briefing.md

The cortex agent sandbox can overwrite existing files but not create
new ones in sol/. Pre-creating an empty briefing.md during sol
directory initialization lets the morning_briefing agent write to it.

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

+5
+5
think/awareness.py
··· 137 137 agency_path.write_text(_AGENCY_MD, encoding="utf-8") 138 138 logger.info("Created %s", agency_path) 139 139 140 + briefing_path = sol_dir / "briefing.md" 141 + if not briefing_path.exists(): 142 + briefing_path.write_text("", encoding="utf-8") 143 + logger.info("Created %s", briefing_path) 144 + 140 145 return sol_dir 141 146 142 147