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

neverthrow-wrap-exceptions从不抛出换行异常

Agent Skill

neverthrow-wrap-exceptions 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

216

周安装

9

GitHub Stars

公开资料未说明

下载量

72
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:neverthrow-wrap-exceptions(从不抛出换行异常)
来源仓库:https://github.com/code-sherpas/agent-skills
仓库路径:skills/neverthrow-wrap-exceptions
安装命令:
npx skills add https://github.com/code-sherpas/agent-skills --skill neverthrow-wrap-exceptions
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/code-sherpas/agent-skills --skill neverthrow-wrap-exceptions

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在需要围绕仓库状态或代码变更进行整理时使用。
  • 可结合原始 README 和安装命令进一步验证具体功能。
  • 安装方式:通过 npx skills add 命令从指定 GitHub 仓库添加。
  • 涉及写入操作时应确认 token 权限和目标仓库范围。

SKILL.md

Neverthrow Exception Wrapping

Goal

Capture recoverable exceptions with neverthrow helpers instead of ad hoc try/catch.

This skill governs exception capture only. If the task also changes public return signatures, use neverthrow-return-types alongside this skill.

Detect Exception Sources

  1. Identify where failures currently enter the code.

- Look for hand-written try/catch, .catch(...) wrappers used only for conversion, direct calls to known throwing APIs, and promise-returning functions that may reject. - Check third-party libraries, parsers, database clients, network clients, file-system helpers, schema validators, and serialization code.

  1. Distinguish the failure shape before choosing a wrapper.

- Use the synchronous path when the operation may throw before returning a value. - Use the promise-function path when the operation returns a promise but may still throw before that promise exists. - Use the promise-instance path when you already have a PromiseLike value in hand.

  1. Do not wrap APIs that already return Result or ResultAsync.

- Compose them directly with map, mapErr, andThen, asyncAndThen, or orElse.

Choose the Wrapper

  1. Use Result.fromThrowable or fromThrowable for synchronous throwing functions.

- Always pass an error mapper so the Err side has a known type.

  1. Use ResultAsync.fromThrowable for promise-returning functions that can throw before returning or fail during async execution.

- Prefer this over ResultAsync.fromPromise(fn(...),...) when the function call itself might throw.

  1. Use ResultAsync.fromPromise or fromPromise when you already have a PromiseLike value.

- Map rejected values into a concrete error type immediately.

  1. Reuse narrow mapper functions when the same error shape appears repeatedly.

- Prefer stable domain errors over unknown, any, and generic strings.

Avoid try/catch by Default

  1. Do not add new hand-written try/catch blocks when a neverthrow helper fits the job.

- Extract the risky operation into a function if needed and wrap that function.

  1. Keep try/catch only when the surrounding construct truly requires it.

- Examples include cleanup flows that need finally, framework boundaries that must intercept and translate exceptions, or language constructs that cannot be expressed cleanly with wrapper helpers alone.

  1. If try/catch remains necessary, keep it at the narrowest boundary.

- Convert the caught value into Err or the required framework-native response immediately. - Do not let the caught value flow through the codebase as untyped unknown.

Implementation Rules

  1. Wrap once near the source of the throwable or rejecting operation.

- Avoid nested wrappers around the same operation.

  1. Keep error mapping explicit.

- Prefer mapper functions that preserve useful context such as operation name, input identifiers, or upstream status codes when the local style allows it.

  1. Replace conversion-only .catch(...) chains when neverthrow provides a clearer wrapper.

- Do not simulate ResultAsync manually with Promise.resolve, Promise.reject, or custom wrapper objects.

Example Patterns

const parseConfig = Result.fromThrowable(
  JSON.parse,
  (error) => ({ type: 'ConfigParseError', cause: error }),
)

const fetchUser = ResultAsync.fromThrowable(
  apiClient.getUser,
  (error) => ({ type: 'UserFetchError', cause: error }),
)

function readBody(): ResultAsync<RequestBody, BodyReadError> {
  return ResultAsync.fromPromise(request.json(), toBodyReadError)
}

Validate Before Finishing

  1. Verify new or edited failure capture uses neverthrow helpers where applicable.
  2. Verify each wrapper choice matches the real failure shape: synchronous throw, promise-returning function, or existing promise.
  3. Verify all error mappers produce explicit error types.
  4. Verify any remaining try/catch block is documented by a real constraint instead of habit.
  5. Run the normal local validation for the stack when it is safe and in scope, such as tests, linting, or type checks.

Report the Outcome

When finishing the task:

  • State which throwing or rejecting operations were wrapped.
  • State which neverthrow helper was used and why.
  • State any remaining try/catch blocks and why they were unavoidable.
  • State how caught or rejected values are mapped into explicit error types.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.23%
按下载量换算25

Claude

30.12%
按下载量换算22

Cursor

21.51%
按下载量换算15

Gemini CLI

10.17%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills