skills/daily-seo-review/SKILL.md
Daily SEO health check for dancegods + razbakov.com. Checks indexing status, sitemap, meta tags, and structured data. Reports findings and flags issues for the daily review pipeline. Use when running the morning SEO check or when asked for an SEO status report.
npx skillsauth add razbakov/skills daily-seo-reviewInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Automated daily SEO health check for two production sites:
| Site | Domain | Project Path | |------|--------|-------------| | dancegods | dancegodscompany.com | ~/Projects/dancegodscompany/engineering/website | | razbakov.com | razbakov.com | ~/Projects/ikigai/engineering/razbakov.com |
~/.claude/scheduled-tasks/daily-seo-review/SKILL.md/daily-seo-reviewRun for each site in parallel where possible.
# Try sitemap_index first, then sitemap.xml
curl -s "https://[domain]/sitemap_index.xml" | head -30
curl -s "https://[domain]/sitemap.xml" | head -30
# Count total URLs
curl -s "https://[domain]/sitemap.xml" | grep -c "<url>" || \
curl -s "https://[domain]/sitemap_index.xml" | grep -c "<sitemap>"
Flag if: sitemap missing, returns 4xx/5xx, or URL count drops vs yesterday.
curl -s "https://[domain]/robots.txt"
Check:
/, /blog, /about, /style)for url in "/" "/about" "/blog"; do
echo "=== $url ==="
curl -sL "https://[domain]${url}" | \
grep -oE '<title>[^<]+</title>|<meta[^>]*(name="description"|property="og:title"|property="og:image")[^>]*>' \
| head -10
echo
done
Check:
<title>description meta present (150–160 chars)og:title and og:image presentfor url in "/" "/about" "/blog"; do
echo "=== $url ==="
curl -sL "https://[domain]${url}" | \
grep -oE '<link[^>]*(canonical|hreflang)[^>]*>' | head -20
echo
done
Check:
<link rel="canonical"> present on each pagex-default hreflang presentcurl -sL "https://[domain]/" | python3 -c "
import sys, re
html = sys.stdin.read()
schemas = re.findall(r'<script[^>]*type=[\"\\']application/ld\+json[\"\\'][^>]*>(.*?)</script>', html, re.DOTALL)
print(f'Found {len(schemas)} JSON-LD schemas')
for s in schemas[:3]:
print(s[:300])
"
Expected schemas:
WebSite, WebPageBlogPosting, BreadcrumbListPerson, AboutPagefor url in "/" "/about" "/blog"; do
status=$(curl -sI "https://[domain]${url}" | head -1 | awk '{print $2}')
cache=$(curl -sI "https://[domain]${url}" | grep -i cache-control | head -1)
echo "$status $url — $cache"
done
Flag: any non-200/301 status, missing cache-control: public (may indicate SSR).
Since GSC API requires authentication, do a quick spot-check:
# Check if pages are discoverable (site: operator equivalent check)
curl -sL "https://[domain]/sitemap.xml" | grep -c "<loc>"
Document for human review: "Visit GSC → Coverage → check Excluded / Not Indexed count." Primary concern: dancegods has 97% pages not indexed — track via GSC manually until fixed.
Save to [project_path]/reports/seo-daily-YYYY-MM-DD.md:
# Daily SEO Report — [Domain] — YYYY-MM-DD
## Summary
| Check | Status | Notes |
|-------|--------|-------|
| Sitemap | OK/FAIL | [N] URLs found |
| Robots.txt | OK/WARN/FAIL | |
| Meta tags | OK/WARN/FAIL | |
| Canonical/hreflang | OK/WARN/FAIL | |
| Structured data | OK/WARN/FAIL | [N] schemas |
| HTTP status | OK/FAIL | |
**Overall: HEALTHY / NEEDS ATTENTION / CRITICAL**
## Issues Found
- [ ] [CRITICAL] [description] — [suggested fix]
- [ ] [WARNING] [description] — [suggested action]
## Indexing Status (manual GSC check required)
- dancegods: ~97% not indexed (known issue — track canonical/trailing slash fix)
- razbakov.com: [status]
## Raw Check Output
[paste curl outputs]
ikigai/sessions/YYYY-MM-DD-daily-review.md~/Projects/dancegodscompany/engineering/website/reports/~/Projects/ikigai/engineering/razbakov.com/reports/tools
--- name: handoff description: Get an agent past a browser/UI wall it can't (or must not) cross on its own — a login-gated dashboard, a CAPTCHA, a 2FA prompt, an API that keeps rejecting the write, or an irreversible click that policy says a human must make. This skill is an ESCALATION LADDER, not a first move: it tells you to try the automated browser surfaces FIRST (Chrome-in-Claude, computer-use, an autonomous browser sub-agent) and only fall back to the Handoff app — a wrapper browser that h
documentation
Summarize one or more YouTube videos from their links. Use this whenever the user pastes a youtube.com or youtu.be URL (or several) and wants to know what it's about — phrasings like "summarize to telegram", "tldr these videos", "what do these say", "summary of this talk", or just dropping links with no instruction at all. Fetches each video's real transcript via yt-dlp (not the page text, which never contains the transcript), cleans the captions, and writes a per-video summary. Default delivery is Telegram; honor any other surface the user names ("to my notes", "just here in chat", "email it"). Trigger even when the user only pastes bare links — bare YouTube links almost always mean "tell me what's in these".
data-ai
Daily Digest — Chief-of-Staff role consolidates the six top-managers into one Telegram message to the Commander, instead of six. Implements the protocol from agent-proactivity.md.
development
Seed a new or empty Instagram account with a 9-post grid (3×3) so the profile looks established the moment a new visitor lands. Designed for festivals, new businesses, product launches, conferences, communities — any time an empty IG profile would hurt conversion from external traffic (QR scans, flyer drops, cross-promo). Generates assets via /image-from-gemini (per content-publishing rules — never HTML), writes captions with hashtag sets, and outputs a posting order + cadence plan. Trigger generously: phrases like '9 posts for instagram', 'fill my IG', 'starter grid', 'launch grid', 'instagram seed', '9-post grid', 'IG account not to look empty', 'first instagram posts', 'feed bootstrap', '3x3 grid', 'instagram launch content'. Even if the user mentions only one piece (just the images, just the captions, just the order), use this skill — the grid only works as an integrated bundle.