- Add new 00-claude-code-setting skill for token usage optimization - Includes audit scripts for MCP servers, CLAUDE.md, and extensions - Auto-fix capability with backup for serverInstructions and frontmatter - Add YAML frontmatter to 17 command files - Target: keep baseline under 30% of 200K context limit Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
36 lines
870 B
Markdown
36 lines
870 B
Markdown
---
|
|
description: Seo On Page command
|
|
---
|
|
|
|
# SEO On-Page Audit
|
|
|
|
On-page SEO analysis for meta tags, headings, content, and links.
|
|
|
|
## Triggers
|
|
- "analyze page SEO", "check meta tags", "on-page audit"
|
|
|
|
## Capabilities
|
|
|
|
1. **Meta Tag Analysis** - Title, description, OG tags, canonical
|
|
2. **Heading Structure** - H1-H6 hierarchy validation
|
|
3. **Content Analysis** - Word count, keyword density
|
|
4. **Link Audit** - Internal/external links, broken links
|
|
|
|
## Scripts
|
|
|
|
```bash
|
|
# Full page analysis
|
|
python ourdigital-custom-skills/11-seo-on-page-audit/code/scripts/page_analyzer.py \
|
|
--url https://example.com/page
|
|
|
|
# Multiple pages
|
|
python ourdigital-custom-skills/11-seo-on-page-audit/code/scripts/page_analyzer.py \
|
|
--urls urls.txt --output report.json
|
|
```
|
|
|
|
## Output
|
|
- Meta tag completeness score
|
|
- Heading structure report
|
|
- Content quality metrics
|
|
- Link health status
|