56 lines
2.4 KiB
Markdown
56 lines
2.4 KiB
Markdown
---
|
|
description: Keyword rank monitoring with visibility scores and alerts
|
|
---
|
|
|
|
# SEO Position Tracking
|
|
|
|
Monitor keyword rankings, detect position changes with threshold alerts, and calculate visibility scores.
|
|
|
|
## Triggers
|
|
- "rank tracking", "position monitoring", "순위 추적"
|
|
|
|
## Capabilities
|
|
|
|
1. **Position Tracking** - Retrieve current ranking positions for tracked keywords
|
|
2. **Change Detection** - Detect position changes with configurable threshold alerts
|
|
3. **Visibility Scoring** - Calculate visibility scores weighted by search volume
|
|
4. **Brand/Non-Brand Segments** - Segment keywords into brand vs non-brand
|
|
5. **Competitor Comparison** - Compare rank positions against competitors
|
|
6. **Ranking Reports** - Period-over-period trend analysis with top movers
|
|
|
|
## Scripts
|
|
|
|
```bash
|
|
# Get current positions
|
|
python /Users/ourdigital/Project/our-claude-skills/custom-skills/21-seo-position-tracking/code/scripts/position_tracker.py \
|
|
--target https://example.com --json
|
|
|
|
# With change threshold alerts (flag moves of +-5 or more)
|
|
python /Users/ourdigital/Project/our-claude-skills/custom-skills/21-seo-position-tracking/code/scripts/position_tracker.py \
|
|
--target https://example.com --threshold 5 --json
|
|
|
|
# Filter by brand segment
|
|
python /Users/ourdigital/Project/our-claude-skills/custom-skills/21-seo-position-tracking/code/scripts/position_tracker.py \
|
|
--target https://example.com --segment brand --json
|
|
|
|
# Compare with competitor
|
|
python /Users/ourdigital/Project/our-claude-skills/custom-skills/21-seo-position-tracking/code/scripts/position_tracker.py \
|
|
--target https://example.com --competitor https://comp1.com --json
|
|
|
|
# 30-day ranking report
|
|
python /Users/ourdigital/Project/our-claude-skills/custom-skills/21-seo-position-tracking/code/scripts/ranking_reporter.py \
|
|
--target https://example.com --period 30 --json
|
|
|
|
# Quarterly report with competitor comparison
|
|
python /Users/ourdigital/Project/our-claude-skills/custom-skills/21-seo-position-tracking/code/scripts/ranking_reporter.py \
|
|
--target https://example.com --competitor https://comp1.com --period 90 --json
|
|
```
|
|
|
|
## Output
|
|
- Position distribution (top 3/10/20/50/100)
|
|
- Change summary (improved, declined, stable, new, lost)
|
|
- Threshold alerts for significant position changes
|
|
- Visibility score and trend over time
|
|
- Brand vs non-brand segment breakdown
|
|
- Reports saved to Notion SEO Audit Log (Category: Position Tracking, ID: RANK-YYYYMMDD-NNN)
|