update-best-practices

Insufficient data for an AI-generated response. Please provide the missing information.

4|Updated Feb 2, 2026
One-click install
npx skills add https://github.com/brave-experiments/brave-core-bot --skill update-best-practices
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: update-best-practices
Source: https://github.com/brave-experiments/brave-core-bot/tree/main/.claude/skills/update-best-practices
Command: npx skills add https://github.com/brave-experiments/brave-core-bot --skill update-best-practices

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill ensures our project's best practices are up-to-date by automatically fetching and integrating the latest guidelines from upstream Chromium documentation, preventing outdated or conflicting coding standards.

Core Features & Use Cases

  • Automated Fetching: Retrieves guidelines from specified Chromium documentation URLs.
  • Conflict Detection: Identifies contradictions between upstream rules and our existing best practices.
  • Content Merging: Updates our best practices files with new rules, corrections, and links.
  • Use Case: A developer needs to ensure their new code adheres to the latest Chromium C++ style guide. They run this Skill with the relevant Chromium URL, and it automatically updates the project's coding-standards.md file with any new or changed rules.

Quick Start

Run the update best practices skill with the Chromium smart pointer guidelines URL.

Frequently Asked Questions about update-best-practices

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

FAQPage Schema
How do I sync local coding standards with upstream Chromium documentation?

To sync local coding standards with upstream Chromium documentation, fetch the latest guidelines and merge them into your project's best practices files. This process detects new rules, conflicts, and outdated entries by comparing fetched content against existing documentation in `docs/best-practices/`.

What is the best way to update project best practices files with new Chromium rules?

The best way to update project best practices files with new Chromium rules is to run an automated content merging process. It retrieves guidelines from specified Chromium documentation URLs and updates `coding-standards.md`, `architecture.md`, and testing-related files with any new or changed rules.

How do I detect conflicts between upstream Chromium rules and my existing coding standards?

Detecting conflicts between upstream Chromium rules and existing coding standards requires comparing fetched web content against your local documentation. This conflict detection mechanism identifies contradictions to prevent outdated or conflicting guidelines from persisting in your project.

Does this documentation sync approach require any specific dependencies or environments?

This documentation sync approach requires web fetching capabilities and markdown parsing to update local best practices files. It does not list any external dependencies, but it targets projects that maintain documentation within a `docs/best-practices/` directory structure.

Why does my local coding-standards.md file contain outdated Chromium guidelines?

Your local `coding-standards.md` file contains outdated Chromium guidelines because it has not been synced with upstream documentation. Automatically fetching and integrating the latest guidelines prevents outdated or conflicting coding standards from accumulating over time.

Can I merge Chromium smart pointer guidelines into our architecture.md and testing files?

Yes, you can merge Chromium smart pointer guidelines into your local documentation. By providing the relevant Chromium URL, the content merging process updates `architecture.md` and testing-related files to ensure new code adheres to the latest C++ style guide.