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

typescript-advancedTypeScript 高级

Agent Skill

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

总安装

945

周安装

39

GitHub Stars

4

下载量

309
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/trancong12102/agentskills --skill typescript-advanced

简介

typescript-advanced 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配和来源线索筛选等研究检索场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 建议结合原始 README 文档进一步验证具体用法和功能边界。

SKILL.md

TypeScript Advanced: Patterns, Pitfalls & type-fest

This skill defines the rules, conventions, and architectural decisions for writing advanced TypeScript. It is intentionally opinionated to prevent common type-level bugs and enforce patterns that produce safe, maintainable code.

For detailed API documentation of TypeScript features, use other appropriate tools (documentation lookup, web search, etc.) — this skill focuses on when, why, and how to use advanced type features correctly.

Type Safety Philosophy

any vs unknown vs never — the only rule you need

TypeAssignable fromAssignable toOperationsUse for
anyanythinganythingall (UNSAFE)Never in new code
unknownanythingonly unknown / anynone unnarowedExternal inputs, JSON, user data
nevernothinganythingnoneExhaustive checks, unreachable code

Rule: never use any in new code. Use unknown for external boundaries and narrow before operating. Use never for exhaustiveness and impossible states.

Prefer unions over enums

// Avoid — numeric enums are structurally assignable to number (footgun)
enum Direction {
  Up,
  Down,
  Left,
  Right,
}
function go(d: Direction) {}
go(42); // no error — TypeScript allows any number!

// Prefer — exhaustive, tree-shakeable, no runtime artifact
type Direction = "up" | "down" | "left" | "right";

String enums are safer than numeric but still carry runtime overhead and import friction. String literal unions are the default choice unless you need reverse mapping.

interface vs type — decision table

ScenarioUseWhy
Object shapes, class contractsinterfaceDeclaration merging, better error messages
Unions, intersections, mapped/conditionaltypeOnly type supports these
Third-party augmentation neededinterfaceOnly interfaces support declaration merging
Public API types (libraries)interfaceConsumers can augment; better display in tooltips
Internal computed typestypeMore expressive, no accidental merging

Discriminated Unions & Exhaustive Checks

The never exhaustiveness pattern

Every switch / if-else chain on a discriminated union must handle all variants. Use the never assignment to get a compile-time error when a new variant is added:

type Result<T> =
  | { status: "ok"; data: T }
  | { status: "error"; error: Error }
  | { status: "loading" };

function handle<T>(result: Result<T>): string {
  switch (result.status) {
    case "ok":
      return JSON.stringify(result.data);
    case "error":
      return result.error.message;
    case "loading":
      return "Loading...";
    default:
      const _exhaustive: never = result;
      return _exhaustive; // compile error if a variant is unhandled
  }
}

Rules for discriminated unions

  • Discriminant must be a literal typestring, number, boolean literals. Wide types like string do not narrow.
  • Keep the discriminant property name consistent across all members (kind, type, status).
  • Avoid optional discriminantsstatus?: "ok" | "error" breaks narrowing.

Branded Types — Nominal Safety in a Structural System

TypeScript is structural: UserId (a string) and OrderId (a string) are interchangeable by default. Branded types break this at the type level with zero runtime overhead.

Recommended pattern: unique symbol brand

declare const __brand: unique symbol;
type Brand<T, B> = T & { readonly [__brand]: B };

type UserId = Brand<string, "UserId">;
type OrderId = Brand<string, "OrderId">;

// Constructor = the single trust boundary, validate here
const toUserId = (id: string): UserId => id as UserId;
const toOrderId = (id: string): OrderId => id as OrderId;

function getUser(id: UserId) {
  /* ... */
}
getUser(toUserId("abc")); // ok
getUser(toOrderId("abc")); // ERROR — OrderId not assignable to UserId
getUser("abc"); // ERROR — string not assignable to UserId

When to use branded types

  • IDsUserId, OrderId, ProductId prevent cross-assignment
  • UnitsMeters, Feet, USD, EUR prevent arithmetic mistakes
  • Validated stringsEmail, URL, Slug encode that validation has happened
  • Opaque tokensJWTToken, APIKey prevent accidental logging/display

type-fest alternative

Use Tagged<T, Tag> from type-fest for multi-tag composition and metadata:

import type { Tagged, GetTagMetadata } from "type-fest";
type UserId = Tagged<string, "UserId">;
type AdminId = Tagged<UserId, "Admin">; // composable — both tags preserved

Modern Inference Tools

satisfies — validate without widening (TS 4.9+)

type Theme = Record<"primary" | "secondary", string | string[]>;

// Type annotation: loses specific types
const t1: Theme = { primary: "#000", secondary: ["#111", "#222"] };
t1.secondary.map((s) => s); // ERROR — string | string[] has no .map

// satisfies: validates structure, keeps specific inference
const t2 = { primary: "#000", secondary: ["#111", "#222"] } satisfies Theme;
t2.secondary.map((s) => s); // ok — inferred as string[]

Use satisfies when: you want config validation (catch typos in keys) but also need autocomplete on specific values.

const type parameters — generic literal inference (TS 5.0+)

// Without const: T = string[]
function routes<T extends string[]>(r: T): T {
  return r;
}

// With const: T = readonly ["users", "posts"]
function routes<const T extends string[]>(r: T): T {
  return r;
}
const r = routes(["users", "posts"]); // readonly ["users", "posts"]

Use const type parameters when: building registries, config factories, or any generic where preserving literal types at the call site matters.

NoInfer<T> — control inference sources (TS 5.4+)

Prevents a parameter from contributing to type inference — it reads T but doesn't influence what T becomes:

function createFSM<const TState extends string>(config: {
  states: TState[];
  initial: NoInfer<TState>; // must be from states, can't introduce new values
}) {
  /* ... */
}

createFSM({ states: ["idle", "running"], initial: "idle" }); // ok
createFSM({ states: ["idle", "running"], initial: "stopped" }); // ERROR

Use NoInfer when: a function has multiple parameters sharing a type param, and one should be constrained to what the others infer — not contribute new candidates.


type-fest: Don't Reinvent the Wheel

type-fest provides 200+ utility types with zero runtime cost (types-only). Always check type-fest before writing a custom utility.

import type { Simplify, Merge, SetRequired, LiteralUnion } from "type-fest";

Decision table: built-in vs type-fest

NeedBuilt-intype-fest
Make keys optional/requiredPartial, RequiredSetOptional, SetRequired (per-key)
Deep partial/readonlyPartialDeep, ReadonlyDeep
Merge two types (override, not intersect)Merge, MergeDeep
Flatten intersection for readabilitySimplify
String union with autocomplete + stringLiteralUnion
At-least/exactly-one constraintRequireAtLeastOne, RequireExactlyOne
Nominal/branded typesTagged, UnwrapTagged
JSON round-trip typeJsonify
Strict omit (key must exist)Omit (loose)Except (strict)
Deep dot-path accessPaths, Get
Exact object (reject excess props)Exact
Pick/omit by value typeConditionalPick, ConditionalExcept
Package.json / tsconfig typesPackageJson, TsConfigJson
Case conversion for keysCamelCasedProperties, etc.

Most commonly needed utilities

  • Simplify<T> — flattens A & B & C into readable {...all keys}. Use on any intersection that produces unreadable hover tooltips.
  • Merge<A, B>A & B produces never when keys conflict; Merge cleanly overrides. Use instead of & when types share key names.
  • LiteralUnion<Literal, Base>'a' | 'b' | string kills autocomplete; LiteralUnion preserves it. Essential for extensible string APIs.
  • SetRequired<T, K> / SetOptional<T, K> — toggle specific keys without maintaining duplicate interfaces.
  • Jsonify<T> — models JSON.parse(JSON.stringify(x)). Catches Datestring, undefined → dropped, interface open-index issues.

Common Pitfalls

  1. any leaks silently — one any propagates through assignments, generics, and return types. A single any in a utility type makes all downstream types unsound. Use unknown + narrowing instead.
  2. Excess property checks only apply to literals — assigning through a variable bypasses excess property checks entirely. Don't rely on them for runtime safety. interface Point {x: number; y: number;} const obj = {x: 1, y: 2, z: 3}; const p: Point = obj; // no error — z slips through
  3. Distributive conditional type on neverT extends X? A: B where T is never returns never (not B). Wrap in tuples: [T] extends [X].
  4. Omit doesn't check key existenceOmit<T, "typo"> silently succeeds. Use Except from type-fest for strict key checking.
  5. Type widening with letlet x = "hello" is string, not "hello". Use const, as const, or satisfies to preserve literals.
  6. & intersection with conflicting keys{a: string} & {a: number} makes a: never. Use Merge from type-fest instead.
  7. Enum numeric assignabilityenum Foo {A, B} allows const x: Foo = 999. Use string literal unions instead.
  8. interface accidental merging — two interface User {} declarations in the same scope silently merge. Use type for internal types that should not be extended.
  9. const enum under isolatedModules — esbuild, SWC, Babel all use isolatedModules. const enum in .d.ts or library code breaks these builds.
  10. Forgetting readonly on array parametersfunction f(arr: string[]) allows mutation. Use readonly string[] for params you don't intend to mutate.
  11. Structural subtyping function params — method syntax push(x: T) is bivariant (unsound). Use function property syntax push: (x: T) => void under strictFunctionTypes for correct variance.
  12. Reinventing type-fest utilities — check type-fest before writing DeepPartial, DeepReadonly, Merge, branded types, or key manipulation types. The library handles edge cases (circular refs, readonly arrays, maps/sets) that hand-rolled versions miss.

Reference Files

Read the relevant reference file when working with a specific pattern:

FileWhen to read
references/conditional-types.mdinfer, distributive conditionals, constraining with extends
references/mapped-types.mdKey remapping, filtering, template literal key manipulation
references/template-literals.mdString manipulation at type level, pattern matching, parsing
references/module-augmentation.mdDeclaration merging, extending third-party types, global scope
references/type-fest.mdFull type-fest utility catalog by category with usage examples

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.77%
按下载量换算101

Claude

30.16%
按下载量换算93

Cursor

21.05%
按下载量换算65

Gemini CLI

9.22%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills