code-formatting

Apply standard formatting rules to source files in-place.

4|2|Updated Jan 11, 2026
One-click install
npx skills add https://github.com/nick-orton/vybz --skill code-formatting-nick-orton
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-formatting
Source: https://github.com/nick-orton/vybz/tree/main/src/vybz/library/skills/code-formatting
Command: npx skills add https://github.com/nick-orton/vybz --skill code-formatting-nick-orton

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Code formatting inconsistencies across a codebase often slow reviews, cause merge conflicts, and reduce readability. This Skill provides a standard formatting workflow to apply and enforce formatting rules automatically across files.

Core Features & Use Cases

  • Deterministic formatting: Apply a consistent style across all source files.
  • In-Place reformats: Rewrites files without changing semantics.
  • Codebase hygiene: Integrates with CI/pre-commit to catch formatting issues early.

Quick Start

Run the code-formatting command on your repository to apply the standard formatting rules.

Frequently Asked Questions about code-formatting

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

FAQPage Schema
How do I enforce consistent code formatting across my codebase?

You can enforce consistent code formatting by applying a standard set of rules to your source files. This Skill performs deterministic, in-place reformatting to ensure uniform style without changing code semantics.

How do I integrate code formatting into CI workflows and pre-commit hooks?

You can integrate code formatting into CI workflows and pre-commit hooks to catch style issues early. This prevents format drift by automatically applying standard formatting rules before changes are merged.

Why does inconsistent code formatting cause merge conflicts and slow reviews?

Inconsistent code formatting causes merge conflicts and slows reviews because varying styles clutter diffs with unrelated changes. Enforcing deterministic formatting rules ensures uniform style and improves readability across the codebase.

Does in-place code formatting change the semantics of my source files?

In-place code formatting does not change the semantics of your source files. It rewrites files to apply a consistent style across your codebase while ensuring the underlying logic remains completely unchanged.

What is the best way to automate code style guide enforcement in a software project?

The best way to automate code style guide enforcement is applying deterministic formatting rules across source files and integrating them with pre-commit hooks. This maintains codebase hygiene and prevents format drift automatically.