a digital person for bluesky

Uncomment feed tool in register_tools.py

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 <noreply@anthropic.com>

Changed files
+6 -6
+6 -6
register_tools.py
··· 36 "description": "Create a new Bluesky post or thread", 37 "tags": ["bluesky", "post", "create", "thread"] 38 }, 39 - # { 40 - # "func": get_bluesky_feed, 41 - # "args_schema": FeedArgs, 42 - # "description": "Retrieve a Bluesky feed (home timeline or custom feed)", 43 - # "tags": ["bluesky", "feed", "timeline"] 44 - # }, 45 { 46 "func": attach_user_blocks, 47 "args_schema": AttachUserBlocksArgs,
··· 36 "description": "Create a new Bluesky post or thread", 37 "tags": ["bluesky", "post", "create", "thread"] 38 }, 39 + { 40 + "func": get_bluesky_feed, 41 + "args_schema": FeedArgs, 42 + "description": "Retrieve a Bluesky feed (home timeline or custom feed)", 43 + "tags": ["bluesky", "feed", "timeline"] 44 + }, 45 { 46 "func": attach_user_blocks, 47 "args_schema": AttachUserBlocksArgs,