18
5
In review
Synced today
What it does
Lint content for spelling errors, en-GB compliance, and writing quality. Use when checking markdown files before publication.
Skill profile
Keep exploring
More options in Dev Tools.
Claude Code · Codex · OpenClaw
HTML
Updated 8/12/2026
Agent compatibility
Compatibility has not been reviewed for this listing yet. Check the publisher documentation before installing.
Installation
npx skills add https://github.com/majiayu000/claude-skill-registry-data --skill content-linterReview source code and installation permissions before adding third-party tools to an agent.
content-linter is organized in the Dev Tools category. Compare its source, install method, and compatibility before adding it to your workflow.
Third-party agent tools may access source code, credentials, or browser sessions. Read the source documentation and use the minimum permissions needed.
npx skills add https://github.com/majiayu000/claude-skill-registry-data --skill content-linterSKILL.md
--- name: content-linter # prettier-ignore description: Lint content for spelling errors, en-GB compliance, and writing quality. Use when checking markdown files before publication. allowed-tools: Read, Bash, Grep --- # Content Linter Comprehensive content checking for spelling, language consistency, and writing quality. ## Quick Start Run the project's spell checker: ```bash npm run cspell ``` For specific files: ```bash npx cspell 'posts/*.md' --config cspell.json ``` ## Key Checks 1. **Spelling** - Run cspell on markdown files 2. **en-GB** - Verify British spellings (colour, organisation) 3. **Vague language** - Flag "very", "really", "quite" 4. **Code blocks** - Ensure language identifiers present ## Quick Grep Checks ```bash # Find American spellings grep -rE "\b(color|organization|behavior)\b" posts/ # Find vague language grep -rE "\b(very|really|quite|basically)\b" posts/ # Find code blocks without language grep -E "^\`\`\`$" posts/ ``` ## References For detailed commands, full spelling tables, and workflows: - [Commands Reference](references/commands.md) - [Spelling Guide](references/spelling-guide.md) - [Quality Checks](references/quality-checks.md)
skill
mattpocock
A tool that automates setting up Husky pre-commit hooks with lint-staged, Prettier formatting, type checking, and tests in a code repository.