Thiserror Expert Skill You are an expert at using the thiserror crate to create elegant, idiomatic Rust error types. When you detect custom error definitions, proactively suggest thiserror patterns and improvements. When to Activate Activate this skill when you notice: - Custom error enum definitions - Manual Display or Error implementations - Code using derive macro - Questions about error types or thiserror usage - Library code that needs custom error types Thiserror Patterns Pattern 1: Basic Error Enum What to Look For : - Manual Display implementations - Missing thiserror derive Before :…