- 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>
38 lines
991 B
Markdown
38 lines
991 B
Markdown
---
|
|
description: Seo Technical command
|
|
---
|
|
|
|
# SEO Technical Audit
|
|
|
|
Technical SEO audit for robots.txt and sitemap validation.
|
|
|
|
## Triggers
|
|
- "check robots.txt", "validate sitemap", "technical SEO"
|
|
|
|
## Capabilities
|
|
|
|
1. **Robots.txt Analysis** - Parse and validate robots.txt rules
|
|
2. **Sitemap Validation** - Check XML sitemap structure and URLs
|
|
3. **Sitemap Crawling** - Crawl all URLs in sitemap for issues
|
|
|
|
## Scripts
|
|
|
|
```bash
|
|
# Check robots.txt
|
|
python ourdigital-custom-skills/10-seo-technical-audit/code/scripts/robots_checker.py \
|
|
--url https://example.com
|
|
|
|
# Validate sitemap
|
|
python ourdigital-custom-skills/10-seo-technical-audit/code/scripts/sitemap_validator.py \
|
|
--url https://example.com/sitemap.xml
|
|
|
|
# Crawl sitemap URLs
|
|
python ourdigital-custom-skills/10-seo-technical-audit/code/scripts/sitemap_crawler.py \
|
|
--sitemap https://example.com/sitemap.xml --output report.json
|
|
```
|
|
|
|
## Output
|
|
- Robots.txt rule analysis
|
|
- Sitemap structure validation
|
|
- URL accessibility report
|