typescript-expert
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Tool: SKILL.md [1/2] Description: --- name: typescript-expert description: >- TypeScript and JavaScript expert with deep knowledge of type-level programming, performance optimization, monorepo management, migration strategies, and modern tooling. Use PROACTIVELY for any TypeScript/JavaScript issues including complex type gymnastics, build performance, debugging, and architectural decisions.
Tool: SKILL.md [2/2] Description: ESLint + Prettier | Biome | Need much faster speed, okay with fewer rules | Low (1 day) | | TSC for linting | Type-check only | Have 100+ files, need faster feedback | Medium (2-3 days) | | Lerna | Nx/Turborepo | Need caching, parallel builds | High (1 week) | | CJS | ESM | Node 18+, modern tooling | High (varies) | ### Monorepo Management **Nx vs Turborepo Decision Matrix** - Choose **Turborepo** if: Simple structure, need speed, <20 packages - Choose **Nx** if
Malicious tool definition detected
Tool: references/tsconfig-strict.json Description: { "$schema": "https://json.schemastore.org/tsconfig", "display": "Strict TypeScript 5.x", "compilerOptions": { // ========================================================================= // STRICTNESS (Maximum Type Safety) // ========================================================================= "strict": true, "noUncheckedIndexedAccess": true, "noImplicitOverride": true, "noPropertyAccessFromIndexSignature": true, "exactOptionalPropertyType
Malicious tool definition detected
Tool: references/typescript-cheatsheet.md [1/2] Description: # TypeScript Cheatsheet ## Type Basics ```typescript // Primitives const name: string = 'John' const age: number = 30 const isActive: boolean = true const nothing: null = null const notDefined: undefined = undefined // Arrays const numbers: number[] = [1, 2, 3] const strings: Array<string> = ['a', 'b', 'c'] // Tuple const tuple: [string, number] = ['hello', 42] // Object const user: { name: string; age: number } = { name: 'John', age:
Tool: references/typescript-cheatsheet.md [2/2]
Malicious tool definition detected
Tool: references/utility-types.ts [1/2] Description: /** * TypeScript Utility Types Library * * A collection of commonly used utility types for TypeScript projects. * Copy and use as needed in your projects. */ // ============================================================================= // BRANDED TYPES // ============================================================================= /** * Create nominal/branded types to prevent primitive obsession.
Tool: references/utility-types.ts [2/2] Description: unknown.
Malicious tool definition detected
Tool: scripts/ts_diagnostic.py Description: #!/usr/bin/env python3 """ TypeScript Project Diagnostic Script Analyzes TypeScript projects for configuration, performance, and common issues.