Mastering Typescript Skill
Description
Claude Code skill for enterprise-grade TypeScript development with type-safe patterns, modern tooling, and framework integration (React, NestJS)
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Mastering TypeScript Skill
Master enterprise-grade TypeScript development with type-safe patterns, modern tooling, and framework integration.
Overview
This skill provides comprehensive guidance for TypeScript 5.9+ development, covering:
- Type System Mastery: Generics, mapped types, conditional types, satisfies operator
- Enterprise Patterns: Error handling, validation with Zod, project architecture
- React Integration: Type-safe components, hooks, state management (Zustand, Redux Toolkit)
- NestJS Development: Scalable APIs, DTOs, authentication, RBAC
- Modern Toolchain: Vite 7, pnpm, ESLint 9 flat config, Vitest
- Cross-Language Insights: TypeScript compared with Java, Python, C#
Quick Start
# Initialize TypeScript project with ESM
pnpm create vite@latest my-app --template vanilla-ts
cd my-app && pnpm install
# Configure strict TypeScript
cat > tsconfig.json << 'EOF'
{
"compilerOptions": {
"target": "ES2024",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true
}
}
EOF
When to Use This Skill
Use when:
- Building type-safe React, NestJS, or Node.js applications
- Migrating JavaScript codebases to TypeScript
- Implementing advanced type patterns (generics, mapped types, conditional types)
- Configuring modern TypeScript toolchains
- Designing type-safe API contracts with Zod validation
Installing with Skilz (Universal Installer)
The recommended way to install this skill across different AI coding agents is using the **skilz** universal installer.
Install Skilz
pip install skilz
Claude Code
Install to user home (available in all projects):
skilz install -g https://github.com/SpillwaveSolutions/mastering-typescript-skill
Install to current project only:
skilz install -g https://github.com/SpillwaveSolutions/mastering-typescript-skill --project
Op
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11