typescript

Installation
SKILL.md

TypeScript Guidelines

Core Rules

  • Always use type instead of interface in TypeScript.
  • TypeScript 5.5+ automatically infers type predicates in .filter() callbacks. Don't add manual type assertions:
    // Good - TypeScript infers the narrowed type automatically
    const filtered = items.filter((x) => x !== undefined);
    
Installs
1
First Seen
14 days ago
typescript — aiagentskills/skills