skills/validate-all/SKILL.md
Runs comprehensive claudelint validation on all Claude Code project files. Use when user asks to "check everything", "run all validators", "full audit", "validate my entire project", or "what's wrong with my config". Validates CLAUDE.md, skills, settings, hooks, MCP servers, and plugin manifests.
npx skillsauth add pdugan20/claudelint validate-allInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Runs claudelint check-all to validate all Claude Code project files including CLAUDE.md, skills, settings, hooks, MCP servers, and plugin manifests.
claudelint check-all $ARGUMENTS
Available flags:
--verbose - Show detailed validation output--warnings-as-errors - Treat warnings as errors--explain - Show detailed explanations and fix suggestions--format <format> - Output format: stylish, json, compact (default: stylish)--config <path> - Path to custom config file--fast - Fast mode: skip expensive checks--color / --no-color - Control color outputUser says: "I just updated my CLAUDE.md and added a new skill, but now my plugin isn't loading" What happens:
claudelint check-allResult: User identifies why plugin broke and fixes both issues
User says: "My git pre-commit hook is failing but I don't know which validator is the problem" What happens:
claudelint check-all --verboseResult: User fixes the one failing validator (MCP config) and commit succeeds
User says: "I just upgraded claude-code-lint, make sure I didn't break anything" What happens:
claudelint check-allResult: User knows what needs updating after version upgrade
Basic validation:
claudelint check-all
Verbose output with explanations:
claudelint check-all --verbose --explain
JSON output for CI/CD:
claudelint check-all --format json
Use custom config:
claudelint check-all --config .claudelintrc.custom.json
Treat warnings as errors (strict mode):
claudelint check-all --warnings-as-errors
The validate skill checks:
0 - No errors or warnings1 - Warnings found (or warnings treated as errors)2 - Errors found or fatal error (invalid config, crash)For troubleshooting, see common issues. For customization, see configuration.
testing
A valid test skill for testing purposes. Use this when you want to test skill validation.
testing
This skill is missing the version field for testing purposes.
testing
This skill contains dangerous commands for testing security validation.
tools
Validates Claude Code skills for schema, naming, documentation, and security. Use when user asks to "check my skill", "validate skill syntax", "why isn't my skill loading", "skill errors", or "dangerous command detected". Validates SKILL.md frontmatter, allowed-tools, file references, directory organization, and shell script security.