> knip
Find and remove unused files, dependencies, and exports in JavaScript/TypeScript projects with Knip. Use when someone asks to "find unused code", "clean up dependencies", "remove dead code", "find unused exports", "Knip", "reduce bundle size by removing unused files", or "audit npm dependencies". Covers unused files, dependencies, exports, types, and CI integration.
curl "https://skillshub.wtf/TerminalSkills/skills/knip?format=md"Knip
Overview
Knip finds unused files, dependencies, and exports in your TypeScript/JavaScript project. It understands your project structure — framework entry points, config files, scripts — and reports what's truly unused. Unlike ESLint's no-unused-vars (which only checks within files), Knip works across the entire project: unused exports, orphan files, unlisted dependencies, and packages in package.json that no code actually imports.
When to Use
- Cleaning up a codebase that's accumulated dead code over time
- Auditing npm dependencies (unused, unlisted, or duplicate)
- Reducing bundle size by removing unused exports
- Pre-refactoring analysis to identify what can be safely deleted
- CI gate to prevent new unused code from being merged
Instructions
Setup
npx knip # Zero config — works out of the box
# Or install
npm install -D knip
What Knip Detects
# Run a full analysis
npx knip
# Output:
# Unused files (2)
# src/utils/legacy-helper.ts
# src/components/OldBanner.tsx
#
# Unused dependencies (3)
# lodash
# moment
# chalk
#
# Unused exports (5)
# src/lib/api.ts: formatDate, parseResponse
# src/types/index.ts: LegacyUser, OldConfig
# src/utils/math.ts: calculateTax
#
# Unlisted dependencies (1)
# dotenv (used in src/config.ts but not in package.json)
Configuration
// knip.json — Customize detection
{
"entry": ["src/index.ts", "src/server.ts"],
"project": ["src/**/*.{ts,tsx}"],
"ignore": ["**/*.test.ts", "**/*.spec.ts"],
"ignoreDependencies": ["@types/node"],
"ignoreBinaries": ["docker"],
// Framework plugins (auto-detected)
"next": { "entry": ["pages/**/*.tsx", "app/**/*.tsx"] },
"vitest": { "entry": ["**/*.test.ts"] }
}
CI Integration
# .github/workflows/knip.yml — Fail CI on unused code
name: Unused Code Check
on: [pull_request]
jobs:
knip:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm ci
- run: npx knip
Fix Mode
# Auto-remove unused exports (adds underscore prefix)
npx knip --fix
# Remove unused files
npx knip --fix --allow-remove-files
# Dry run — see what would change
npx knip --fix --dry-run
Examples
Example 1: Audit a legacy project
User prompt: "This project has 200+ files and we're not sure what's still used. Find all dead code."
The agent will run Knip to identify unused files, exports, and dependencies, then categorize results by confidence level and provide a cleanup plan.
Example 2: Add to CI pipeline
User prompt: "Prevent new dead code from being merged. Add a CI check."
The agent will configure Knip with the project's entry points, add a GitHub Actions workflow, and set up framework plugins for accurate detection.
Guidelines
- Zero config works — Knip auto-detects frameworks (Next.js, Remix, Vite, etc.)
- Framework plugins are key — they tell Knip about framework-specific entry points
- Start with
npx knip— see what it finds before configuring --fixis cautious — it prefixes unused exports with_, doesn't delete--allow-remove-filesfor cleanup — actually removes orphan files- Ignore test files in
ignore— tests reference things that aren't "used" by app code ignoreDependenciesfor false positives — runtime-only deps that Knip can't trace- Run before major refactors — know what's dead before restructuring
- CI enforcement prevents regression — new dead code fails the build
> related_skills --same-repo
> zustand
You are an expert in Zustand, the small, fast, and scalable state management library for React. You help developers manage global state without boilerplate using Zustand's hook-based stores, selectors for performance, middleware (persist, devtools, immer), computed values, and async actions — replacing Redux complexity with a simple, un-opinionated API in under 1KB.
> zoho
Integrate and automate Zoho products. Use when a user asks to work with Zoho CRM, Zoho Books, Zoho Desk, Zoho Projects, Zoho Mail, or Zoho Creator, build custom integrations via Zoho APIs, automate workflows with Deluge scripting, sync data between Zoho apps and external systems, manage leads and deals, automate invoicing, build custom Zoho Creator apps, set up webhooks, or manage Zoho organization settings. Covers Zoho CRM, Books, Desk, Projects, Creator, and cross-product integrations.
> zod
You are an expert in Zod, the TypeScript-first schema declaration and validation library. You help developers define schemas that validate data at runtime AND infer TypeScript types at compile time — eliminating the need to write types and validators separately. Used for API input validation, form validation, environment variables, config files, and any data boundary.
> zipkin
Deploy and configure Zipkin for distributed tracing and request flow visualization. Use when a user needs to set up trace collection, instrument Java/Spring or other services with Zipkin, analyze service dependencies, or configure storage backends for trace data.