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

better-result-migrate-v2更好的结果迁移 v2

Agent Skill

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

总安装

490

周安装

20

GitHub Stars

1,392

下载量

157
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dmmulroy/better-result --skill better-result-migrate-v2

简介

协助将 better-result 从 v1 的 TaggedError 类继承 API 升级至 v2 工厂函数形式。

  • 处理 TaggedError.match 等遗留方法的重写与新对象构造方式转换。
  • 提供具体前后对比示例,降低大规模重构难度。
  • 使用前应备份原始代码,并在测试环境中验证迁移效果。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

better-result Migrate v2

Upgrade better-result error definitions from the v1 TaggedError API to the v2 factory-based API.

When to Use

Use this skill when the user:

  • is upgrading better-result from v1 to v2
  • has classes that extend TaggedError directly
  • still uses TaggedError.match, TaggedError.matchPartial, or TaggedError.isTaggedError
  • needs help rewriting constructor calls to the new object-based form

Reading Order

TaskFiles to Read
Plan and execute the migrationThis file
See concrete before/after transformsreferences/migration-patterns.md
Verify current library behavioropensrc/ if present

Quick API Diff

v1v2
class FooError extends TaggedErrorclass FooError extends TaggedError("FooError")<Props>() {}
readonly _tag = "FooError" as const_tag generated by the factory
new FooError("123")new FooError({id: "123", message: "..."})
TaggedError.match(...)matchError(...)
TaggedError.matchPartial(...)matchErrorPartial(...)
TaggedError.isTaggedError(...)isTaggedError(...) or TaggedError.is(...)

Migration Workflow

  1. Search for extends TaggedError across the codebase.
  2. For each class, extract:

- the _tag literal - constructor parameters and runtime properties - any computed message or validation logic

  1. Rewrite the class to TaggedError("Tag")<Props>().
  2. If constructor logic exists, keep a custom constructor that accepts an object and calls super({...}).
  3. Update call sites from positional arguments to object arguments.
  4. Replace static helper usage with the new standalone helpers.
  5. Update imports.
  6. Run tests and search again for old API remnants.

Transformation Rules

  • Simple class: remove _tag, replace base class, move fields into the generic props object.
  • Computed message: keep a custom constructor and derive message before super(...).
  • Validation logic: preserve validation inside the custom constructor.
  • Extra runtime fields: include them in the props object passed to super(...).
  • Usages: migrate new FooError(a, b) to new FooError({a, b, message}) or an equivalent derived-message constructor.

Read references/migration-patterns.md before editing if the target classes are non-trivial.

Search Checklist

Search for all of these before and after the migration:

  • extends TaggedError
  • readonly _tag =
  • TaggedError.match
  • TaggedError.matchPartial
  • TaggedError.isTaggedError
  • new call sites for migrated error classes

Completion Criteria

A migration is complete when:

  • no classes directly extend the old v1 TaggedError base class
  • migrated classes use TaggedError("...")<...>()
  • call sites use the new constructor shape
  • static helper calls are replaced with matchError, matchErrorPartial, or isTaggedError
  • imports reflect the new helper functions
  • tests pass with the upgraded package version

Common Pitfalls

  • Dropping custom validation logic during the rewrite
  • Forgetting to include message in the props shape
  • Updating class declarations but not constructor call sites
  • Replacing TaggedError.match but missing matchPartial or isTaggedError
  • Migrating the type but not preserving extra runtime fields like timestamps or codes

In This Reference

FilePurpose
references/migration-patterns.mdDetailed v1 → v2 before/after examples and import helper changes

If opensrc/ exists, use it to confirm the exact v2 API exposed by the installed package.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.99%
按下载量换算57

Claude

28.8%
按下载量换算45

Cursor

17.84%
按下载量换算28

Gemini CLI

8.7%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills