.claude/skills/biome/SKILL.md
Biome JavaScript/TypeScript linter and formatter
npx skillsauth add usrrname/cursorrules biomeInstall 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.
Configure and use Biome for fast JavaScript/TypeScript linting and formatting.
If biome.json or biome.jsonc exists in the project:
biome.json or biome.jsonc for configurationbiome migrate from ESLint/Prettier configsbiome check for lint + format in CI{
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnusedVariables": "error"
}
}
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 80
}
}
# Check lint and format
biome check .
# Check with auto-fix
biome check --apply .
# Format only
biome format --write .
# Lint only
biome lint --apply .
/typescript - TypeScript best practices/react - React patterns that Biome enforcestesting
Test Distribution Analysis Command 🧪
development
Agent rule for refactoring existing code blocks or a feature by identifying language and applying only when refactor/improvement is requested
development
This skill guides a user to draft and clarify the intent and scope of a change or feature to be implemented. This skill can be used to create user stories, tasks, plans or other artifacts that will be used to implement code changes.
development
--- name: git-commit-push description: Enforces Git commit standards and conventions when committing and pushing code in Agent Mode. This rule is crucial for keeping track of changes made by agents, and should run whenever the user expresses they want to commit or push code changes made by the agent. This rule should be followed when: 1. the user wants to commit code, the git aliases, 'gpu' or 'gc', 'gcm' were submitted by the user. This rule will ask the user if they would prefer to auto-run th