Agent skill
ts
TypeScript conventions and type-safe patterns.
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/ts-lambdalisue-dotfiles
SKILL.md
Conventions
- Types:
strict: true, type guards over assertions - Null Safety: Optional chaining (
?.), nullish coalescing (??) - Style:
interfacefor objects,typefor unions,import typefor types - Tools: oxlint for linting, Vitest for testing
Testing
typescript
describe("feature", () => {
it("behavior description", () => {
// AAA pattern, expect API
});
});
Didn't find tool you were looking for?