Fix SEO skills 19-34 bugs, add slash commands, enhance reference-curator (#3)
* Fix SEO skill 34 bugs, Korean labels, and transition Ahrefs refs to our-seo-agent P0: Fix report_aggregator.py — wrong SKILL_REGISTRY[33] mapping, missing CATEGORY_WEIGHTS for 7 categories, and break bug in health score parsing that exited loop even on parse failure. P1: Remove VIEW tab references from skill 20, expand skill 32 docs, replace Ahrefs MCP references across all 16 skills (19-28, 31-34) with our-seo-agent CLI data source references. P2: Fix Korean labels in executive_report.py and dashboard_generator.py, add tenacity to base requirements, sync skill 34 base_client.py with canonical version from skill 12. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * Add Claude Code slash commands for SEO skills 19-34 and fix stale paths Create 14 new slash command files for skills 19-28, 31-34 so they appear as /seo-* commands in Claude Code. Also fix stale directory paths in 8 existing commands (skills 12-18, 29-30) that referenced pre-renumbering skill directories. Update .gitignore to track .claude/commands/ while keeping other .claude/ files ignored. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * Add 8 slash commands, enhance reference-curator with depth/output options - Add slash commands: ourdigital-brand-guide, notion-writer, notebooklm-agent, notebooklm-automation, notebooklm-studio, notebooklm-research, reference-curator, multi-agent-guide - Add --depth (light/standard/deep/full) with Firecrawl parameter mapping - Add --output with ~/Documents/reference-library/ default and user confirmation - Increase --max-sources default from 10 to 100 - Rename /reference-curator-pipeline to /reference-curator - Simplify web-crawler-orchestrator label to web-crawler in docs Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
63
.claude/commands/seo-ai-visibility.md
Normal file
63
.claude/commands/seo-ai-visibility.md
Normal file
@@ -0,0 +1,63 @@
|
||||
---
|
||||
description: AI search visibility - citations, brand radar, share of voice tracking
|
||||
---
|
||||
|
||||
# SEO AI Visibility
|
||||
|
||||
Track brand visibility in AI-generated search answers with citation analysis and share of voice monitoring.
|
||||
|
||||
## Triggers
|
||||
- "AI visibility", "AI search", "AI citations", "AI share of voice"
|
||||
|
||||
## Capabilities
|
||||
|
||||
1. **AI Impressions Tracking** - How often brand appears in AI answers
|
||||
2. **AI Mentions Monitoring** - Brand mention frequency across AI engines
|
||||
3. **Share of Voice** - AI search SOV vs competitors with trend analysis
|
||||
4. **Citation Analysis** - Which domains and pages AI engines cite
|
||||
5. **AI Response Analysis** - How the brand appears in AI-generated answers
|
||||
6. **Competitor Comparison** - Side-by-side AI visibility benchmarking
|
||||
|
||||
## Scripts
|
||||
|
||||
```bash
|
||||
# AI visibility overview
|
||||
python custom-skills/27-seo-ai-visibility/code/scripts/ai_visibility_tracker.py \
|
||||
--target example.com --json
|
||||
|
||||
# With competitor comparison
|
||||
python custom-skills/27-seo-ai-visibility/code/scripts/ai_visibility_tracker.py \
|
||||
--target example.com --competitor comp1.com --competitor comp2.com --json
|
||||
|
||||
# Historical trend (impressions/mentions)
|
||||
python custom-skills/27-seo-ai-visibility/code/scripts/ai_visibility_tracker.py \
|
||||
--target example.com --history --json
|
||||
|
||||
# Share of voice analysis
|
||||
python custom-skills/27-seo-ai-visibility/code/scripts/ai_visibility_tracker.py \
|
||||
--target example.com --sov --json
|
||||
|
||||
# AI citation analysis
|
||||
python custom-skills/27-seo-ai-visibility/code/scripts/ai_citation_analyzer.py \
|
||||
--target example.com --json
|
||||
|
||||
# Cited domains analysis
|
||||
python custom-skills/27-seo-ai-visibility/code/scripts/ai_citation_analyzer.py \
|
||||
--target example.com --cited-domains --json
|
||||
|
||||
# Cited pages analysis
|
||||
python custom-skills/27-seo-ai-visibility/code/scripts/ai_citation_analyzer.py \
|
||||
--target example.com --cited-pages --json
|
||||
|
||||
# AI response content analysis
|
||||
python custom-skills/27-seo-ai-visibility/code/scripts/ai_citation_analyzer.py \
|
||||
--target example.com --responses --json
|
||||
```
|
||||
|
||||
## Output
|
||||
- AI impressions and mentions with trend indicators
|
||||
- Share of voice percentage vs competitors
|
||||
- Cited domains and pages ranked by frequency
|
||||
- AI response samples showing brand context
|
||||
- Recommendations for improving AI visibility
|
||||
- Reports saved to Notion SEO Audit Log (Category: AI Search Visibility)
|
||||
Reference in New Issue
Block a user