Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

migratemigrate 工具

Agent Skill

migrate 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

808

周安装

33

GitHub Stars

11,034

下载量

261
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:migrate(migrate 工具)
来源仓库:https://github.com/toss/es-toolkit
仓库路径:skills/migrate
安装命令:
npx skills add https://github.com/toss/es-toolkit --skill migrate
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/toss/es-toolkit --skill migrate

简介

migrate 用于根据关键词、任务场景或来源线索查找、检索和筛选信息。

  • 它适用于 Codex、Claude、Cursor 等宿主环境中的信息定位需求。
  • 通过 npx skills add 命令可从 toss/es-toolkit 仓库安装此技能。
  • 使用前需确认权限边界及是否会执行网络请求或文件读写操作。
  • migrate 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Lodash Migration & Compat Guide

Guide users through migrating lodash to es-toolkit and understanding the strict vs compat APIs, grounded in actual source code.

Input

$ARGUMENTS — Lodash code to migrate, specific function names, or a question about strict vs compat.

Core Concepts

es-toolkit (strict): Opinionated, simplified API for the 85% use case. Smaller bundle, may differ from lodash in edge cases by design. New functions are added here.

es-toolkit/compat: Aims for full lodash test compatibility within a defined scope. See docs/compatibility.md for out-of-scope behaviors (e.g., implicit type conversions, prototype modifications).

Why source-first matters

The only reliable way to know the difference between strict and compat is to read the actual implementation. Never guess — always verify from source.

Workflow

If a specific function or lodash code is given

1. Identify lodash functions from input

Extract which lodash functions are used and how they're imported.

2. Verify availability in source code

For each function, search both APIs:

  • src/{category}/{fn}.ts — strict API
  • src/compat/{category}/{fn}.ts — compat API

Read the implementation to understand the exact signature and any behavioral differences.

3. Determine the right migration path

ScenarioRecommendation
Function exists in both, same behaviorUse es-toolkit (smaller bundle)
Function exists in both, different behaviorExplain the difference, let user choose
Only in compatUse es-toolkit/compat
Not available at allKeep lodash or suggest modern JS alternative

If the function only exists in compat (like get, set, has), explain why — es-toolkit doesn't implement functions replaceable by modern JS (optional chaining ?., Object.hasOwn(), etc.).

4. Generate before/after migration

For each function, provide:

  • Availability: es-toolkit and/or es-toolkit/compat
  • Doc link: https://es-toolkit.dev/reference/{category}/{fn} (strict) or https://es-toolkit.dev/reference/compat/{category}/{fn} (compat)
  • Before (lodash) and After (es-toolkit) code examples
  • Any behavioral differences found in source code
  • Feature comparison table: Compare API capabilities side-by-side (e.g., cancel support, flush, maxWait, return values, AbortSignal, callback arguments). Read both implementations to identify all supported options and present them in a table like:
Featurelodashes-toolkites-toolkit/compat
(list each option/capability)✅/❌✅/❌✅/❌
  • "When to use which": Based on the feature comparison, provide scenario-based guidance — e.g., "Use es-toolkit if you only need basic debounce; use compat if you rely on cancel/flush; keep lodash if you need X."

For migrations involving many functions, use a summary table instead of repeating the full template for each one.

5. Provide consolidated import rewrite

Show the final import transformation as a single block.

5a. Suggest automation patterns for large-scale migrations

When migrating many files, mention practical automation approaches:

  • Bundler alias: Configure resolve.alias in webpack or Vite to redirect lodash imports at build time without changing source files: // vite.config.js or webpack.config.js resolve: {alias: {'lodash': 'es-toolkit/compat'}}
  • ESLint rule: Use no-restricted-imports to warn or error on remaining lodash imports after migration.
  • Codemod: For systematic AST-based transforms, mention tools like jscodeshift if the migration pattern is complex.

6. Note bundle size impact

es-toolkit is up to 97% smaller than lodash and 2-3x faster. Bundle size numbers come from benchmarks/bundle-size/ and runtime performance numbers from benchmarks/performance/ and docs/performance.md — reference them for specific function comparisons if the user asks.

If no specific function (migration strategy overview)

Provide a strategic overview with three migration options:

  • Option A: Direct to es-toolkit — new/small projects
  • Option B: Gradual via compat — large codebases (recommended for legacy)
  • Option C: Mixed — pragmatic approach

For each option, include a trade-off matrix:

FactorOption A (strict)Option B (compat)Option C (mixed)
Code change volumeHighLowMedium
Bundle size reductionMaximumModerateVaries
Risk levelHigher (behavior diffs)Low (lodash-compatible)Medium
Maintenance effortLow (clean API)Medium (compat tracking)Higher (two APIs)

Compat-exclusive functions: Search src/compat/ for functions that don't exist in src/ (strict). List representative examples so users know what can only come from compat (e.g., get, set, has).

For concrete behavioral differences, read a few representative function pairs from source (e.g., chunk, debounce) to give real examples rather than abstract descriptions.

Search local docs for discovery

If you need to check whether a lodash function has an es-toolkit equivalent:

  • By name: Read docs/reference/{category}/{functionName}.md directly
  • By keyword: Grep for the function name across docs/reference/**/*.md
  • Compat-only functions: Glob docs/reference/compat/{category}/*.md — then check if the same file exists in docs/reference/{category}/
  • Available categories: array, compat, error, function, map, math, object, predicate, promise, set, string, util

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.34%
按下载量换算92

Claude

29.09%
按下载量换算76

Cursor

21.34%
按下载量换算56

Gemini CLI

9.79%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills