a tool to help your Letta AI agents navigate bluesky

Update .env.example with detailed comments and new variables

Changed files
+34 -2
+34 -2
.env.example
··· 1 + # Letta API key 2 + # find this at https://app.letta.com/api-keys 1 3 LETTA_API_KEY= 2 - LETTA_PROJECT_SLUG= 4 + 5 + # Letta project name 6 + # make sure to include the project name, not the ID 7 + LETTA_PROJECT_NAME= 8 + 9 + # Letta agent ID 10 + # you can find this near the agent name in the ADE 3 11 LETTA_AGENT_ID= 12 + 13 + # Bluesky service URL 14 + # I think this is your PDS, default to bsky.social 4 15 BSKY_SERVICE_URL= 16 + 17 + # Bluesky username 18 + # the full handle of the bluesky account, without the "@" 5 19 BSKY_USERNAME= 20 + 21 + # Bluesky app password 22 + # don't use your real password, you can generate an app password 23 + # https://bsky.app/settings/app-passwords 6 24 BSKY_APP_PASSWORD= 7 - DELAY_SECONDS= 25 + 26 + # Bluesky notification types 27 + # list the types of notifications you want to send to the agent. 28 + # STRONGLY recommend only using mention and reply 29 + # options include: like,repost,follow,mention,reply,quote 30 + BSKY_NOTIFICATION_TYPES=like,repost,follow,mention,reply,quote 31 + 32 + 33 + DELAY_NOTIF_SECONDS_MIN=1 34 + DELAY_NOTIF_SECONDS_MAX=600 35 + DELAY_NOTIF_MULTIPLIER_PERCENT=500 36 + REFLECT_STEPS=true 37 + DELAY_REFLECT_MINUTES_MIN=30 38 + DELAY_REFLECT_MINUTES_MAX=720 39 + DELAY_REFLECT_MULTIPLIER_PERCENT=5