Knip Code Cleanup Run knip to find and remove unused files, dependencies, and exports from this codebase. Setup 1. Check if knip is available: - Run to test - If it fails or is very slow, check if is in package.json devDependencies - If not installed locally, install with (or pnpm/yarn/bun equivalent based on lockfile present) 2. Knip does NOT remove unused imports/variables inside files — that's a linter's job. Knip finds unused files, dependencies, and exports across the project. Workflow Always follow this configuration-first workflow. Even for simple "run knip" or "clean up codebase" prom…