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_ccApplies 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.
Indexes pedantic-coder skills for universal code quality principles including naming precision, casing law, import discipline, declaration order, symmetry, and dead code intolerance. Use for code reviews, refactoring, or greenfield projects.