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

typescriptTypeScript 开发

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

20,018

周安装

802

GitHub Stars

131

下载量

6,480
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/pproenca/dot-skills --skill typescript

简介

跨类型系统、编译器配置、异步模式和模块组织的 45 个 TypeScript 优化规则。

  • 涵盖 8 个优先级类别,从类型系统性能和编译器配置(关键影响)到高级模式,具有量化的性能提升(构建速度加快 30-90%,类型分辨率提高 2-5 倍)
  • 包括 tsconfig.json 优化、异步/等待模式、模块组织和类型安全的明确规则以及可测量的结果(例如,通过增量编译“加快 50-90% 的重建速度”,通过 Set/Map 查找“O(n) 到 O(1)”)
  • 按影响级别和规则前缀(type-、tscfg-、async-、module-、safety-、mem-、runtime-、advanced-)进行组织,以指导自动重构和代码生成
  • 通过纯类型导入、独立声明和项目引用等实用模式解决常见 TypeScript 错误(TS2322、TS2339、类型分配失败)和编译瓶颈

SKILL.md

TypeScript Best Practices

Comprehensive performance optimization guide for TypeScript applications. Contains 45 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation.

When to Apply

Reference these guidelines when:

  • Configuring tsconfig.json for a new or existing project
  • Writing complex type definitions or generics
  • Optimizing async/await patterns and data fetching
  • Organizing modules and managing imports
  • Reviewing code for compilation or runtime performance

Rule Categories by Priority

PriorityCategoryImpactPrefix
1Type System PerformanceCRITICALtype-
2Compiler ConfigurationCRITICALtscfg-
3Async PatternsHIGHasync-
4Module OrganizationHIGHmodule-
5Type Safety PatternsMEDIUM-HIGHsafety-
6Memory ManagementMEDIUMmem-
7Runtime OptimizationLOW-MEDIUMruntime-
8Advanced PatternsLOWadvanced-

Table of Contents

  1. Type System PerformanceCRITICAL

- 1.1 Add Explicit Return Types to Exported Functions — CRITICAL (30-50% faster declaration emit) - 1.2 Avoid Deeply Nested Generic Types — CRITICAL (prevents exponential instantiation cost) - 1.3 Avoid Large Union Types — CRITICAL (quadratic O(n²) comparison cost) - 1.4 Extract Conditional Types to Named Aliases — CRITICAL (enables compiler caching, prevents re-evaluation) - 1.5 Limit Type Recursion Depth — HIGH (prevents exponential type expansion when applicable) - 1.6 Prefer Interfaces Over Type Intersections — CRITICAL (2-5× faster type resolution) - 1.7 Simplify Complex Mapped Types — HIGH (reduces type computation by 50-80% when applicable)

  1. Compiler ConfigurationCRITICAL

- 2.1 Configure Include and Exclude Properly — CRITICAL (prevents scanning thousands of unnecessary files) - 2.2 Enable Incremental Compilation — CRITICAL (50-90% faster rebuilds) - 2.3 Enable isolatedDeclarations for Parallel Declaration Emit — CRITICAL (enables parallel.d.ts generation without type-checker) - 2.4 Enable skipLibCheck for Faster Builds — CRITICAL (20-40% faster compilation) - 2.5 Enable strictFunctionTypes for Faster Variance Checks — CRITICAL (enables optimized variance checking) - 2.6 Use erasableSyntaxOnly for Node.js Native TypeScript — HIGH (prevents 100% of Node.js type-stripping runtime errors) - 2.7 Use isolatedModules for Single-File Transpilation — CRITICAL (80-90% faster transpilation with bundlers) - 2.8 Use Project References for Large Codebases — CRITICAL (60-80% faster incremental builds)

  1. Async PatternsHIGH

- 3.1 Annotate Async Function Return Types — HIGH (prevents runtime errors, improves inference) - 3.2 Avoid await Inside Loops — HIGH (N× faster for N iterations, 10 users = 10× improvement) - 3.3 Avoid Unnecessary async/await — HIGH (eliminates trivial Promise wrappers and improves stack traces) - 3.4 Defer await Until Value Is Needed — HIGH (enables implicit parallelization) - 3.5 Use Promise.all for Independent Operations — HIGH (2-10× improvement in I/O-bound code)

  1. Module OrganizationHIGH

- 4.1 Avoid Barrel File Imports — HIGH (200-800ms import cost, 30-50% larger bundles) - 4.2 Avoid Circular Dependencies — HIGH (prevents runtime undefined errors and slow compilation) - 4.3 Control @types Package Inclusion — HIGH (prevents type conflicts and reduces memory usage) - 4.4 Use Dynamic Imports for Large Modules — HIGH (reduces initial bundle by 30-70%) - 4.5 Use Type-Only Imports for Types — HIGH (eliminates runtime imports for type information)

  1. Type Safety PatternsMEDIUM-HIGH

- 5.1 Enable noUncheckedIndexedAccess — MEDIUM-HIGH (prevents 100% of unchecked index access errors at compile time) - 5.2 Enable strictNullChecks — MEDIUM-HIGH (prevents null/undefined runtime errors) - 5.3 Prefer unknown Over any — MEDIUM-HIGH (forces type narrowing, prevents runtime errors) - 5.4 Use Assertion Functions for Validation — MEDIUM-HIGH (reduces validation boilerplate by 50-70%) - 5.5 Use const Assertions for Literal Types — MEDIUM-HIGH (preserves literal types, enables better inference) - 5.6 Use Exhaustive Checks for Union Types — MEDIUM-HIGH (prevents 100% of missing case errors at compile time) - 5.7 Use Type Guards for Runtime Type Checking — MEDIUM-HIGH (eliminates type assertions, catches errors at boundaries)

  1. Memory ManagementMEDIUM

- 6.1 Avoid Closure Memory Leaks — MEDIUM (prevents retained references in long-lived callbacks) - 6.2 Avoid Global State Accumulation — MEDIUM (prevents unbounded memory growth) - 6.3 Clean Up Event Listeners — MEDIUM (prevents unbounded memory growth) - 6.4 Clear Timers and Intervals — MEDIUM (prevents callback retention and repeated execution) - 6.5 Use WeakMap for Object Metadata — MEDIUM (prevents memory leaks, enables automatic cleanup)

  1. Runtime OptimizationLOW-MEDIUM

- 7.1 Avoid Object Spread in Hot Loops — LOW-MEDIUM (reduces object allocations by N×) - 7.2 Cache Property Access in Loops — LOW-MEDIUM (reduces property lookups by N× in hot paths) - 7.3 Prefer Native Array Methods Over Lodash — LOW-MEDIUM (eliminates library overhead, enables tree-shaking) - 7.4 Use for-of for Simple Iteration — LOW-MEDIUM (reduces iteration boilerplate by 30-50%) - 7.5 Use Modern String Methods — LOW-MEDIUM (2-5× faster than regex for simple patterns) - 7.6 Use Set/Map for O(1) Lookups — LOW-MEDIUM (O(n) to O(1) per lookup)

  1. Advanced PatternsLOW

- 8.1 Use Branded Types for Type-Safe IDs — LOW (prevents mixing incompatible ID types) - 8.2 Use satisfies for Type Validation with Inference — LOW (prevents property access errors, enables 100% autocomplete accuracy) - 8.3 Use Template Literal Types for String Patterns — LOW (prevents 100% of string format errors at compile time)

References

  1. https://github.com/microsoft/TypeScript/wiki/Performance
  2. https://www.typescriptlang.org/docs/handbook/
  3. https://v8.dev/blog
  4. https://nodejs.org/en/learn/diagnostics/memory

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

25.26%
按下载量换算1,637

OpenCode

22.79%
按下载量换算1,477

Cursor

18.39%
按下载量换算1,192

Gemini CLI

11.82%
按下载量换算766

Antigravity

7.35%
按下载量换算476

Codex

3.28%
按下载量换算213

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills