com um clique
shine-meta-check
Audit page <meta> tags, OpenGraph, and Twitter cards for a URL.
Menu
Audit page <meta> tags, OpenGraph, and Twitter cards for a URL.
Write a designer brief for a logo — concept, references, constraints, deliverables.
Interactive command center for managing multiple phases from one terminal
Analyze codebase with parallel mapper agents to produce .planning/codebase/ documents
Structure meeting notes — attendees, decisions, action items, open questions.
Plan a technical migration — inventory, target, strategy, phases, cutover, rollback.
Generate a comprehensive project summary from milestone artifacts for team onboarding and review
| name | shine-meta-check |
| description | Audit page <meta> tags, OpenGraph, and Twitter cards for a URL. |
| argument-hint | <url> |
| allowed-tools | ["Bash","WebFetch"] |
Audit a page for SEO-critical meta tags: <title>, <meta description>, canonical, OpenGraph (og:*), and Twitter card (twitter:*).
/shine-meta-check https://example.com/page
Primary: try the meta-inspector CLI if installed (fastest, structured output).
!command -v meta-inspector >/dev/null 2>&1 && meta-inspector "$ARGUMENTS" --json || echo "__FALLBACK__"
Fallback: if the CLI is absent, use WebFetch to retrieve the HTML and parse with a regex pass. Extract:
<title>…</title><meta name="description" content="…"><link rel="canonical" href="…"><meta property="og:*"><meta name="twitter:*">Evaluate against SEO conventions:
og:title, og:description, og:image, og:url, og:typetwitter:card, twitter:title, twitter:description, twitter:image5-section report (see shine/references/ui-brand.md):
## Summary
✓ / ⚠ / ✗ overall, + top 3 issues
## Details
Table of each tag, length, status.
## Sources
The URL fetched + tool used.
## Open questions
Anything that requires live rendering (JS-inserted tags).
## Next step
One concrete remediation.
meta-inspector or enable WebFetch. Never fabricate tag values.