this repo has no description

Add key coding principle about error handling in tools

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>

+5 -1
+5 -1
CLAUDE.md
··· 104 104 - atproto: Bluesky/AT Protocol integration 105 105 - python-dotenv: Environment management 106 106 - rich: Enhanced terminal output 107 - - pyyaml: YAML processing 107 + - pyyaml: YAML processing 108 + 109 + ## Key Coding Principles 110 + 111 + - All errors in tools must be thrown, not returned as strings.