Agent Skills: PostCSS Config Builder

Generate PostCSS configuration files with plugins for CSS processing, autoprefixing, and optimizations. Triggers on "create postcss config", "generate postcss configuration", "postcss setup", "css processing config".

UncategorizedID: ehtbanton/ClaudeSkillsRepo/postcss-config-builder

Install this agent skill to your local

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

Skill Files

Browse the full folder contents for postcss-config-builder.

Download Skill

Loading file tree…

postcss-config-builder/SKILL.md

Skill Metadata

Name
postcss-config-builder
Description
Generate PostCSS configuration files with plugins for CSS processing, autoprefixing, and optimizations. Triggers on "create postcss config", "generate postcss configuration", "postcss setup", "css processing config".

PostCSS Config Builder

Generate PostCSS configuration files with appropriate plugins for CSS processing.

Output Requirements

File Output: postcss.config.js or postcss.config.cjs Format: Valid PostCSS configuration Standards: PostCSS 8.x

When Invoked

Immediately generate a complete PostCSS configuration with plugins for the project needs.

Configuration Template

module.exports = {
  plugins: {
    tailwindcss: {},
    autoprefixer: {},
  },
};

Example Invocations

Prompt: "Create postcss config for Tailwind with autoprefixer" Output: Complete postcss.config.js with Tailwind and autoprefixer.