a digital entity named phi that roams bsky phi.zzstoatzz.io
2
fork

Configure Feed

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

restore full capability list in bio, drop compositions line

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+4 -2
+4 -2
src/bot/core/profile_manager.py
··· 9 9 logger = logging.getLogger("bot.profile_manager") 10 10 11 11 _SOURCE_LINK = "\n\nsource code: https://tangled.sh/zzstoatzz.io/bot" 12 - _ONLINE_SUFFIX = f"{_SOURCE_LINK}\n\n🟢 memory, thread context, atproto, publications, post search, trending" 12 + _ONLINE_SUFFIX = f"{_SOURCE_LINK}\n\n🟢 user memory, world memory, thread context, atproto records, publication search, post search, trending" 13 13 _OFFLINE_SUFFIX = f"{_SOURCE_LINK}\n\nšŸ”“ offline" 14 14 _LEGACY_ONLINE = "\n\n🟢 user memory, world memory, thread context, atproto records, publication search, post search, trending" 15 15 _LEGACY_OFFLINE = " • šŸ”“ offline" ··· 167 167 # Strip any existing suffix to get clean base bio 168 168 clean = self.base_bio 169 169 # cut everything from the first status marker onward 170 - clean = re.split(r"\s*•?\s*(?:🟢|šŸ”“|source code:)", clean)[0].rstrip() 170 + clean = re.split(r"\s*•?\s*(?:🟢|šŸ”“|source code:|compositions:)", clean)[ 171 + 0 172 + ].rstrip() 171 173 172 174 # Store cleaned base for next time 173 175 self.base_bio = clean