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

typescriptTypeScript 开发

Agent Skill

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

总安装

559

周安装

24

GitHub Stars

公开资料未说明

下载量

196
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/thongdn-it/react-agent-skills --skill typescript

简介

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。

  • 适合生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构或定位布局问题。
  • 使用时需结合项目现有设计系统、路由和构建方式,避免生成孤立片段;涉及页面改动应配合本地预览确认效果。
  • 安装命令:npx skills add https://github.com/thongdn-it/react-agent-skills --skill typescript。
  • 建议确认仓库维护状态及是否会触发文件读写操作。

SKILL.md

TypeScript Best Practices

Comprehensive performance optimization guide for TypeScript applications. Contains 42 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 — CRITICAL (prevents exponential type expansion) - 1.6 Prefer Interfaces Over Type Intersections — CRITICAL (2-5× faster type resolution) - 1.7 Simplify Complex Mapped Types — CRITICAL (reduces type computation by 50-80%)

  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 skipLibCheck for Faster Builds — CRITICAL (20-40% faster compilation) - 2.4 Enable strictFunctionTypes for Faster Variance Checks — CRITICAL (enables optimized variance checking) - 2.5 Use isolatedModules for Single-File Transpilation — CRITICAL (80-90% faster transpilation with bundlers) - 2.6 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 microtask queue overhead) - 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 strictNullChecks — MEDIUM-HIGH (prevents null/undefined runtime errors) - 5.2 Prefer unknown Over any — MEDIUM-HIGH (forces type narrowing, prevents runtime errors) - 5.3 Use Assertion Functions for Validation — MEDIUM-HIGH (reduces validation boilerplate by 50-70%) - 5.4 Use const Assertions for Literal Types — MEDIUM-HIGH (preserves literal types, enables better inference) - 5.5 Use Exhaustive Checks for Union Types — MEDIUM-HIGH (prevents 100% of missing case errors at compile time) - 5.6 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×) - 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

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.42%
按下载量换算73

Claude

28%
按下载量换算55

Cursor

18.51%
按下载量换算36

Gemini CLI

8.52%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills