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.

add official bot self-label to profile

sets the "bot" self-label on every profile update so bluesky
displays the automation badge on phi's profile and posts

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

zzstoatzz c75c913d 19e0cfdb

+9 -2
+9 -2
src/bot/core/profile_manager.py
··· 61 61 } 62 62 ) 63 63 64 - # Create updated profile record 65 - profile_data = {"description": new_bio, "$type": "app.bsky.actor.profile"} 64 + # Create updated profile record with bot label 65 + profile_data = { 66 + "description": new_bio, 67 + "$type": "app.bsky.actor.profile", 68 + "labels": { 69 + "$type": "com.atproto.label.defs#selfLabels", 70 + "values": [{"val": "bot"}], 71 + }, 72 + } 66 73 67 74 # Preserve other fields if they exist 68 75 if current.value.display_name: