smithery.ai

prettier-format

Run Prettier for the is-kit repository. Use when asked to format or check formatting in this project. Always consult AGENTS.md in the repo root before executing commands.

First seen Mar 31, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,510 B
  • docs SUMMARY.md 193 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Prettier Format (is-kit)

Overview

Format or check code using this repo's Prettier configuration and ignore rules. Prefer local binaries and the project's package manager.

Workflow

  1. Read repository instructions.
  • Open AGENTS.md in the repo root and follow all constraints (commands, formatting, tests, etc.).
  • If AGENTS.md is missing, ask how to proceed.
  1. Determine intent and scope.
  • Use --check for "verify formatting" requests.
  • Use --write for "format" or "fix" requests.
  • Ask for target paths when not specified; do not assume whole repo unless requested.
  1. Run Prettier with local tooling.
  • Prefer ./node_modules/.bin/prettier.
  • Alternative: pnpm prettier (repo uses pnpm).
  • Avoid npx unless the user explicitly approves network downloads.
  1. Report results.
  • Summarize changed files or confirm a clean check.
  • If a command fails, include the error and propose the next step.

Quick Commands

  • Format repo: ./node_modules/.bin/prettier --write .
  • Check formatting: ./node_modules/.bin/prettier --check .
  • Format paths: ./node_modules/.bin/prettier --write src tests
  • Check paths: pnpm prettier --check src tests

Resources

scripts/

  • run_prettier.sh: Run Prettier with --write or --check and auto-pick a runner.