typescript-advanced-types

typescript-advanced-types is a skill for Claude Code, Codex from figueroaignacio/ignaciofigueroa.dev. It costs 57 tokens per session (4,421 once invoked), scanned A, a copy of typescript-advanced-types, MIT.

A guide to advanced TypeScript types, which let developers describe relationships between values and catch more mistakes before code runs. It covers generics, conditional types, mapped types, template literal types, and utility types.

In plain words
What is it for?
Use it to build reusable typed components, API clients, configuration objects, form validation, state management, type utilities, or to migrate JavaScript code to TypeScript.
Why use it?
It helps keep complex JavaScript applications type-safe as code is reused and expanded. Clearer type rules can expose incorrect data shapes during development instead of at runtime.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it to build reusable typed components, API clients, configuration objects, form validation, state management, type utilities, or to migrate JavaScript code to TypeScript.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/figueroaignacio/ignaciofigueroa.dev/typescript-advanced-types
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add figueroaignacio/ignaciofigueroa.dev --skill typescript-advanced-types
Clone the repo
git clone --depth 1 https://github.com/figueroaignacio/ignaciofigueroa.dev

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for typescript-advanced-types

README.md
[![agentmods](https://agentmods.dev/badge/skills/figueroaignacio/ignaciofigueroa.dev/typescript-advanced-types/github.svg)](https://agentmods.dev/skills/figueroaignacio/ignaciofigueroa.dev/typescript-advanced-types)
Your own site
<a href="https://agentmods.dev/skills/figueroaignacio/ignaciofigueroa.dev/typescript-advanced-types"><img src="https://agentmods.dev/badge/skills/figueroaignacio/ignaciofigueroa.dev/typescript-advanced-types/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for typescript-advanced-types

Your own site · 80×15
<a href="https://agentmods.dev/skills/figueroaignacio/ignaciofigueroa.dev/typescript-advanced-types"><img src="https://agentmods.dev/badge/skills/figueroaignacio/ignaciofigueroa.dev/typescript-advanced-types.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,421 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 81% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00057 $0.04421
Opus 5 $0.00028 $0.02210
Sonnet 5 $0.00011 $0.00884
Haiku 4.5 $0.00006 $0.00442

Measured 9d ago against content hash f5b106e75a30, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

typescript-advanced-types scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

81% identical to typescript-advanced-types — 436 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/typescript-advanced-types/SKILL.md · 701 lines

How it starts

The opening of the file, as written. The whole thing — 701 lines — stays where its author put it; the contents beside it link to each section on GitHub.

TypeScript Advanced Types

Comprehensive guidance for mastering TypeScript's advanced type system including generics, conditional types, mapped types, template literal types, and utility types for building robust, type-safe applications.

When to Use This Skill

  • Building type-safe libraries or frameworks
  • Creating reusable generic components
  • Implementing complex type inference logic
  • Designing type-safe API clients
  • Building form validation systems
  • Creating strongly-typed configuration objects
  • Implementing type-safe state management
  • Migrating JavaScript codebases to TypeScript

Core Concepts

1. Generics

Purpose: Create reusable, type-flexible components while maintaining type safety.

Basic Generic Function:

function identity<T>(value: T): T {
  return value;
}

const num = identity<number>(42); // Type: number
const str = identity<string>('hello'); // Type: string
const auto = identity(true); // Type inferred: boolean

Generic Constraints:

interface HasLength {
  length: number;
}

function logLength<T extends HasLength>(item: T): T {
  console.log(item.length);
  return item;
}

logLength('hello'); // OK: string has length
logLength([1, 2, 3]); // OK: array has length
logLength({ length: 10 }); // OK: object has length
// logLength(42);             // Error: number has no length

Multiple Type Parameters:

function merge<T, U>(obj1: T, obj2: U): T & U {
  return { ...obj1, ...obj2 };
}

const merged = merge({ name: 'John' }, { age: 30 });
// Type: { name: string } & { age: number }

2. Conditional Types

Purpose: Create types that depend on conditions, enabling sophisticated type logic.

Basic Conditional Type:

type IsString<T> = T extends string ? true : false;

type A = IsString<string>; // true
type B = IsString<number>; // false

Extracting Return Types:

type ReturnType<T> = T extends (...args: any[]) => infer R ? R : never;

function getUser() {
  return { id: 1, name: 'John' };
}

type User = ReturnType<typeof getUser>;
// Type: { id: number; name: string; }

Read the full file on GitHub · 701 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 701 lines · 57 tokens per session scan A f5b106e75a30

Subscribe to this mod's changes

typescript-advanced-types is a skill published in the GitHub repository figueroaignacio/ignaciofigueroa.dev (5 stars, last pushed 5d ago), licensed MIT. It adds 57 tokens to every session and 4,421 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 81% identical to typescript-advanced-types, differing in 436 lines, and is treated as a copy.

Related

Other skills, from other repositories

swiftui-dev

Use this skill for SwiftUI development, architecture, structure, performance, and Apple native app profiling. It combines.

Orkas-AI/Orkas · 3 tokens

statistical-analysis

Structured pipeline for statistical analysis deliverables — SPSS, R, Python. Covers reliability, chi-square, correlation, regression, assumption checking, and client-ready reporting.

winstonkoh87/Athena-Public · 37 tokens

distribution-physics

Analyzes market dynamics and go-to-market strategies using "Distribution First" architecture.

winstonkoh87/Athena-Public · 20 tokens

cirq

Google quantum computing framework. Use when targeting Google Quantum AI hardware, designing noise-aware circuits, or running quantum characterization experiments. Best for Google hardware, noise modeling, and low-level circuit design. For IBM hardware use qiskit; for quantum ML with autodiff use pennylane; for…

LeonChaoX/qinyan-academic-skills · 67 tokens

qiskit

IBM quantum computing framework. Use when targeting IBM Quantum hardware, working with Qiskit Runtime for production workloads, or needing IBM optimization tools. Best for IBM hardware execution, quantum error mitigation, and enterprise quantum computing. For Google hardware use cirq; for gradient-based quantum ML use…

LeonChaoX/qinyan-academic-skills · 73 tokens

modal

Run Python code in the cloud with serverless containers, GPUs, and autoscaling. Use when deploying ML models, running batch processing jobs, scheduling compute-intensive tasks, or serving APIs that require GPU acceleration or dynamic scaling.

LeonChaoX/qinyan-academic-skills · 46 tokens