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

context-type-inference上下文类型推断

Agent Skill

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

总安装

190

周安装

8

GitHub Stars

2

下载量

67
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/marius-townhouse/effective-typescript-skills --skill context-type-inference

简介

context-type-inference 解释 TypeScript 类型推断中的上下文依赖机制。

  • 当值被提取到变量时可能丢失使用位置的类型线索,导致意外类型错误。
  • 提供注解、const 断言或 satisfies 操作符等恢复上下文的技术方案。
  • 安装前建议确认 TypeScript 项目环境和编译器版本兼容性。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Understand How Context Is Used in Type Inference

Overview

Separating a value from its context can cause type errors.

TypeScript infers types based on both the value AND where it's used. When you extract a value to a variable, you lose context, which can cause surprising type errors.

When to Use This Skill

  • Extracting a value to a constant causes type errors
  • Callback parameters have wrong types
  • Tuple types becoming array types
  • String literals becoming general strings

The Iron Rule

When extraction breaks types, restore context with:
annotations, const assertions, or satisfies.

Remember:

  • TypeScript uses context from function parameters
  • Extracted values lose that context
  • as const prevents widening
  • satisfies preserves context with validation

Detection: Lost Context

type Language = 'JavaScript' | 'TypeScript' | 'Python';

function setLanguage(language: Language) { /* ... */ }

setLanguage('JavaScript');  // OK - context from parameter

let language = 'JavaScript';  // Inferred as string (widened)
setLanguage(language);
//          ~~~~~~~~
// Argument of type 'string' is not assignable to 'Language'

The value was widened to string when extracted.

Solution 1: Type Annotation

let language: Language = 'JavaScript';
setLanguage(language);  // OK

The annotation provides the context.

Solution 2: const Declaration

const language = 'JavaScript';
//    ^? const language: "JavaScript"
setLanguage(language);  // OK

const variables get narrower types (literal types).

Solution 3: const Assertion

let language = 'JavaScript' as const;
//  ^? let language: "JavaScript"
setLanguage(language);  // OK

as const prevents widening even with let.

Tuple Types: A Common Case

function panTo(where: [number, number]) { /* ... */ }

panTo([10, 20]);  // OK - inferred as tuple from context

const loc = [10, 20];
//    ^? const loc: number[]  (array, not tuple!)
panTo(loc);
//    ~~~
// Argument of type 'number[]' is not assignable to '[number, number]'

Fix with Annotation

const loc: [number, number] = [10, 20];
panTo(loc);  // OK

Fix with const Assertion

const loc = [10, 20] as const;
//    ^? const loc: readonly [10, 20]

Note: as const makes it readonly. If the function expects a mutable tuple, this won't work:

panTo(loc);
//    ~~~
// 'readonly [10, 20]' is not assignable to '[number, number]'

The function should accept readonly [number, number] if it doesn't mutate the input.

Object Properties

type Point = [number, number];

const capitals1 = { ny: [-73.7562, 42.6526], ca: [-121.4944, 38.5816] };
//    ^? { ny: number[]; ca: number[]; }  (arrays, not tuples)

const capitals2 = {
  ny: [-73.7562, 42.6526],
  ca: [-121.4944, 38.5816],
} satisfies Record<string, Point>;
//    ^? { ny: [number, number]; ca: [number, number]; }  (tuples!)

satisfies provides context while preserving precise types.

satisfies vs Annotation

const capitals3: Record<string, Point> = capitals2;
capitals3.pr;  // No error! Property 'pr' returns Point (but undefined at runtime)
//        ^? Point

capitals2.pr;
//        ~~
// Property 'pr' does not exist

satisfies keeps precise keys; annotation doesn't.

Callback Context

TypeScript infers callback parameter types from context:

// Types inferred from app.get declaration
app.get('/health', (request, response) => {
  //                ^? Request<...>
  //                          ^? Response<...>
  response.send('OK');
});

// Don't add redundant annotations:
app.get('/health', (request: express.Request, response: express.Response) => {
  // Redundant and verbose
});

Extracted Callbacks

// Context lost when callback is extracted
const handler = (request, response) => {
  //             ^? any    ^? any
  response.send('OK');
};

// Fix: Add types
const handler: express.RequestHandler = (request, response) => {
  //                                      ^? Request  ^? Response
  response.send('OK');
};

Object Methods

const config = {
  language: 'JavaScript' as const,
  //        ^? "JavaScript" (not string)
};

setLanguage(config.language);  // OK

Without as const, config.language would be string.

Deep const Assertions

const obj = {
  settings: {
    language: 'JavaScript',
    version: 4,
  }
} as const;
// ^? { readonly settings: { readonly language: "JavaScript"; readonly version: 4; } }

as const is deep - everything becomes readonly with literal types.

Pressure Resistance Protocol

1. "Just Add a Type Assertion"

Pressure: "I'll use as Language to fix it"

Response: Type assertions bypass safety. Use const or satisfies instead.

Action: Use as const for literal narrowing, not as Type.

2. "It Worked Inline"

Pressure: "Why doesn't it work when I extract it?"

Response: Context was lost. Restore it explicitly.

Action: Add annotation, use const, or use satisfies.

Red Flags - STOP and Reconsider

  • Type errors after extracting a value to a variable
  • Callback parameters typed as any
  • Tuples becoming arrays
  • String literals becoming string

Common Rationalizations (All Invalid)

ExcuseReality
"It's the same value"Same value, different context = different inferred type
"TypeScript should know"TypeScript needs context to infer precise types
"I'll use as to fix it"Use as const or satisfies, not type assertions

Quick Reference

type Lang = 'JS' | 'TS';
declare function setLang(l: Lang): void;

// DON'T: Lose context
let lang = 'JS';  // string
setLang(lang);    // Error

// DO: Annotation
let lang: Lang = 'JS';

// DO: const
const lang = 'JS';  // "JS"

// DO: const assertion
let lang = 'JS' as const;  // "JS"

// For objects: satisfies
const cfg = { lang: 'JS' } satisfies Record<string, Lang>;

The Bottom Line

Context matters for type inference.

When you extract a value, you may lose type context. Restore it with type annotations, const declarations, as const assertions, or satisfies. Understand which tool fits each situation.

Reference

Based on "Effective TypeScript" by Dan Vanderkam, Item 24: Understand How Context Is Used in Type Inference.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.43%
按下载量换算22

Claude

32.9%
按下载量换算22

Cursor

17.4%
按下载量换算12

Gemini CLI

8.56%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills