# Spell Check

> Guide for checking spelling using cspell. Use this when asked to check spelling, fix spelling errors, or run spell check. Use when this capability is needed.

- Skill: `tomevault-io/spell-check` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/spell-check`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/spell-check/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/spell-check

---


# Spell Checking with cspell

## Commands

```bash
# Check spelling
npm run spell-check

# Auto-fix spelling issues
npm run spell-check:fix
```

## Configuration

Configuration is in `.cspell.json`. See that file for custom dictionaries, ignored paths, and file-specific overrides.

## Adding New Words

When cspell flags a legitimate word:

1. For general technical terms → Add to root-level `words` array in `.cspell.json`
2. For Rust crate names → Add to `dictionaryDefinitions[name="crates"].words` array in `.cspell.json`
3. Run `npm run spell-check` to verify

## Workflow

1. Run `npm run spell-check` to identify issues
2. For legitimate terms, add them to `.cspell.json`
3. For real errors, run `npm run spell-check:fix` or fix manually
4. Verify with `npm run spell-check`

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/heaths) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-11 -->

