agentsclimarketplace

Biome complete

Skill pantheon-org/tekhne/skills/development/biome-complete

Agents Skills

Install
npx -y skills add pantheon-org/tekhne --skill biome-complete

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 9 stars9 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Complete Biome toolchain guidance for real repository workflows. Use when users ask to configure biome.json, run lint or format commands, migrate from ESLint or Prettier, tune rule severity, fix formatter drift, or replace mixed ESLint+Prettier pipelines with Biome-only workflows.

SKILL.md

4.4 KB, ~1.0k tokens by cl100k_base, as published. Nobody here has run it

Biome Complete Toolchain

When to Apply

Use this skill when the request includes:

  • "set up Biome"
  • "configure biome.json"
  • "migrate from ESLint" or "migrate from Prettier"
  • "fix lint and format drift"
  • "run Biome in CI"

When Not to Apply

Do not use this skill when the user asks for ESLint-only or Prettier-only solutions.

Principles

  1. Use one source of truth for linting and formatting.
  2. Prefer deterministic commands and verifiable output.
  3. Keep SKILL.md short; move deep details to references/.

Deterministic Workflow

  1. Confirm scope: migration, config, lint, format, or CI.
  2. Initialize config if missing: bunx @biomejs/biome init.
  3. Run checks and capture results: bunx @biomejs/biome check ..
    • Verify: Confirm diagnostics are printed. If command fails, check Node.js version (≥14) and file permissions.
  4. Apply safe autofixes: bunx @biomejs/biome check . --write.
    • Verify: Re-run biome check . and confirm reduced error count. If errors persist, review unsupported rules or migration conflicts in references/migration-eslint-prettier.md.
  5. Add targeted suppressions only when justified.
  6. Verify commands pass in local and CI contexts: bunx @biomejs/biome check . --error-on-warnings.
    • Verify: Exit code 0 indicates success. If non-zero, review remaining diagnostics and address or document exceptions.

Error Recovery: If biome check fails after migration, isolate conflicting rules by temporarily disabling rule groups in biome.json linter section, then re-enable one group at a time to identify the source.

Quick Commands

Initialize

bunx @biomejs/biome init

Expected result: biome.json exists.

Check repository

bunx @biomejs/biome check .

Expected result: diagnostics printed with file paths.

Apply safe fixes

bunx @biomejs/biome check . --write

Expected result: fixable issues are rewritten.

Format files

bunx @biomejs/biome format . --write

Expected result: formatting is normalized.

Check one file

bunx @biomejs/biome check src/index.ts

Expected result: file-level diagnostics only.

Run in CI

bunx @biomejs/biome check . --error-on-warnings

Expected result: non-zero exit when warnings or errors exist.

Anti-Patterns

NEVER run Biome and ESLint on the same files

WHY: Competing rules create contradictory output and noisy reviews.

BAD: ESLint and Biome both lint src/**/*.ts. GOOD: Route TS linting and formatting through Biome only.

Consequence: Duplicate diagnostics and unstable CI outcomes.

NEVER run Prettier and Biome formatter on the same files

WHY: Different formatting models cause churn in every commit.

BAD: prettier --write . and biome format . --write in the same pipeline. GOOD: Keep only biome format . --write for supported files.

Consequence: Constant formatting diffs and merge friction.

NEVER skip biome.json customization after init

WHY: Defaults may not match repository conventions.

BAD: Commit default config without reviewing formatter/linter settings. GOOD: Define formatter width, linter domains, and VCS ignores explicitly.

Consequence: Inconsistent style and avoidable lint regressions.

NEVER blanket-ignore diagnostics to get green CI

WHY: Broad suppressions hide real defects and debt.

BAD: Disable full rule groups without rationale. GOOD: Add narrow suppressions with a reason and follow-up ticket.

Consequence: Quality silently degrades over time.

References

What ships with it: 12 files

19.5 KB alongside SKILL.md

.tessl-plugin/

Keep looking

Skills are one crate of 327,069. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.