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

soundness-traps健全性陷阱

Agent Skill

用于辅助音频、音乐、语音转写、语音合成或声音素材处理。它适合让 Agent 生成配乐说明、整理音频流程、调用语音工具或处理播客和视频配音素材。使用时需要确认输入音频来源、输出格式、时长和模型限制;涉及人声克隆、版权音乐或公开发布时,应先核对授权和合规边界。

总安装

190

周安装

8

GitHub Stars

2

下载量

67
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/marius-townhouse/effective-typescript-skills --skill soundness-traps

简介

用于识别 TypeScript 类型系统中的常见陷阱和不健全行为。

  • 适合帮助开发者理解类型推断、泛型和条件类型的潜在问题。
  • 使用时需提供具体代码片段以分析类型安全性。
  • 安装前建议核对仓库维护状态和宿主支持情况。
  • 避免依赖此技能替代人工代码审查。soundness-traps 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Avoid Soundness Traps

Overview

TypeScript is not sound - runtime values can diverge from static types.

"Soundness" means static types always match runtime values. TypeScript intentionally trades some soundness for convenience. Know the common traps.

When to Use This Skill

  • Debugging "impossible" runtime errors
  • Understanding TypeScript's limitations
  • Writing defensive code
  • Evaluating trade-offs of strict options

The Iron Rule

TypeScript types are NOT runtime guarantees.
Know the common soundness traps and avoid them.

Remember:

  • Array access doesn't check bounds
  • Type assertions bypass checking
  • Functions can mutate their parameters
  • External data may not match declared types

Soundness vs Convenience

TypeScript chooses convenience over soundness in many cases:

const xs = [1, 2, 3];
const x = xs[10];
//    ^? number (but actually undefined!)

This is unsound but convenient. Checking bounds at every access would be tedious.

Common Soundness Traps

1. Unchecked Array Access

const arr = [1, 2, 3];
const item = arr[5];  // undefined at runtime
//    ^? number (wrong!)

item.toFixed(2);  // Crashes!

Fix: Use noUncheckedIndexedAccess or check explicitly:

const item = arr[5];
if (item !== undefined) {
  item.toFixed(2);  // OK
}

2. Type Assertions

const hour = (new Date()).getHours() || null;
//    ^? number | null

// Assertion removes null
const definitelyHour = hour as number;
//    ^? number (but might be null!)

Fix: Use conditionals instead of assertions:

if (hour !== null) {
  hour.toFixed(1);  // TypeScript knows it's number
}

3. any Types

function log(x: number) {
  console.log(x.toFixed(1));
}

const val: any = 'not a number';
log(val);  // No error, crashes at runtime

Fix: Avoid any. Use unknown with narrowing:

function log(x: unknown) {
  if (typeof x === 'number') {
    console.log(x.toFixed(1));
  }
}

4. Object Index Access

type Dict = { [key: string]: string };
const dict: Dict = { a: 'apple' };
const val = dict['b'];
//    ^? string (but actually undefined!)

Fix: Include undefined in the type:

type Dict = { [key: string]: string | undefined };
const val = dict['b'];
//    ^? string | undefined

5. Function Parameter Mutation

function addFox(animals: Animal[]) {
  animals.push(new Fox());
}

const hens: Hen[] = [new Hen()];
addFox(hens);  // Fox in the henhouse!

Fix: Use readonly to prevent mutation:

function addFox(animals: readonly Animal[]) {
  animals.push(new Fox());
  //      ~~~~ Property 'push' does not exist
}

6. Refinements Invalidated by Callbacks

interface Data {
  value?: string;
}

function process(data: Data, callback: (d: Data) => void) {
  if (data.value) {
    callback(data);
    console.log(data.value.toUpperCase());  // Might crash!
    //          ^? string (but callback might have deleted it!)
  }
}

process({ value: 'hello' }, d => delete d.value);

Fix: Capture the value before the callback:

function process(data: Data, callback: (d: Data) => void) {
  const value = data.value;
  if (value) {
    callback(data);
    console.log(value.toUpperCase());  // Safe!
  }
}

7. Inaccurate Type Declarations

// Library types might be wrong
declare function getUser(): { name: string; email: string };

const user = getUser();
user.email.toLowerCase();  // Might crash if email is undefined!

Fix: Validate external data at runtime:

const user = getUser();
if (user.email) {
  user.email.toLowerCase();
}

8. Optional Properties and Assignability

interface Person { name: string; }
interface AgePerson { name: string; age?: number; }

const p: Person = { name: 'Bob', age: '30' };  // age is string
const ap: AgePerson = p;  // No error!
console.log(ap.age?.toFixed());  // toFixed on string!

This is a subtle unsoundness from TypeScript's structural typing.

Compiler Options for Soundness

OptionWhat It Catches
strictNullChecksnull/undefined assignments
noUncheckedIndexedAccessArray/object access returning undefined
strictFunctionTypesFunction parameter contravariance

Enable these for more safety (at cost of convenience).

General Strategies

  1. Validate external data (APIs, JSON, user input)
  2. Use readonly for parameters you don't mutate
  3. Prefer unknown to any
  4. Avoid type assertions; use narrowing instead
  5. Enable strict compiler options
  6. Test edge cases (empty arrays, missing properties)

Pressure Resistance Protocol

1. "TypeScript Should Catch This"

Pressure: "Why didn't TypeScript catch this bug?"

Response: TypeScript is intentionally unsound in many cases.

Action: Know the traps; write defensive code.

2. "It's Too Strict"

Pressure: "noUncheckedIndexedAccess is annoying"

Response: It catches real bugs. The friction is worth it.

Action: Enable strict options; handle the edge cases.

Red Flags - STOP and Reconsider

  • Accessing array elements without bounds checking
  • Type assertions to "fix" type errors
  • Mutating function parameters
  • Trusting external data matches declared types

Common Rationalizations (All Invalid)

ExcuseReality
"TypeScript will catch it"TypeScript is not sound
"It always has a value"Until it doesn't
"The API is well-documented"Docs lie; validate

Quick Reference

// TRAP: Array access
const x = arr[10];  // Might be undefined

// TRAP: Type assertion
const y = val as number;  // Might not be number

// TRAP: any type
const z: any = 'string';
z.toFixed();  // Crashes

// TRAP: Index signature
const v = dict['missing'];  // Undefined

// SAFE: Narrowing
if (typeof val === 'number') { val.toFixed(); }

// SAFE: Optional chaining
arr[10]?.toFixed();

// SAFE: undefined in type
type Dict = { [k: string]: string | undefined };

The Bottom Line

TypeScript is convenient, not sound.

Know where types can diverge from runtime values. Enable strict options. Validate external data. Write defensive code. Don't trust types blindly.

Reference

Based on "Effective TypeScript" by Dan Vanderkam, Item 48: Avoid Soundness Traps.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.43%
按下载量换算23

Claude

29.98%
按下载量换算20

Cursor

19.8%
按下载量换算13

Gemini CLI

11.16%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills