From content-guards
Validate all README files in the repository for required sections and installation code blocks. Checks section presence using config from .readme-validator.yaml or sensible defaults. Badge URL reachability is checked on-demand via WebFetch.
npx claudepluginhub jacobpevans/claude-code-plugins --plugin content-guardsThis skill uses the workspace's default tool permissions.
<!-- cspell:words validator -->
Creates new Angular apps using Angular CLI with flags for routing, SSR, SCSS, prefixes, and AI config. Follows best practices for modern TypeScript/Angular development. Use when starting Angular projects.
Generates Angular code and provides architectural guidance for projects, components, services, reactivity with signals, forms, dependency injection, routing, SSR, ARIA accessibility, animations, Tailwind styling, testing, and CLI tooling.
Executes ctx7 CLI to fetch up-to-date library documentation, manage AI coding skills (install/search/generate/remove/suggest), and configure Context7 MCP. Useful for current API refs, skill handling, or agent setup.
Run a comprehensive audit of all README.md files in the current repository.
/validate-readme
Find all README*.md files in the repository, excluding .git/ and .claude/
directories.
For each README found, check:
.readme-validator.yaml or defaults)Badge URL reachability may be checked on-demand using WebFetch for any badge images found in the README.
Output a summary table:
| File | Status | Issues |
|---|---|---|
| ./README.md | PASS | -- |
| ./plugin/README.md | WARN | Missing: Contributing |
Place a .readme-validator.yaml file anywhere in the directory tree above the
README being validated. The hook searches upward up to 10 levels.
required_sections:
- Installation
- Usage
optional_sections:
- Contributing
- License
- API
Defaults (used when no config file is found):
required_sections: Installation, Usageoptional_sections: Contributing, License, API