Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问许可证需确认审计提醒

typescriptTypeScript 开发

Agent Skill

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

总安装

222

周安装

9

GitHub Stars

8

下载量

70
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tyler-r-kendrick/agent-skills --skill typescript

简介

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

  • 可围绕代码变更、仓库状态或协作事项进行信息整理。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需确认访问权限。
  • 使用前建议核实是否会触发命令执行或文件读写操作。
  • typescript 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

TypeScript

Overview

TypeScript is a statically typed superset of JavaScript that compiles to plain JavaScript. It adds optional type annotations, interfaces, generics, and advanced type-level programming to JavaScript, enabling safer refactoring, better tooling, and self-documenting code. TypeScript has become the default choice for professional JavaScript development across frontend frameworks, backend services, CLIs, and serverless functions.

Knowledge Map

typescript/
├── project-system/       # tsconfig.json, build tools, bundlers, compilation
├── package-management/   # npm, yarn, pnpm, bun, workspaces, publishing
├── cli/                  # Commander, yargs, oclif, ink, chalk, CLI tooling
└── packages/             # Popular libraries (Express, Next.js, Zod, Prisma, etc.)

Choosing Guide

ProblemSub-SkillNotes
Configure tsconfig.json or compiler optionsproject-systemCovers target, module, strict, paths, and all compiler flags
Choose or configure a bundler (Vite, esbuild, etc.)project-systemBuild tool comparison with speed, features, and config examples
Set up monorepo with project referencesproject-systemComposite projects, tsc --build, path aliases
Choose a package manager (npm, pnpm, yarn, bun)package-managementFeature comparison, lockfiles, disk usage, monorepo support
Configure workspaces for a monorepopackage-managementnpm/yarn/pnpm/bun workspace patterns and turborepo integration
Publish a package to npmpackage-managementPublishing workflow, provenance, package.json exports
Build a CLI toolcliCommander, yargs, oclif, ink for TUI, packaging strategies
Add interactive prompts or terminal stylingcliinquirer, prompts, chalk, ora, listr2
Choose or use a specific librarypackagesExpress, Fastify, Next.js, Zod, Prisma, tRPC, and more

TypeScript Version Landscape

VersionKey Features
4.0Variadic tuple types, labeled tuple elements, class property inference from constructors
4.1Template literal types, key remapping in mapped types, recursive conditional types
4.2Leading/middle rest elements in tuples, stricter in operator checks
4.3override keyword, template literal type improvements, static index signatures
4.4Control flow analysis of aliased conditions, symbol and template literal index signatures
4.5Awaited type, tail-recursive conditional types, type modifiers on import names
4.6Control flow analysis for destructured discriminated unions, --target es2022
4.7extends constraints on infer, instantiation expressions, moduleSuffixes
4.8Improved intersection reduction, --build mode --watch, template literal narrowing
4.9satisfies operator, in narrowing for unlisted properties, auto-accessors
5.0Decorators (TC39 standard), const type parameters, --moduleResolution bundler
5.1Easier implicit returns for undefined, unrelated types for getters/setters, @param JSDoc linking
5.2using declarations (explicit resource management), decorator metadata
5.3Import attributes, --resolution-mode in /// <reference>, narrowing in switch (true)
5.4NoInfer utility type, preserved narrowing in closures, Object.groupBy / Map.groupBy
5.5+Inferred type predicates, isolatedDeclarations, regex syntax checking

Core Language Features Quick Reference

Type System Fundamentals

// Union types — value can be one of several types
type Result = "success" | "error" | "pending";
type ID = string | number;

// Intersection types — combine multiple types
type Employee = Person & { employeeId: string };

// Generics — parameterized types
function first<T>(arr: T[]): T | undefined {
  return arr[0];
}

// Conditional types — type-level if/else
type IsString<T> = T extends string ? true : false;

// Mapped types — transform properties
type Readonly<T> = { readonly [K in keyof T]: T[K] };
type Optional<T> = { [K in keyof T]?: T[K] };

// Template literal types — string manipulation at the type level
type EventName<T extends string> = `on${Capitalize<T>}`;
type ClickEvent = EventName<"click">; // "onClick"

// satisfies operator — validate type without widening
const palette = {
  red: [255, 0, 0],
  green: "#00ff00",
} satisfies Record<string, string | number[]>;

// const assertions — narrow to literal types
const routes = ["home", "about", "contact"] as const;
type Route = (typeof routes)[number]; // "home" | "about" | "contact"

// Discriminated unions — tagged union pattern
type Shape =
  | { kind: "circle"; radius: number }
  | { kind: "rectangle"; width: number; height: number };

function area(shape: Shape): number {
  switch (shape.kind) {
    case "circle":
      return Math.PI * shape.radius ** 2;
    case "rectangle":
      return shape.width * shape.height;
  }
}

Key Utility Types

UtilityPurposeExample
Partial<T>Make all properties optionalPartial<User>
Required<T>Make all properties requiredRequired<Config>
Readonly<T>Make all properties readonlyReadonly<State>
Pick<T, K>Select specific properties`Pick<User, "id" \"name">`
Omit<T, K>Remove specific propertiesOmit<User, "password">
Record<K, V>Object type with key/value typesRecord<string, number>
Exclude<T, U>Remove types from a unionExclude<Status, "deleted">
Extract<T, U>Keep only matching union membersExtract<Event, {type: "click"}>
NonNullable<T>Remove null and undefined`NonNullable<string \null>`
ReturnType<T>Extract function return typeReturnType<typeof fetch>
Parameters<T>Extract function parameter typesParameters<typeof setTimeout>
Awaited<T>Unwrap Promise typesAwaited<Promise<string>>
NoInfer<T>Prevent inference on a type parameterNoInfer<T> in default args

Runtime Options

RuntimeKey StrengthsTypeScript Support
Node.jsLargest ecosystem, widest deployment, mature toolingVia tsc, ts-node, tsx, esbuild, or swc
DenoBuilt-in TypeScript, secure by default, web-standard APIsNative — no build step required
BunFastest startup, built-in bundler/test runner/package managerNative — runs .ts files directly
Cloudflare WorkersEdge computing, V8 isolates, global deploymentVia Wrangler with esbuild under the hood

Choosing a Runtime

  • Building a production server or API? Node.js has the broadest library support and hosting options.
  • Want built-in TypeScript with no config? Deno runs .ts natively with LSP and formatter included.
  • Need maximum startup speed or an all-in-one tool? Bun combines runtime, bundler, package manager, and test runner.
  • Deploying at the edge? Cloudflare Workers provide sub-millisecond cold starts globally.

Best Practices

  1. Enable strict mode in every project. It enables strictNullChecks, noImplicitAny, strictFunctionTypes, and other flags that catch real bugs.
  2. Avoid any — it disables all type checking. Use unknown when the type is truly unknown, then narrow with type guards.
  3. Prefer unknown over any for values of uncertain type: function parse(input: unknown): Config {if (typeof input === "object" && input!== null && "port" in input) {return input as Config;} throw new Error("Invalid config");}
  4. Use type narrowing instead of type assertions: // Prefer this if (typeof value === "string") {console.log(value.toUpperCase());} // Over this console.log((value as string).toUpperCase());
  5. Use branded types for domain identifiers to prevent mixing: type UserId = string & {__brand: "UserId"}; type OrderId = string & {__brand: "OrderId"}; function getUser(id: UserId): User {/*... */} // getUser(orderId) — compile error!
  6. Use satisfies to validate object shapes without widening types.
  7. Use const assertions for literal tuples and objects that should not be widened.
  8. Use discriminated unions for state machines and variant types instead of optional properties.
  9. Enable noUncheckedIndexedAccess to force undefined checks on dynamic property access.
  10. Keep any out of library boundaries — validate external data at the edge with Zod, io-ts, or similar runtime validators.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.42%
按下载量换算23

Claude

29.53%
按下载量换算21

Cursor

20.18%
按下载量换算14

Gemini CLI

8.4%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/tyler-r-kendrick/agent-skills --skill typescript 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills