From 7215dd6da0d919d1aec1738753edf0ed955fa2d6 Mon Sep 17 00:00:00 2001 From: Cameron Pfiffer Date: Wed, 2 Jul 2025 14:19:22 -0700 Subject: [PATCH] Uncomment feed tool in register_tools.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The get_bluesky_feed tool was commented out and not being attached to agents. Uncommented it so it can be registered with agents. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- register_tools.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/register_tools.py b/register_tools.py index 849a508..7f218a3 100755 --- a/register_tools.py +++ b/register_tools.py @@ -36,12 +36,12 @@ TOOL_CONFIGS = [ "description": "Create a new Bluesky post or thread", "tags": ["bluesky", "post", "create", "thread"] }, - # { - # "func": get_bluesky_feed, - # "args_schema": FeedArgs, - # "description": "Retrieve a Bluesky feed (home timeline or custom feed)", - # "tags": ["bluesky", "feed", "timeline"] - # }, + { + "func": get_bluesky_feed, + "args_schema": FeedArgs, + "description": "Retrieve a Bluesky feed (home timeline or custom feed)", + "tags": ["bluesky", "feed", "timeline"] + }, { "func": attach_user_blocks, "args_schema": AttachUserBlocksArgs, -- 2.51.2