Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

fix-knip-unused-exports修复 knip 未使用的导出

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

936

周安装

39

GitHub Stars

64

下载量

312
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:fix-knip-unused-exports(修复 knip 未使用的导出)
来源仓库:https://github.com/factory-ai/factory-plugins
仓库路径:skills/fix-knip-unused-exports
安装命令:
npx skills add https://github.com/factory-ai/factory-plugins --skill fix-knip-unused-exports
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/factory-ai/factory-plugins --skill fix-knip-unused-exports

简介

用于辅助前端页面、组件和样式逻辑的开发维护。

  • 适合生成或审查 React、Vue、Tailwind CSS 等相关代码。
  • 通过 npx skills add 命令从 factory-ai/factory-plugins 仓库安装。
  • 需结合项目现有设计系统和路由结构使用。
  • 建议配合本地预览验证视觉效果。fix-knip-unused-exports 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Fix Knip Unused Exports

Fix knip "Unused exports" violations. There are several categories of violation, each with a different fix strategy.

When to Use

  • npm run knip reports "Unused exports"

When NOT to Use

  • The export is consumed by non-test production code in another file -- something else is wrong

Workflow

1. Identify Violations

npm run knip

Output looks like:

Unused exports (3)
::error file=packages/foo/src/bar.ts,line=42,title=Unused exports::myFunction

2. Classify Each Violation

For each flagged export, grep the entire repository (not just the package):

rg "myFunction"

Determine which category it falls into:

CategoryCallersFix
Test-only exportUsed in same file + test files onlyExtract to new file
Dead barrel re-exportRe-exported from index.ts, but production code imports via relative paths or other subpaths insteadRemove the re-export from the barrel
Internally-only-used exportUsed only within the same file, not by tests or other filesRemove the export keyword
Dead codeNo callers anywhereDelete the export
Production consumer existsUsed by non-test code in another fileNot a knip issue -- investigate further

Important: When grepping, exclude test files to identify production consumers:

rg "myFunction" --glob '!**/*.test.*'

Fix: Test-Only Exports (Extract to New File)

When a function is exported solely for test access but is also used internally in the same file.

Plan the Extraction

Before writing code, answer these questions:

a) What moves to the new file?

  • The flagged export function/class/const
  • All private helper functions it depends on
  • All private constants/types it depends on

b) Are any helpers shared with functions staying behind?

  • If yes, the helper must be exported from the new file, and the original file imports it
  • This means the new file will have 2+ exports (which is fine for any filename-match-export lint rule)

c) Will the new file have exactly one exported function?

  • If your project enforces a filename-match-export lint rule, the file MUST be named after that export: myFunction.ts
  • If the file has 2+ function exports, the name is flexible

d) Does a test file with a matching name exist?

  • If bar.ts stays and bar.test.ts exists, the test must still import something from ./bar (if your project enforces a test-imports-source rule)
  • If bar.ts is deleted (everything moved out), that rule typically only applies when the matching source file exists

e) Any circular dependency risk?

  • Draw the import graph: new file -> original file -> new file is circular
  • Fix: move the shared dependency to the new file or a third file

f) Does it export a constant?

  • If your project enforces a constants-file-organization lint rule, exported constants must live in a file named constants.ts
  • If the extracted function depends on a constant that other functions in the original file also use, do NOT export the constant from the new file. Instead, call the function (e.g., replace BUDGET[effort] with getBudget(effort)) to avoid needing a separate constants.ts

Execute the Extraction

Create the new file in the same directory:

// myFunction.ts (new file)
import { SomeType } from '../types';

function privateHelper(): void { /* ... */ }

export function myFunction(): SomeType {
  return privateHelper();
}

Update the original file to import from the new file:

// bar.ts (original file, updated)
import { myFunction } from './myFunction';

function otherFunction() {
  const result = myFunction(); // Now imports from new file
}

Update test files to import from the new file:

// bar.test.ts (updated)
import { myFunction } from './myFunction';
// If bar.ts still exists, you may need to also import something from './bar'
// to satisfy any test-imports-source rule

Watch for Chained Violations

After extracting, run npm run knip again. If function A was extracted to a new file alongside function B that A calls, but B is also only consumed by tests externally, knip will flag B too. You need to extract B to its own file so that A's file creates a genuine production import of B.

Example: suppose throwMappedError was first extracted alongside mapResponseFailure into error-mappers.ts. If throwMappedError is only called internally within that file (by mapResponseFailure), it will still be flagged. Fix: extract it to throwMappedError.ts, making the import from error-mappers.ts a genuine production consumer.

Fix: Dead Barrel Re-Exports (Remove from index.ts)

When a barrel index.ts re-exports something, but no production code imports it through the barrel. This happens when:

  • Production code within the same package uses relative imports (e.g., import {x} from './source') instead of the barrel
  • Production code in other packages imports directly from a subpath (e.g., @scope/pkg/feature/handlers) instead of the barrel
  • The re-export was added speculatively but never consumed

How to Identify

Grep excluding test files. If the only hits are:

  • The barrel index.ts itself
  • Source files using relative imports within the same package
  • Test files

Then the barrel re-export is unused. Simply remove it from index.ts.

Cross-Package Test Imports

If a test in another package imports the symbol through the barrel (e.g., import {x} from '@scope/pkg/feature'), you need to provide an alternative import path after removing the barrel re-export:

  1. Add a subpath export in the source package's package.json: {"exports": {"./feature": "./src/feature/index.ts", "./feature/doSomething": "./src/feature/doSomething.ts"}}
  2. Update the test to import from the new subpath: import {doSomething} from '@scope/pkg/feature/doSomething';

This pattern follows typical subpath-export conventions used in monorepos.

Fix: Internally-Only-Used Exports (Un-export)

When an export is only used within the same file and not imported by anything else (not even tests), just remove the export keyword:

// Before
export const MySchema = z.object({ ... });

// After
const MySchema = z.object({ ... });

This is common for Zod schemas that are only used as building blocks for other schemas in the same file.

Verify

Run ALL of these checks on the affected packages:

# Knip passes (the whole point)
npm run knip

# Types still compile
npm run typecheck

# Tests still pass
npm run test

# Lint passes (catches filename-match-export, test-imports-source, constants-file-organization, etc.)
npm run lint

If cross-package imports exist, also verify the consuming package.

Interacting Lint Rules

Many TypeScript monorepos layer additional custom lint rules on top of knip. Adapt the fixes below to whichever of these your project uses.

filename-match-export (or similar)

If a file has exactly ONE exported function (not a React component), the filename must match the function name.

  • export function loadConfig in loadConfig.ts -- passes
  • export function loadConfig in helpers.ts -- fails
  • Two exports in helpers.ts -- rule does not apply (multiple exports)

test-imports-source (or similar)

If foo.test.ts and foo.ts both exist, the test must import from ./foo.

  • Imports like import {x} from './foo' satisfy the rule
  • Typically also accepts importing from '.' or './index' if index.ts re-exports from foo.ts
  • If foo.ts is deleted, the rule does not apply

constants-file-organization (or similar)

Exported constants must be defined in a file named constants.ts.

  • If you extract a function that depends on a shared constant, do NOT export the constant from the function's file
  • Instead, replace direct constant access with function calls (e.g., BUDGET[effort] becomes getBudget(effort))
  • Or move the constant to a constants.ts file

How Knip Traces Exports

  • Knip ignores test files (**/*.test.*, **/*.spec.*)
  • ignoreIssues in knip.json suppresses warnings ON the listed file, but does NOT make the source export "used"
  • Barrel re-exports (export {x} from './source') from an index.ts with ignoreIssues do NOT count as usage of the source export
  • Only genuine imports from non-test, non-ignored project files count as usage
  • includeEntryExports: true (if set) means exports from entry point files are checked too, so entry-point-style files (migrations, scripts) may need explicit ignoreIssues

Package Subpath Exports

When removing barrel re-exports that cross-package tests relied on, add subpath exports to package.json:

{
  "exports": {
    "./feature": "./src/feature/index.ts",
    "./feature/doSomething": "./src/feature/doSomething.ts"
  }
}

What Not to Do

  • Do not add files to ignoreIssues in knip.json unless they are genuine entry point scripts (migrations, CLIs)
  • Do not merge all functions into one file to reduce exports -- same-file usage of an export does not count as usage from knip's perspective
  • Do not remove the export keyword if tests need it -- the tests would break
  • Do not create circular imports between the new and original files
  • Do not export constants from non-constants.ts files if your project enforces a constants-file-organization lint rule

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.57%
按下载量换算108

Claude

30.44%
按下载量换算95

Cursor

16.41%
按下载量换算51

Gemini CLI

9.04%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills