.agents/skills/coding-type-script/SKILL.md
Best practices for clean and maintainable code in TypeScript. To be used for writing TypeScript code that is easy to read, maintain, and follows industry standards.
npx skillsauth add albertobasalo/astro-bookings-express coding-type-scriptInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
import/export) instead of CommonJS.kebab-case.{pattern}.ts. Ex: user-login.service.tsany.types for data structures in its own file.as const for constant values to infer literal types.interfaces for class contract behavior in its own file.null and undefined where possible; prefer optional properties.Partial, Pick, Omit).testing
Writes and maintains unit tests using Vitest. To be used for testing business logic in services and utilities.
testing
Writes end-to-end tests with Playwright. To be used for verifying acceptance criteria through automated tests.
testing
Creates a detailed implementation plan for a given feature specification. To be used for planning the implementation of feature specifications.
testing
Writes the specification with problem definition, solution outline, and acceptance criteria. To be used to specify a feature, bug correction, or enhancement.