bumping-biome

Update the Biome package version and synchronize biome.jsonc schema references.

419|15|Updated Oct 31, 2025
One-click install
npx skills add https://github.com/prisma/prisma-next --skill bumping-biome
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: bumping-biome
Source: https://github.com/prisma/prisma-next/tree/main/.claude/skills/bumping-biome
Command: npx skills add https://github.com/prisma/prisma-next --skill bumping-biome

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates the process of updating the Biome linter and formatter package across a project, ensuring configuration files are synchronized with the new version and running necessary checks.

Core Features & Use Cases

  • Version Bumping: Updates @biomejs/biome to a specified or the latest version using pnpm.
  • Configuration Alignment: Renames biome.json to biome.jsonc and updates the $schema property to match the new Biome version.
  • Linting and Fixing: Executes pnpm -w lint:fix to apply formatting and linting rules, reporting any regressions.
  • Unsafe Fixes: Offers to run pnpm -w lint:fix:unsafe for more aggressive, potentially risky fixes.
  • Use Case: After a pnpm update command that might have inadvertently updated Biome, or when a new Biome release is out, use this skill to ensure the project is up-to-date and correctly configured.

Quick Start

Update the biome package to the latest version and align configurations.

Frequently Asked Questions about bumping-biome

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I update the Biome linter to the latest version using pnpm?

To update the Biome linter, this Skill bumps the @biomejs/biome package version across your repository using pnpm. It defaults to the latest version unless an explicit version is specified, ensuring your project dependencies are current.

How do I align biome.json schema references after a version update?

To align configuration after a Biome version update, the Skill renames biome.json to biome.jsonc and updates the $schema property to match the new version. This synchronizes your config file with the updated linter rules.

Can I automatically apply linting and formatting fixes after updating Biome?

Yes, you can automatically apply linting and formatting fixes after updating Biome. The Skill executes pnpm -w lint:fix to apply safe rules and reports any regressions, ensuring codebase compliance with the new version.

What is the best way to handle risky code refactoring when upgrading Biome?

To handle risky code refactoring during a Biome upgrade, the Skill offers to run pnpm -w lint:fix:unsafe. This applies more aggressive, potentially risky fixes beyond standard safe lint corrections.

Why does running pnpm update break my Biome configuration?

Running pnpm update can break Biome configuration by inadvertently updating the package without synchronizing biome.jsonc schema references. This Skill fixes the breakage by aligning the config and running lint checks.