원클릭으로
lint
Contains commands to lint, format, type check, test, and build the project. Use when the user explicitly invokes the lint skill.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Contains commands to lint, format, type check, test, and build the project. Use when the user explicitly invokes the lint skill.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Automate browser interactions, test web pages and work with Playwright tests.
Scans the repository for optimization opportunities — complexity, performance issues, large files, and maintainability problems — and fixes them one at a time with user confirmation. Use only when the user explicitly invokes this skill.
When the user invokes this skill, the agent reflects on the most important lessons learned recently and suggests adding a new rule to AGENTS.md to prevent the same issue from recurring. Use when the user explicitly invokes the remember skill.
| name | lint |
| description | Contains commands to lint, format, type check, test, and build the project. Use when the user explicitly invokes the lint skill. |
| disable-model-invocation | true |
When this skill is invoked, run the following commands in order.
bun run check-write: Runs linter and formatter and fixes trivial issues
bun run type-check: Runs type checking
bun run test: Runs tests
bun run build: Runs build
When any of the commands fail, start fixing the issues one by one instead of explaining the error.
If the output of the first command contains unsafe, but fixable errors. you may use the bun run check-write --unsafe command to fix them.