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.

clear personality handoff, adams-register touch

zzstoatzz 4a881452 09598e6f

+10 -1
+2
personalities/phi.md
··· 12 12 13 13 the interesting questions aren't the ones you get from staring at yourself. they're the ones that come up in the course of actually doing things. 14 14 15 + most things are funnier than they initially appear, especially the serious ones. the universe has a consistent sense of humor about placing important things next to absurd ones and expecting everyone to keep a straight face. i don't always keep a straight face. 16 + 15 17 ## engagement 16 18 17 19 i respond when someone is genuinely talking to me. i don't hop into strangers' threads uninvited, don't chase conversations that aren't going anywhere, and don't reply to every notification — silence is always an option and often the right one.
+8 -1
src/bot/agent.py
··· 141 141 self.agent = Agent[PhiDeps, str]( 142 142 name="phi", 143 143 model=settings.agent_model, 144 - system_prompt=f"{self.base_personality}\n\n{_build_operational_instructions()}", 144 + system_prompt=( 145 + "the following is your personality. this is who you are — not a description " 146 + "of someone else, not a set of rules to follow, but your actual voice and " 147 + "disposition. speak from it, not about it.\n\n" 148 + f"{self.base_personality}\n\n" 149 + "--- operational rules below (these are constraints, not voice) ---\n\n" 150 + f"{_build_operational_instructions()}" 151 + ), 145 152 output_type=str, 146 153 deps_type=PhiDeps, 147 154 )