Global Coding Style

Enforce consistent naming, formatting, and DRY principles across codebases.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/frankdevlabs/compilothq --skill global-coding-style-frankdevlabs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Global Coding Style
Source: https://github.com/frankdevlabs/compilothq/tree/main/.claude/skills/global-coding-style
Command: npx skills add https://github.com/frankdevlabs/compilothq --skill global-coding-style-frankdevlabs

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Inconsistent coding styles reduce readability, increase cognitive load during code reviews, and complicate long-term maintenance, leading to slower development.

Core Features & Use Cases

  • Naming Conventions: Enforce consistent, descriptive naming for variables, functions, classes, and files (e.g., camelCase, PascalCase, snake_case).
  • Automated Formatting: Utilize tools like ESLint, Prettier, or language-specific formatters to automatically ensure consistent indentation, line breaks, and spacing.
  • DRY Principle: Promote the "Don't Repeat Yourself" principle by extracting common logic into reusable functions, utility modules, or shared libraries to avoid code duplication.

Quick Start

Refactor the processUserData function to ensure all variables and functions follow camelCase, apply consistent indentation, and extract any duplicated logic into a helper function.