Global Coding Style

Enforce naming conventions, formatting standards, and DRY principles across codebases.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Inconsistent coding styles, poor naming conventions, and duplicated code reduce readability, increase bugs, and slow down development. This Skill enforces clean, consistent, and maintainable code across your entire codebase.

Core Features & Use Cases

  • Naming Conventions: Establishes clear rules for naming variables, functions, classes, and files.
  • Formatting Standards: Ensures consistent indentation, line breaks, and overall code presentation.
  • DRY Principle Enforcement: Guides the elimination of code duplication ("Don't Repeat Yourself").
  • Use Case: When writing a new Python function, use this Skill to ensure variable names are descriptive (e.g., user_id instead of uid), code is formatted with Black, and no logic is duplicated.

Quick Start

Refactor the process_data function to adhere to global coding style, ensuring clear variable names, consistent indentation, and removal of any duplicated logic.