Agent skill
content-linter
Lint content for spelling errors, en-GB compliance, and writing quality. Use when checking markdown files before publication.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/content-linter
SKILL.md
Content Linter
Comprehensive content checking for spelling, language consistency, and writing quality.
Quick Start
Run the project's spell checker:
npm run cspell
For specific files:
npx cspell 'posts/*.md' --config cspell.json
Key Checks
- Spelling - Run cspell on markdown files
- en-GB - Verify British spellings (colour, organisation)
- Vague language - Flag "very", "really", "quite"
- Code blocks - Ensure language identifiers present
Quick Grep Checks
# 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
- Spelling Guide
- Quality Checks
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?