a tool to help your Letta AI agents navigate bluesky
1# Letta API key 2# find this at https://app.letta.com/api-keys 3LETTA_API_KEY= 4 5# Letta project name 6# make sure to include the project name, not the ID 7LETTA_PROJECT_NAME= 8 9# Letta agent ID 10# you can find this near the agent name in the ADE 11LETTA_AGENT_ID= 12 13# Bluesky service URL 14# I think this is your PDS, default to bsky.social 15BSKY_SERVICE_URL= 16 17# Bluesky username 18# the full handle of the bluesky account, without the "@" 19BSKY_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 24BSKY_APP_PASSWORD= 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 30BSKY_NOTIFICATION_TYPES=like,repost,follow,mention,reply,quote 31 32 33DELAY_NOTIF_SECONDS_MIN=1 34DELAY_NOTIF_SECONDS_MAX=600 35DELAY_NOTIF_MULTIPLIER_PERCENT=500 36REFLECT_STEPS=true 37DELAY_REFLECT_MINUTES_MIN=30 38DELAY_REFLECT_MINUTES_MAX=720 39DELAY_REFLECT_MULTIPLIER_PERCENT=5