What problem does it solve?
Inconsistent code formatting across development environments, CI pipelines, and team members creates noisy git diffs, wastes time on manual formatting fixes, and causes avoidable CI failures when formatter rules are misaligned.
Core Features & Use Cases
- Oxfmt Configuration: Set up and tune .oxfmtrc.json to define project-wide formatting rules including line width, quote style, semicolon usage, and ignore patterns for generated files.
- Workflow Integration: Wire Oxfmt into package.json scripts, CI checks, and pre-commit hooks to enforce consistent formatting across all local and remote development workflows.
- Troubleshooting & Migration: Diagnose and resolve formatting mismatches, ignore behavior issues, and conflicts with other formatters, plus guide migrations from Prettier or Biome to Oxfmt.
- Use Case: A team switching from Prettier to Oxfmt can use this skill to generate a compatible configuration, run a one-time repo-wide formatting pass, and set up CI checks to prevent future style drift.
Quick Start
Use the oxfmt skill to create a project-specific .oxfmtrc.json configuration file, add format and format:check scripts to your package.json, and run a one-time formatting pass to align all existing code with the new rules.