check_naming
Verify identifier naming conventions in codebases to maintain consistency, detect deviations like 'n_dims' vs 'ndim', and provide canonical forms with suggestions for correction.
Instructions
Check if an identifier follows project naming conventions — detects inconsistencies like 'n_dims' vs the project's 'ndim' convention, or 'numFeatures' vs 'nb_features'. Returns a consistent/inconsistent verdict with the canonical form and suggestions. Use before committing new code or when reviewing identifier names.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| identifier | Yes | The identifier to check (e.g. 'n_dims') |