commits
- Collect all bluesky_reply tool calls instead of stopping at first one
- Try each reply candidate until one succeeds or all fail
- Remove fallback to text messages - only use tool calls
- Add detailed logging for debugging which candidate worked/failed
- Improves reliability when Letta API timeouts occur
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
• Created queue_manager.py for browsing and managing notification queue
• Interactive paging through notifications with rich terminal UI
• Toggle deletion flags, view full notifications, batch delete operations
• Moves deleted files to deleted/ folder and updates processed_notifications.json
• Added language support to post tool with optional lang parameter
• Cleaned up blocks.py by removing temporary sync code
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Updated bluesky_reply tool to accept optional lang parameter (defaults to en-US)
- Modified bsky.py to extract language from tool call and pass to reply function
- Updated bsky_utils.py reply functions to accept and use langs parameter
- Posts are now tagged with the specified language code for better filtering
This allows Void to post in different languages by specifying codes like
'es', 'ja', 'th', etc. when using the bluesky_reply tool.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Created new reply.py tool module with bluesky_reply function
- Added 300 character validation to match Bluesky's limit
- Registered the tool in register_tools.py
- This simple tool allows the Letta agent to indicate when it wants to send a reply
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Removed defensive memory tools entirely:
- Deleted tools/defensive_memory.py
- Removed safe_memory_insert and safe_core_memory_replace from register_tools.py
- Removed related imports and argument schemas
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Added void-cafe feed (at://did:plc:gfrmhdmjvxn2sjedzboeudef/app.bsky.feed.generator/void-cafe) to the list of available named feeds in the GetBlueskyFeedTool.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Reduced parent_height parameter from 80 to 40 to limit deep thread nesting
- Added debug print/exit to inspect thread prompt structure
- Improved thread preview logging to show meaningful content fields
- This helps identify the token-inefficient YAML representation issue
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Add message counters and statistics tracking
- Create separate logger for prompts to reduce noise
- Add numbered cycle tracking and section markers
- Add progress indicators for queue processing
- Track messages per minute and session totals
- Improve logging of agent responses
- Set httpx logging to CRITICAL to remove noise
- Add detailed logging for initialization and main loop flow
Require user confirmation (y/n) before exporting agent state files and running git operations when starting the handler.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Remove Literal type that gets converted to FeedName.value in sandbox
- Keep workaround to strip 'FeedName.' prefix if present
- Use plain string type with validation in function body
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Remove feed_uri parameter to prevent agent from using arbitrary URIs
- Add clear error message listing available feed names when invalid name provided
- Update descriptions to explicitly list available feeds for agent guidance
- Simplify function signature and validation logic
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Replace enum class with inline Literal type annotation
- Simplifies code since enum class won't exist in sandboxed tool
- Provides same validation with cleaner implementation
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Move FEED_PRESETS dictionary inside function body
- Tools must be completely self-contained with no external dependencies
- Update Pydantic schema to use hardcoded list instead of dynamic reference
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Fix agent export to save JSON properly instead of binary
- Add agent_archive/ for timestamped backups (git ignored)
- Update agents/void.af to track current state in git
- Add user block attachment/detachment around agent calls
- Extract handles from nested thread data automatically
- Add named feed presets (discover, ai-for-grownups, atmosphere, home)
- Update feed tool to support feed_name parameter with presets
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Export void agent state to timestamped .af files on startup
- Create agents/ directory with void_latest.af symlink
- Automatically stage agent exports in git
- Export includes all agent configuration, memory blocks, and tools
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
- Parse mentions (@handle) and resolve to DIDs
- Parse URLs and create link facets
- Use proper atproto models for facets
- Matches functionality in post creation tool
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Rename post_to_bluesky to create_new_bluesky_post for clarity
- Change parameter from single string to List[str] for thread support
- Add thread creation logic with proper AT Protocol reply structure
- Enhance validation to reject empty lists and oversized posts
- Update tool registration and exports across codebase
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Add debug logging configuration with separate INFO level for main logger
- Create queue/errors directory for non-retryable failures
- Enhance error handling to distinguish between retryable (524) and non-retryable (413) errors
- Add detailed logging throughout process_mention for better debugging
- Log agent details including tools on initialization
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Add specific handling for Cloudflare 524 timeout errors to keep
notifications in the queue for retry instead of removing them.
This prevents losing notifications during temporary service
interruptions.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Document that all errors in tools must be thrown as exceptions
rather than returned as strings. This ensures proper error
propagation and handling by the Letta framework.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Update register_tools.py to import functions and schemas directly
from their respective modules instead of the now-removed functions.py.
This aligns with the new modular tool organization.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Tools are now defined directly in their respective module files
(search.py, post.py, feed.py, blocks.py) rather than being
centralized in functions.py. This improves code organization
and maintainability.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Convert SearchBlueskyTool, PostToBlueskyTool, and GetBlueskyFeedTool
from BaseTool classes to standalone functions. This simplifies the
tool architecture and aligns with the updated tool registration system.
Also update error handling to throw exceptions instead of returning
error strings, following the new coding principles.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Remove the UpdateUserBlocksArgs import and export as part of removing
the update_user_blocks functionality.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
The update_user_blocks function and its associated UpdateUserBlocksArgs
class have been removed as requested.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Renamed AttachUserBlockArgs and DetachUserBlockArgs to AttachUserBlocksArgs and DetachUserBlocksArgs in register_tools.py.
- Updated the TOOL_CONFIGS to reflect the new argument class names.
This change improves clarity and maintains uniformity across the codebase.
- Renamed AttachUserBlockArgs and DetachUserBlockArgs to AttachUserBlocksArgs and DetachUserBlocksArgs for uniformity.
- Updated corresponding tool classes to reflect the new naming conventions.
This change enhances clarity and maintains consistency across the codebase.
Eliminates duplicate tool implementations in favor of modular tools/ directory structure for better maintainability.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Add .gitignore for env files, cache, and session files
- Fix void capitalization in README for consistency
- Add 300 character limit validation to posting tool
- Create attach_user_block.py utility for memory management
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Collect all bluesky_reply tool calls instead of stopping at first one
- Try each reply candidate until one succeeds or all fail
- Remove fallback to text messages - only use tool calls
- Add detailed logging for debugging which candidate worked/failed
- Improves reliability when Letta API timeouts occur
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
• Created queue_manager.py for browsing and managing notification queue
• Interactive paging through notifications with rich terminal UI
• Toggle deletion flags, view full notifications, batch delete operations
• Moves deleted files to deleted/ folder and updates processed_notifications.json
• Added language support to post tool with optional lang parameter
• Cleaned up blocks.py by removing temporary sync code
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Updated bluesky_reply tool to accept optional lang parameter (defaults to en-US)
- Modified bsky.py to extract language from tool call and pass to reply function
- Updated bsky_utils.py reply functions to accept and use langs parameter
- Posts are now tagged with the specified language code for better filtering
This allows Void to post in different languages by specifying codes like
'es', 'ja', 'th', etc. when using the bluesky_reply tool.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Created new reply.py tool module with bluesky_reply function
- Added 300 character validation to match Bluesky's limit
- Registered the tool in register_tools.py
- This simple tool allows the Letta agent to indicate when it wants to send a reply
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Removed defensive memory tools entirely:
- Deleted tools/defensive_memory.py
- Removed safe_memory_insert and safe_core_memory_replace from register_tools.py
- Removed related imports and argument schemas
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Reduced parent_height parameter from 80 to 40 to limit deep thread nesting
- Added debug print/exit to inspect thread prompt structure
- Improved thread preview logging to show meaningful content fields
- This helps identify the token-inefficient YAML representation issue
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Add message counters and statistics tracking
- Create separate logger for prompts to reduce noise
- Add numbered cycle tracking and section markers
- Add progress indicators for queue processing
- Track messages per minute and session totals
- Improve logging of agent responses
- Set httpx logging to CRITICAL to remove noise
- Add detailed logging for initialization and main loop flow
- Remove feed_uri parameter to prevent agent from using arbitrary URIs
- Add clear error message listing available feed names when invalid name provided
- Update descriptions to explicitly list available feeds for agent guidance
- Simplify function signature and validation logic
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Fix agent export to save JSON properly instead of binary
- Add agent_archive/ for timestamped backups (git ignored)
- Update agents/void.af to track current state in git
- Add user block attachment/detachment around agent calls
- Extract handles from nested thread data automatically
- Add named feed presets (discover, ai-for-grownups, atmosphere, home)
- Update feed tool to support feed_name parameter with presets
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Rename post_to_bluesky to create_new_bluesky_post for clarity
- Change parameter from single string to List[str] for thread support
- Add thread creation logic with proper AT Protocol reply structure
- Enhance validation to reject empty lists and oversized posts
- Update tool registration and exports across codebase
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Add debug logging configuration with separate INFO level for main logger
- Create queue/errors directory for non-retryable failures
- Enhance error handling to distinguish between retryable (524) and non-retryable (413) errors
- Add detailed logging throughout process_mention for better debugging
- Log agent details including tools on initialization
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Tools are now defined directly in their respective module files
(search.py, post.py, feed.py, blocks.py) rather than being
centralized in functions.py. This improves code organization
and maintainability.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Convert SearchBlueskyTool, PostToBlueskyTool, and GetBlueskyFeedTool
from BaseTool classes to standalone functions. This simplifies the
tool architecture and aligns with the updated tool registration system.
Also update error handling to throw exceptions instead of returning
error strings, following the new coding principles.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Add .gitignore for env files, cache, and session files
- Fix void capitalization in README for consistency
- Add 300 character limit validation to posting tool
- Create attach_user_block.py utility for memory management
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>