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

typescript-expertTypeScript expert 搜索

Agent Skill

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

总安装

259

周安装

11

GitHub Stars

2

下载量

91
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/biggora/claude-plugins-registry --skill typescript-expert

简介

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

  • 适合围绕代码变更与仓库状态进行整理与分析。
  • 使用时需确认权限范围与维护状态,避免误改生产数据。
  • 建议结合原始 README 核验具体用法与风险边界。
  • typescript-expert 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

TypeScript Expert

Covers TypeScript through 5.8 (latest stable as of March 2026). The official handbook at https://www.typescriptlang.org/docs/handbook/ is the canonical reference.

TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. Its type system is structural (not nominal), meaning type compatibility is determined by shape rather than declaration. This has profound implications for how you design types and APIs.

Quick Decision Guide

You need to...Read
Understand primitives, inference, narrowingcore-type-system
Choose between interface and typecore-interfaces-types
Write generic functions, classes, constraintscore-generics
Use Partial, Pick, Omit, Record, etc.core-utility-types
Build conditional types with inferadvanced-conditional-types
Create mapped types and key remappingadvanced-mapped-types
Use template literal types for string patternsadvanced-template-literals
Narrow types with guards and discriminated unionsadvanced-type-guards
Use TC39 decorators (TS 5.0+)advanced-decorators
Configure tsconfig.json properlybest-practices-tsconfig
Apply common patterns (branded types, error handling, immutability)best-practices-patterns
Optimize type-level performancebest-practices-performance
Use TS 5.0-5.8 features (satisfies, const params, using)features-ts5x

Core Principles

1. Let TypeScript Infer

TypeScript's inference is powerful. Don't annotate what TypeScript can figure out on its own:

// Unnecessary — TypeScript infers `number`
const count: number = 5;

// Good — let inference work
const count = 5;

// DO annotate function signatures (parameters + return types for public APIs)
function getUser(id: string): Promise<User> { ... }

// Return type annotation catches accidental returns
function parse(input: string): ParseResult {
  if (!input) return null; // Error! null isn't ParseResult — good, we caught a bug
}

2. Prefer unknown over any

any disables type checking. unknown is type-safe — you must narrow it before use:

// Bad — silently breaks type safety
function process(data: any) {
  data.foo.bar; // No error, but might crash at runtime
}

// Good — forces you to check before using
function process(data: unknown) {
  if (typeof data === "object" && data !== null && "foo" in data) {
    // Now TypeScript knows data has a foo property
  }
}

3. Use Strict Mode

Always enable "strict": true in tsconfig.json. It enables all strict type-checking flags including strictNullChecks, noImplicitAny, and strictFunctionTypes. Projects that skip strict mode accumulate hidden bugs that surface painfully later. See best-practices-tsconfig for the full recommended configuration.

4. Model Your Domain with Types

The type system is a tool for encoding business rules. Use discriminated unions to model states, branded types for domain identifiers, and readonly to enforce immutability:

// Model states explicitly — impossible to access data in loading/error state
type AsyncState<T> =
  | { status: "loading" }
  | { status: "error"; error: Error }
  | { status: "success"; data: T };

// Branded types prevent ID mixups at compile time
type UserId = string & { readonly __brand: "UserId" };
type OrderId = string & { readonly __brand: "OrderId" };

function getOrder(orderId: OrderId): Order { ... }
getOrder(userId); // Error! UserId is not assignable to OrderId

5. Structural Typing Implications

TypeScript uses structural typing — if two types have the same shape, they're compatible:

interface Point { x: number; y: number }
interface Coordinate { x: number; y: number }

const p: Point = { x: 1, y: 2 };
const c: Coordinate = p; // OK — same shape

// This means excess property checks only apply to object literals
function plot(point: Point) { ... }
plot({ x: 1, y: 2, z: 3 }); // Error — excess property check on literal
const obj = { x: 1, y: 2, z: 3 };
plot(obj); // OK — no excess check on variable

Common Gotchas

GotchaExplanation
object vs Object vs {}Use object for non-primitives. Never use Object or {} as types — {} matches everything except null/undefined.
T[] vs readonly T[]Arrays are mutable by default. Use readonly T[] or ReadonlyArray<T> when mutation isn't intended.
enum vs unionPrefer union types (`type Dir = "N" \"S" \"E" \"W") over enums. Enums produce runtime code and have subtle nominal typing behavior. Use as const` objects if you need runtime values.
Optional vs undefined{x?: number} means x may be missing entirely. `{x: number \undefined} means x must be present but can be undefined. These behave differently with in` checks and spread.
as castsType assertions (as) override the compiler. Prefer type guards for runtime narrowing. Use as only when you genuinely know more than TypeScript.
any propagationA single any silently infects surrounding types. Use unknown and narrow, or use // @ts-expect-error for known edge cases.

TypeScript 5.x Highlights

Key features added in TypeScript 5.0-5.8 (see features-ts5x for details):

VersionFeatureWhy it matters
5.0TC39 DecoratorsStandard decorator syntax, no experimentalDecorators needed
5.0const type parameters<const T> gives const-like inference without as const at call site
5.1Easier implicit returnsundefined-returning functions can omit return
5.2using declarationsDeterministic resource cleanup (like C# using / Python with)
5.4NoInfer<T>Prevents unwanted inference from specific positions
5.5Inferred type predicatesfilter(Boolean) and arrow guards just work
5.6Iterator helper methods.map(), .filter(), .take() on iterators
5.7--squash for project refsFaster composite project builds
5.8--erasableSyntaxOnlyStrip types without full compilation (Node.js --strip-types support)

When to Read the References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.58%
按下载量换算31

Claude

30.19%
按下载量换算27

Cursor

19.59%
按下载量换算18

Gemini CLI

9.72%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills