::error file=src/main.rs,line=42,title=Unwrap in production code::Using .unwrap() can cause a panic at runtime. Use proper error handling with ? or .expect(). Suggestion: Replace .unwrap() with .context("description")? using anyhow
::warning file=src/main.rs,line=87,title=Missing error context::This error propagation loses context about what operation failed.
::notice file=src/utils.rs,line=15,endLine=20,title=Consider extracting helper::This block of logic is repeated in multiple places and could be extracted into a shared helper function. Suggestion: Create a `validate_input()` function in utils.rs
::notice title=AI-Generated Analysis::Generated by nitpik — AI-powered analysis. Findings are advisory and may contain errors.
