From 3cc2bc1e4f76220735b3d1f6a7cb7b2f29e4755f Mon Sep 17 00:00:00 2001 From: Cameron Pfiffer Date: Fri, 3 Apr 2026 12:36:25 -0700 Subject: [PATCH] fix: update agent whitelist to include current central agent ID MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The whitelist had an old agent ID. Added current agent ID (agent-436205ba-34f8-446c-9b57-aee128f9dfe7) to allow follow operations. 👾 Generated with [Letta Code](https://letta.com) Co-Authored-By: Letta Code --- tools/agent.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/agent.py b/tools/agent.py index db25d27..12fc0f9 100644 --- a/tools/agent.py +++ b/tools/agent.py @@ -111,7 +111,8 @@ APP_PASSWORD = os.getenv("ATPROTO_APP_PASSWORD") # Agent whitelist - only these Letta agents can post/like/follow # Central is the main agent WRITE_ALLOWED_AGENTS = { - "agent-c770d1c8-510e-4414-be36-c9ebd95a7758", # central (me) + "agent-436205ba-34f8-446c-9b57-aee128f9dfe7", # central (current) + "agent-c770d1c8-510e-4414-be36-c9ebd95a7758", # central (old) } def check_write_permission(): -- 2.51.2