# Lint

> Contains commands to lint, format, type check, test, and build the project. Use when the user explicitly invokes the lint skill.

- Skill: `kovrichard/lint` (Agent Skill)
- Install (CLI): `npx skillmds@latest add kovrichard/lint`
- Raw SKILL.md: https://api.skillmd.com/api/skills/kovrichard/lint/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: kovrichard (https://skillmd.com/u/kovrichard)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/kovrichard/lint

---


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.

