mcpbeat

Check Spelling

azure/check-spelling

Check and fix spelling in project source files using cSpell.

480 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
883
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/Azure/azure-sdk-for-rust --skill check-spelling

The instruction itself

5 sections, as written by the author

Spell checking

Usage

Get all staged and unstaged non-deleted files, then pipe them to the spell check script:

{ git diff --staged --name-only --diff-filter=d; git diff --name-only --diff-filter=d; } | sort -u | ./eng/common/spelling/Invoke-Cspell.ps1

Configuration

The root configuration is .vscode/cspell.json, and CI runs cSpell with this config via eng/common/spelling/Invoke-Cspell.ps1.

Each service directory (e.g., sdk/{service-directory}) or crate directory (e.g., sdk/{service-directory}/{crate-directory}) can have a .cspell.json that should import either a parent .cspell.json or .vscode/cspell.json from the root of the repo. Per-directory configs are loaded based on the paths of files being checked.

Fix spelling

Show a summary of the misspellings to the user. Prompt the user for which words should be replaced and which should be ignored.

For words that should be replaced, fix the misspellings directly in the source files. If you cannot confidently determine the correct spelling, ask the user.

For words that should be ignored, add them to the ignoreWords array in a .cspell.json file under sdk/{service-directory} or lower. If the file doesn't exist, create it with an import of either a parent .cspell.json or ../../.vscode/cspell.json from the root of the repo.

Example sdk/keyvault/.cspell.json:

{
  "import": [
    "../../.vscode/cspell.json"
  ],
  "ignoreWords": [
    "ciphertext",
    "purgeable"
  ]
}

Seldom used words can be ignored within the file they are used by adding an appropriate comment e.g.:

// cspell:ignore {word}

To disable cSpell for just the next line, use cspell:disable-next-line.

Testing

Run the same command again used to check spelling. All misspellings should be fixed.

How to use it

Copy the folder

Take azure/check-spelling from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.