AgentSkillsCN

check

运行TypeScript类型检查、ESLint以及Prettier格式化。在将代码返回给用户之前,务必先运行这些检查。

SKILL.md
--- frontmatter
name: check
description: Run TypeScript type check, ESLint, and Prettier formatting. Always run this check before returning code to the user.

Run all code quality checks and formatting:

bash
npx tsc --noEmit && bun run lint && bun run format

This runs TypeScript type checking, ESLint with auto-fix, and Prettier formatting across the project.