How this skill is triggered — by the user, by Claude, or both
Slash command
/biome:biomeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Biome is used for linting and formatting. The PostToolUse hook automatically runs `biome check --fix` on file changes.
Biome is used for linting and formatting. The PostToolUse hook automatically runs biome check --fix on file changes.
When modifying files, fix both errors AND warnings reported by Biome. Don't leave warnings behind.
After editing a file:
bunx biome check <file> to verify# Check a specific file
bunx biome check path/to/file.ts
# Check and fix a file
bunx biome check --fix path/to/file.ts
# Check entire project
bunx biome check .
# Format only (no linting)
bunx biome format --write path/to/file.ts
# Lint only (no formatting)
bunx biome lint path/to/file.ts
--unsafe flag when appropriate)Biome config is in biome.json or biome.jsonc at project root. Respect project-specific rules.
npx claudepluginhub kingstinct/.github --plugin biomeProvides Biome commands for formatting, linting, and organizing imports in JavaScript, TypeScript, JSX/TSX, JSON, CSS projects. Use for zero-config setup, fast CI checks, or ESLint/Prettier migration.
Applies Biome linting for accessibility, complexity, correctness rules and code quality enforcement in JavaScript/TypeScript projects via check commands and config.
Installs Biome linter with Ultracite preset, creates biome.jsonc config, and sets up a Claude Code Stop hook for auto-fix on changed JS/TS files.