Install
openclaw skills install doc-spellcheckDetect and automatically fix spelling errors in Markdown, plain text, and documentation files with support for custom dictionaries and batch processing.
openclaw skills install doc-spellcheckAutomatically detect and fix spelling errors in documentation files across any project. This skill provides comprehensive spell checking for Markdown, plain text, and other documentation formats.
.md, .mdx).txt)recieve → receive, teh → the)formating → formatting, occured → occurred).gitignore and excluded paths# Check single file
doc-spellcheck check docs/guide.md
# Check entire directory
doc-spellcheck check docs/
# Auto-fix common errors
doc-spellcheck fix docs/guide.md
# Dry-run to preview fixes
doc-spellcheck fix --dry-run docs/
# Custom dictionary
doc-spellcheck check --dict custom-words.txt docs/
# Exclude patterns
doc-spellcheck check --exclude "**/node_modules/**" docs/
# Specific error types
doc-spellcheck check --errors "misspelling,word-form" docs/
# Output format for CI
doc-spellcheck check --format json docs/
.md, .mdx, .txt, .rstnode_modules/, .git/, dist/warning (non-blocking)disabled by default# Before: "The recieve function handles incoming data"
# After: "The receive function handles incoming data"
# Before: "This occured during the formating process"
# After: "This occurred during the formatting process"
# Process entire documentation directory
doc-spellcheck fix --batch docs/
# Review changes interactively
doc-spellcheck fix --interactive docs/guide.md