Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

biomeBiome 代码规范

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

264

周安装

11

GitHub Stars

6

下载量

88
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:biome(Biome 代码规范)
来源仓库:https://github.com/ghosttypes/ff-5mp-api-ts
仓库路径:skills/biome
安装命令:
npx skills add https://github.com/ghosttypes/ff-5mp-api-ts --skill biome
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/ghosttypes/ff-5mp-api-ts --skill biome

简介

Biome 代码规范技能辅助 API 设计和接口文档生成,支持字段命名检查。

  • 适用于服务集成说明和联调支持等前后端协作场景。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令启用技能模块。
  • 使用时需确认真实业务语义,避免生成与实际不符的接口定义。
  • biome 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Biome - Professional TypeScript/JavaScript Tooling

Biome is a fast, modern toolchain for JavaScript, TypeScript, JSX, JSON, CSS, GraphQL, and HTML. It provides formatting, linting, and code analysis with a single tool and zero configuration required.

When to Use This Skill

Use this skill when:

  • Setting up Biome in a new or existing project
  • Configuring biome.json for specific requirements
  • Migrating from ESLint and/or Prettier to Biome
  • Implementing linter rules or formatter options
  • Integrating Biome with editors (VS Code, Zed, IntelliJ)
  • Setting up CI/CD pipelines with Biome
  • Configuring monorepos or large projects
  • Debugging Biome configuration or performance issues
  • Understanding specific lint rules or code actions
  • Upgrading from Biome v1 to v2

Quick Start

Installation

# npm
npm i -D -E @biomejs/biome

# pnpm
pnpm add -D -E @biomejs/biome

# yarn
yarn add -D -E @biomejs/biome

Initialize Configuration

npx @biomejs/biome init

This creates a biome.json with recommended defaults.

Basic Commands

# Format and lint
npx @biomejs/biome check --write ./src

# Format only
npx @biomejs/biome format --write ./src

# Lint only
npx @biomejs/biome lint ./src

# CI mode (no writes, exit on errors)
npx @biomejs/biome ci ./src

Core Workflows

1. Project Setup

For new projects:

  1. Install Biome as dev dependency
  2. Run npx @biomejs/biome init
  3. Configure biome.json for project needs
  4. Add scripts to package.json
  5. Set up editor integration
  6. Configure CI/CD

See references/docs/guides/getting-started.md for details.

2. Configuration

Biome configuration lives in biome.json or biome.jsonc. Key sections:

  • $schema - JSON schema for IDE autocomplete
  • files - File inclusion/exclusion patterns
  • formatter - Formatting options (indentation, line width, etc.)
  • linter - Linting rules and their configuration
  • javascript, json, css - Language-specific options
  • overrides - Per-file or per-directory overrides

For complete configuration reference, see references/docs/reference/configuration.md.

3. Migration from ESLint/Prettier

Biome can replace both ESLint and Prettier in most projects:

  1. Audit existing ESLint/Prettier config
  2. Map rules to Biome equivalents
  3. Configure Biome to match existing style
  4. Run side-by-side comparison
  5. Remove ESLint/Prettier dependencies
  6. Update scripts and CI/CD

See references/docs/guides/migrate-eslint-prettier.md for detailed migration guide.

4. Monorepo/Large Projects

For monorepos or projects with multiple packages:

  1. Create root biome.json with shared config
  2. Use extends in package-specific configs
  3. Configure file patterns for each package
  4. Set up workspace-aware linting
  5. Optimize for performance

See references/docs/guides/big-projects.md for monorepo patterns.

5. Editor Integration

Biome has official extensions for:

  • VS Code - Full LSP support, format on save, quick fixes
  • Zed - Native integration, inline diagnostics
  • IntelliJ - Plugin available

Install the extension for your editor and configure workspace settings. See references/docs/guides/editors_first-party-extensions.md.

Reference Documentation

This skill includes complete Biome v2.x documentation:

Essential References

Documentation Categories

Guides (11 files)

  • Getting started, configuration, migration, editor setup, monorepos

Formatter (3 files)

  • Formatting engine, Prettier differences, design philosophy

Linter (13 files)

  • Linting rules for JavaScript/TypeScript, CSS, JSON, GraphQL, HTML
  • Rule sources and framework-specific domains (React, Next.js, etc.)

Assist (9 files)

  • Code actions and refactoring capabilities for all languages

Reference (8 files)

  • CLI, configuration, diagnostics, environment variables, reporters, editor extensions

Recipes (4 files)

  • CI/CD integration, git hooks, Renovate setup, badges

Internals (7 files)

  • Architecture, philosophy, language support, versioning, changelogs

Use references/INDEX.md for quick navigation to specific topics.

Common Patterns

Typical biome.json

{
  "$schema": "https://biomejs.dev/schemas/2.0.5/schema.json",
  "vcs": {
    "enabled": true,
    "clientKind": "git",
    "useIgnoreFile": true
  },
  "files": {
    "ignoreUnknown": false,
    "includes": ["src/**/*"]
  },
  "formatter": {
    "enabled": true,
    "indentStyle": "space",
    "indentWidth": 2,
    "lineWidth": 100
  },
  "linter": {
    "enabled": true,
    "rules": {
      "recommended": true
    }
  },
  "javascript": {
    "formatter": {
      "quoteStyle": "single",
      "trailingCommas": "es5",
      "semicolons": "always"
    }
  }
}

Package.json Scripts

{
  "scripts": {
    "format": "biome format --write .",
    "lint": "biome lint .",
    "check": "biome check --write .",
    "ci": "biome ci ."
  }
}

CI/CD Integration

# GitHub Actions
- name: Run Biome
  run: npx @biomejs/biome ci .

See references/docs/recipes/continuous-integration.md for complete CI/CD examples.

Updating Documentation

To update this skill's documentation with the latest from biomejs.dev:

python scripts/scrape_biome_docs.py --update-all --output references/docs

This scrapes all current documentation and updates the reference files.

Key Concepts

Formatting Philosophy

  • Opinionated defaults with minimal configuration
  • Focuses on consistency over personal preference
  • Significantly faster than Prettier (10-20x)
  • Format-preserving when possible

Linting Approach

  • Rules organized by category (correctness, performance, style, etc.)
  • Framework-aware domains (React, Next.js, etc.)
  • Recommended rules enabled by default
  • Fast incremental linting

Tool Integration

  • Single tool replaces ESLint + Prettier + more
  • Zero-config defaults work for most projects
  • Native TypeScript support, no type-checking required
  • Incremental adoption possible

Best Practices

  1. Start with recommended rules - Enable "recommended": true then customize
  2. Use VCS integration - Let Biome respect.gitignore
  3. Pin Biome version - Use exact versions in package.json
  4. Configure per-language - Override general settings for specific languages
  5. Use overrides sparingly - Prefer consistent configuration across the project
  6. Test before committing - Run biome ci in CI/CD
  7. Enable editor integration - Format on save for best experience
  8. Read diagnostics carefully - Biome provides detailed error explanations

Troubleshooting

Common issues and solutions:

Biome not finding files

  • Check files.includes in biome.json
  • Verify VCS integration settings
  • Review.gitignore patterns

Performance issues

Rule conflicts with existing code

Migration issues

  • Compare Biome output with ESLint/Prettier
  • Use configuration overrides for edge cases
  • See migration guide for common patterns

For detailed troubleshooting, consult the relevant reference documentation.

Resources

scripts/

Contains the Biome documentation scraper for keeping this skill up to date:

  • scrape_biome_docs.py - Scrapes and cleans Biome documentation from biomejs.dev

references/

Complete Biome v2.x documentation (56 files, 896 KB):

  • INDEX.md - Navigation index for all documentation
  • docs/ - All scraped and cleaned documentation files organized by category

The documentation is comprehensive and production-ready, covering all aspects of Biome from installation to advanced usage patterns.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.98%
按下载量换算30

Claude

29.42%
按下载量换算26

Cursor

18.62%
按下载量换算16

Gemini CLI

9.35%
按下载量换算8

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills