← ClaudeAtlas

consistency-standardslisted

Establish and enforce uniform naming conventions, taxonomy standards, style guides, and content reuse patterns across a project. Use when the user asks to audit for consistency, standardize naming, create a style guide, align terminology across docs, eliminate drift, or define reuse patterns across content or code. NOT for formal knowledge graphs or semantic ontologies (use ontology-design). NOT for CMS content types or editorial workflows (use content-modelling). NOT for language-specific code conventions (use typescript-development or python-development).
viktorbezdek/skillstack · ★ 9 · AI & Automation · score 76
Install: claude install-skill viktorbezdek/skillstack
# Consistency Standards Establish uniform patterns for naming, terminology, and content reuse. ## When to Use / Not Use **Use when:** - Establishing naming conventions for a new project - Auditing existing code or docs for consistency issues - Creating a terminology glossary to standardize vocabulary - Defining voice and tone guidelines for different content types - Designing content reuse strategies (DRY documentation) - Onboarding new team members with style standards **Do NOT use when:** - Formal ontology or semantic modeling -> use `ontology-design` - Content type and CMS schema design -> use `content-modelling` - Writing the actual documentation content -> use `documentation-generator` ## Decision Tree ``` What are you standardizing? ├── How things are NAMED (variables, files, endpoints, columns) │ ├── Single language? -> Case style guide (§Naming Conventions) │ └── Multi-language stack? -> Per-context rules + mapping between layers (§Naming Conventions) ├── How things are CALLED (terminology, synonyms, product names) │ └── Multiple terms for same concept? -> Glossary with preferred + forbidden terms (§Terminology) ├── How things SOUND (voice, tone, formality) │ └── Different contexts need different voices? -> Per-context voice rules (§Voice and Tone) ├── How content is REUSED (repeated sections across docs) │ └── Same content in 3+ places? -> Snippets/variables/conditionals (§Content Reuse) └── Not sure / combination? -> Start with audit (§Style Checklis