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

type-value-space类型值空间

Agent Skill

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

总安装

196

周安装

8

GitHub Stars

2

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,辅助项目协作管理。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕代码变更和协作事项进行整理。
  • 通过 GitHub 安装,使用 npx skills add 命令从 marius-townhouse/effective-typescript-skills 仓库添加技能。
  • 安装前需确认权限范围和维护状态,避免触发不必要的联网或文件操作。
  • type-value-space 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Know How to Tell Whether a Symbol Is in Type Space or Value Space

Overview

Every symbol in TypeScript exists in type space, value space, or both.

The same name can refer to completely different things depending on context. Understanding this distinction is essential for reading TypeScript code correctly.

When to Use This Skill

  • Debugging confusing type errors
  • Understanding class vs interface behavior
  • Using typeof correctly
  • Destructuring with type annotations
  • Understanding enum behavior

The Iron Rule

ALWAYS determine whether you're in type space or value space before interpreting a symbol.

Remember:

  • Types are erased at runtime (use TypeScript Playground to verify)
  • Classes introduce BOTH a type AND a value
  • typeof means different things in each space
  • Destructuring syntax differs from type annotation syntax

Detection: Same Name, Different Meaning

// Same name, different entities!
interface Cylinder {
  radius: number;
  height: number;
}
const Cylinder = (radius: number, height: number) => ({ radius, height });

// This refers to the VALUE (function), not the TYPE (interface)
if (shape instanceof Cylinder) {
  // instanceof is a runtime operator - uses value space
}

The Two Spaces

Type Space (Erased at Runtime)

type StringAlias = string;     // Type alias
interface Person { name: string; }  // Interface
type T = typeof myVar;         // Type-level typeof

Value Space (Exists at Runtime)

const x = 123;                 // Variable
function add(a, b) { return a + b; }  // Function
const t = typeof myVar;        // Runtime typeof (returns string)

Both Spaces (class and enum)

class MyClass {
  value: number = 0;
}

// As a type: describes the shape of instances
const instance: MyClass = new MyClass();

// As a value: the constructor function
const ctor = MyClass;  // typeof ctor is typeof MyClass

Context Determines Space

After : or as = Type Space

const alice: Person = { name: 'Alice' };
//           ^^^^^^ Type space

const bob = someValue as Person;
//                       ^^^^^^ Type space

After = = Value Space

const x = Person;  // Value space (error if Person is only a type)

Function Signatures Alternate

function email(to: Person, subject: string, body: string): Response {
//             ^^          ^^^^^^^          ^^^^           ^^^^^^^^ Types
//       ^^^^^^^ ^^        ^^^^^^^ ^^^^^^   ^^^^ ^^^^              Values
}

typeof: Different in Each Space

Type Space typeof

const person = { name: 'Alice', age: 30 };

type PersonType = typeof person;
//   ^? type PersonType = { name: string; age: number }

// Gets the TypeScript type of a value

Value Space typeof

const person = { name: 'Alice', age: 30 };

const t = typeof person;  // "object"
// JavaScript's runtime typeof - only 8 possible values:
// "string", "number", "boolean", "undefined",
// "object", "function", "symbol", "bigint"

Other Dual-Meaning Constructs

ConstructType SpaceValue Space
typeofTypeScript type of valueJS runtime type (8 options)
thisType of thisJS this keyword
&, `\`Intersection, unionBitwise AND, OR
constas const contextVariable declaration
extendsSubtype/constraintSubclass
inMapped typesfor...in loops
!Non-null assertionLogical NOT

Property Access: [] vs .

interface Person {
  first: string;
  last: string;
}

// Value space: both work
const name1 = person['first'];
const name2 = person.first;

// Type space: ONLY brackets work
type First = Person['first'];     // OK: string
type First2 = Person.first;       // Error!

Common Mistake: Destructuring with Types

Wrong: Type Names in Value Position

function email({
  to: Person,      // Error! 'Person' implicitly has 'any' type
  subject: string, // Error! 'string' implicitly has 'any' type
}) { }
// This creates variables named Person and string!

Right: Separate Types from Destructuring

function email(
  { to, subject, body }: { to: Person; subject: string; body: string }
) { }
// Destructures values, then annotates the whole parameter

Using the TypeScript Playground

The Playground shows what's erased:

interface Person { name: string; }  // Disappears in JS
type StringType = string;           // Disappears in JS

class MyClass { }                   // Stays (has runtime value)
const x = 42;                       // Stays (has runtime value)

If a symbol disappears in the JS output, it was in type space only.

Pressure Resistance Protocol

1. "instanceof Should Work with Interfaces"

Pressure: "Why doesn't x instanceof MyInterface work?"

Response: instanceof is a runtime operator. Interfaces don't exist at runtime.

Action: Use type guards or discriminated unions instead.

2. "typeof Should Give Me the Full Type"

Pressure: "Why is typeof x just 'object'?"

Response: You're using value-space typeof. For the TypeScript type, use it in a type annotation.

Action: type T = typeof x for the full TypeScript type.

Red Flags - STOP and Reconsider

  • instanceof with an interface or type alias
  • Expecting runtime typeof to distinguish object shapes
  • Destructuring that creates unexpected variable names
  • Type errors mentioning "cannot be used as a value"

Common Rationalizations (All Invalid)

ExcuseReality
"Class and interface are the same"Classes have runtime values; interfaces don't
"typeof works the same everywhere"Completely different meaning in type vs value space
"I can destructure with type names"Destructuring uses value space; annotations use type space

Quick Reference

// Type space indicators:
type X = ...       // After 'type'
interface X { }    // After 'interface'
x: Type            // After ':'
as Type            // After 'as'

// Value space indicators:
const x = ...      // After '='
x instanceof Y     // instanceof operand
typeof x           // Without type annotation

// Both spaces:
class X { }        // Introduces type and value
enum X { }         // Introduces type and value

The Bottom Line

Context determines whether a symbol refers to a type or a value.

The same name can mean completely different things. When code is confusing, first determine which space you're in. Use the TypeScript Playground to see what gets erased - that's your type space.

Reference

Based on "Effective TypeScript" by Dan Vanderkam, Item 8: Know How to Tell Whether a Symbol Is in the Type Space or Value Space.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.06%
按下载量换算23

Claude

28.83%
按下载量换算18

Cursor

19.22%
按下载量换算12

Gemini CLI

9.31%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills