Tags: TechNickAI/claude_telemetry
Tags
Release v0.5.0: Add Sentry LLM monitoring support First-class Sentry integration for AI Performance monitoring alongside Logfire. Features: - Automatic configuration via SENTRY_DSN environment variable - gen_ai.* attributes for Sentry's AI Monitoring dashboard - Full error tracking + LLM monitoring integration - Token usage tracking and cost analysis - Tool execution visibility - 91% test coverage See CHANGELOG.md for full details.
Release v0.3.0 - Improved tool logging with scannable titles Major improvements to developer experience with tool logging: - Scannable titles showing key arguments and results - Smart formatting that prevents cut-off JSON - Backend-agnostic OpenTelemetry event data - Comprehensive test coverage (64 new tests) See PR #6 for full details.
Release v0.2.1: Fix CLI entry point Bug fix release: - Fixed CLI entry point to call app() instead of main() - Resolved issue where all commands entered interactive mode - --version, --print, and other flags now work correctly This was a critical bug in v0.2.0 that prevented the CLI from working properly when installed via pip. 🔥 Generated with [Claude Code](https://claude.com/claude-code)
Release v0.2.0: Simplified CLI with pass-through architecture Major improvements: - Simplified CLI argument parsing using Typer's variadic arguments - Reduced parsing code from ~200+ lines to ~50 lines - Fixed all argument parsing bugs - Added proper test mocking following pytest standards - All 89 tests passing Breaking changes: None - fully backward compatible 🔥 Generated with [Claude Code](https://claude.com/claude-code)
🔧 Enable PyPI publishing and improve gitignore coverage Uncomments PyPI API token to enable automated package publishing in CI/CD pipeline. Adds comprehensive virtual environment patterns to gitignore to prevent accidental commits of local dev environments.