Agent Skills: Prettier Config Generator

Generate Prettier configuration files for consistent code formatting across JavaScript, TypeScript, CSS, and other file types. Triggers on "create prettier config", "generate prettier configuration", "prettier setup", "code formatting config".

UncategorizedID: ehtbanton/ClaudeSkillsRepo/prettier-config-generator

Install this agent skill to your local

pnpm dlx add-skill https://github.com/ehtbanton/ClaudeSkillsRepo/tree/HEAD/prettier-config-generator

Skill Files

Browse the full folder contents for prettier-config-generator.

Download Skill

Loading file tree…

prettier-config-generator/SKILL.md

Skill Metadata

Name
prettier-config-generator
Description
Generate Prettier configuration files for consistent code formatting across JavaScript, TypeScript, CSS, and other file types. Triggers on "create prettier config", "generate prettier configuration", "prettier setup", "code formatting config".

Prettier Config Generator

Generate Prettier configuration files for consistent code formatting.

Output Requirements

File Output: .prettierrc, .prettierrc.js, or prettier.config.js Format: Valid Prettier configuration Standards: Prettier 3.x

When Invoked

Immediately generate a complete Prettier configuration with formatting rules for the project type.

Configuration Template

{
  "semi": true,
  "singleQuote": true,
  "tabWidth": 2,
  "trailingComma": "es5",
  "printWidth": 100,
  "bracketSpacing": true,
  "arrowParens": "avoid"
}

Example Invocations

Prompt: "Create prettier config for TypeScript project" Output: Complete .prettierrc with TypeScript-friendly settings.