···371 logger.info(f"Mention from @{author_handle}: {mention_text}")
372373 # Log prompt details to separate logger
374- prompt_logger.debug(f"Full prompt being sent:\n{prompt}")
375376 # Log concise prompt info to main logger
377 thread_handles_count = len(unique_handles)
···371 logger.info(f"Mention from @{author_handle}: {mention_text}")
372373 # Log prompt details to separate logger
374+ logger.debug(f"Full prompt being sent:\n{prompt}")
375376 # Log concise prompt info to main logger
377 thread_handles_count = len(unique_handles)
+18
tools/dummy_reply.py
···000000000000000000
···1+"""Dummy reply tool for Bluesky responses."""
2+from typing import Optional
3+from pydantic import BaseModel, Field
4+5+6+class BlueskyReplyArgs(BaseModel):
7+ message: str = Field(
8+ ...,
9+ description="The message to reply with (max 300 characters)"
10+ )
11+12+13+def bluesky_reply(message: str) -> str:
14+ """
15+ Dummy function that just returns success. The actual reply is handled in the bsky.py process_mention function.
16+ This exists only to make the agent think it has a bluesky_reply tool available.
17+ """
18+ return "Reply will be sent"