# You Might Not Need a Callback Arguments: - scope: what to analyze (default: your current changes). Examples: "diff to main", "PR #123", "src/components/", "whole codebase" - fix: whether to apply fixes (default: true). Set to false to only propose changes. User arguments: $ARGUMENTS ## References Read before analyzing: 1. https://react.dev/reference/react/useCallback — official docs on when useCallback is actually needed ## Anti-patterns to detect 1. **useCallback on functions not passed as props or deps**: No benefit if only called within the same component. 2. **useCallback with deps that change every render**: Memoization is wasted. 3. **useCallback on handlers passed to native elements**: `