PostHog feature flags for Python This skill helps you add PostHog feature flags to Python applications. Reference files - - Python feature flags installation - docs - - Adding feature flag code - docs - - Feature flag best practices - docs Consult the documentation for API details and framework-specific patterns. Key principles - Environment variables : Always use environment variables for PostHog keys. Never hardcode them. - Minimal changes : Add feature flag code alongside existing logic. Don't replace or restructure existing code. - Boolean flags first : Default to boolean flag checks unle…