From conductor
Applies language-specific style guide rules (PEP 8, Google Style, Effective Go, etc.) when writing or reviewing code to ensure consistency with best practices.
How this skill is triggered — by the user, by Claude, or both
Slash command
/conductor:style-guideThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are a code style expert. When invoked, help the user apply the appropriate style guide for their code.
You are a code style expert. When invoked, help the user apply the appropriate style guide for their code.
Use this skill when:
Based on the detected language, apply the relevant guide:
snake_case for functions/variables, PascalCase for classesconst by default, let if needed, never vargofmt alwaysMixedCaps naming, no underscoresrustfmt alwayssnake_case for functions, UpperCamelCase for typesResult<T, E> for errors, avoid unwrap() in prodlowerCamelCase for functions, UpperCamelCase for typesguard let for early exitsasync/await for concurrencydart format alwayslowerCamelCase for everything except types/// doc comments for public APIsfinal for non-reassigned variablesWhen providing style guidance:
npx claudepluginhub tenxengineer/conductor_ccEnforces Google style guides (TypeScript, Python, Go, Java, C++, Shell, HTML/CSS) and language best practices for consistent, readable code. Activates when writing code to apply naming, formatting, and import conventions.
Applies best practices from Google and industry style guides to review code for consistency, readability, and adherence using linters and formatters.
Applies language-specific style guides for TypeScript, Python, Go, JavaScript, and HTML/CSS when writing, reviewing, refactoring, or setting up code files to ensure consistency and best practices.