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

coding-typescriptcoding TypeScript 命令行

Agent Skill

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

总安装

470

周安装

20

GitHub Stars

4

下载量

165
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill coding-typescript

简介

coding-typescript 提供 TypeScript 5.x 严格模式和泛型支持,适用于 Web 应用开发。

  • 可用于迁移 JavaScript 项目或实现复杂类型逻辑,不支持 plain JS。
  • 支持装饰器和条件类型,但需配置 tsconfig 启用 strict 模式。
  • 安装前请确认项目是否已设置类型检查选项,避免运行时错误。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

coding-typescript

Purpose

This skill equips the AI to assist with TypeScript 5.x development, focusing on advanced features like strict mode, generics, decorators, mapped and conditional types, utility types, and tsconfig configuration. Use it to generate, debug, and optimize TypeScript code in real-time.

When to Use

Apply this skill when working on projects requiring type safety, such as web apps with React or Node.js backends. Use it for code reviews, refactoring legacy JavaScript to TypeScript, or implementing complex type logic in strict mode environments. Avoid it for plain JavaScript unless migration is planned.

Key Capabilities

  • Enforce strict mode via tsconfig: Set "strict": true in tsconfig.json to catch errors like implicit any.
  • Handle generics: Define reusable functions like function identity<T>(arg: T): T {return arg;}.
  • Use decorators: Apply class decorators such as @Component from frameworks like Angular.
  • Work with mapped types: Create types like type Partial<T> = {[P in keyof T]?: T[P];}.
  • Implement conditional types: Use constructs like type IsString<T> = T extends string? true: false;.
  • Leverage utility types: Apply Omit<T, K> or Pick<T, K> for type manipulation.
  • Configure tsconfig: Specify options like "target": "es2022" and "module": "esnext" for builds.

Usage Patterns

To accomplish tasks, invoke this skill by prefixing queries with the skill ID, e.g., "Use coding-typescript to write a generic array filter function." Always include specific TypeScript version details (5.x) in requests. For code generation, provide context like "Generate a TypeScript class with decorators in strict mode." When debugging, supply error messages and code snippets for targeted fixes. Integrate with IDEs by referencing tsconfig paths, e.g., run tsc --project./tsconfig.json before AI-assisted edits.

Common Commands/API

Use the following TypeScript CLI commands for tasks:

  • Compile with strict mode: tsc --strict index.ts to enforce all strict options.
  • Watch for changes: tsc -w --noEmitOnError to monitor files and block emits on errors.
  • Generate declaration files: tsc --declaration to output.d.ts files for types. For API patterns, reference TypeScript's compiler API in code: Import from 'typescript' and use ts.createProgram() for programmatic compilation. If external tools like ESLint are involved, set env vars like $TSCONFIG_PATH for custom configs. Code snippet for a generic function:
function reverse<T>(array: T[]): T[] {
  return array.reverse();
}

For decorators, apply like this:

function logged(target: any) { console.log(target); }
@logged
class Example {}

Integration Notes

Integrate this skill with Node.js projects by ensuring TypeScript is installed via npm install typescript@5.x. For auth in related services (e.g., if fetching types from a remote API), use env vars like $TYPESCRIPT_API_KEY in scripts. In tsconfig.json, add paths for modules: "paths": {"@app/*": ["src/*"]}. When combining with other skills, chain outputs, e.g., use "coding-javascript" first for JS parts, then pipe to this for TypeScript conversion. Ensure compatibility by targeting ES modules: Set "module": "esnext" and use bundlers like Webpack.

Error Handling

To handle TypeScript errors, always enable strict mode and use tsc --pretty for readable output. For type errors, check for specifics like "Type 'string' is not assignable to type 'number'" and suggest fixes via code snippets. Implement try-catch in runtime code, e.g.:

try {
  const result = someFunction(); // Assume it might throw
} catch (error) {
  console.error(`Error: ${(error as Error).message}`);
}

For build errors, rerun tsc with --diagnostics to get detailed reports. If AI-generated code fails, re-query with the exact error message, e.g., "Fix this TypeScript error: 'TS2322: Type X is not assignable to type Y' in the following code: [snippet]".

Concrete Usage Examples

  1. Example 1: Generating a generic utility type Query: "Use coding-typescript to create a mapped type that makes all properties of an interface optional." Response: Generate code like type Optional<T> = {[K in keyof T]?: T[K];}. Then, apply it: interface User {name: string; age: number;} type PartialUser = Optional<User>;.
  2. Example 2: Configuring tsconfig for strict mode Query: "Set up a tsconfig.json for a project with strict mode and decorators." Provide: Create a file with {"compilerOptions": {"strict": true, "experimentalDecorators": true, "target": "es2022"}}. Then, compile with tsc --project tsconfig.json to verify.

Graph Relationships

  • Related to cluster: "coding" (e.g., links to "coding-javascript" for shared patterns).
  • Tagged with: "typescript", "ts", "coding" (connects to skills like "coding-react" for TypeScript-based frameworks).
  • Dependencies: Requires "general-coding" for basic syntax, and integrates with "tooling-npm" for package management.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.73%
按下载量换算56

Claude

30.36%
按下载量换算50

Cursor

18.67%
按下载量换算31

Gemini CLI

9.2%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills