$npx -y skills add gtrabanco/agentic-workflow --skill review-seoInternal SEO review pass of the agentic-workflow review pack — composed in-turn by review-change and product-audit; not a menu entry. Checks changed web pages/routes for indexability, metadata, and structured data — applies only to public web surfaces. Findings only; never edits
| 1 | # Review SEO (internal) |
| 2 | |
| 3 | Composed by `review-change` / `product-audit` within their conversation — on any |
| 4 | agent, follow this file inline as the routed step. **Findings only; never edits, |
| 5 | never refactors.** |
| 6 | |
| 7 | ## Scope |
| 8 | |
| 9 | The diff or path/glob the caller passes; default the current change vs the |
| 10 | default branch. State the scope at the top of the returned table. |
| 11 | |
| 12 | ## Checklist (evaluate EVERY item — none is optional; n/a must be stated) |
| 13 | |
| 14 | - ✓ Read the project's SEO doc first (e.g. `docs/frontend/SEO.md`) — n/a all |
| 15 | items with the reason if the product has no public web surface |
| 16 | - ✓ Every new/changed public page has a unique title and meta description |
| 17 | within the project's declared lengths |
| 18 | - ✓ Canonical URL correct on new/changed routes (no accidental duplicates) |
| 19 | - ✓ Indexability intended = indexability actual (robots/noindex/sitemap state |
| 20 | matches the page's purpose) |
| 21 | - ✓ One h1 per page; heading levels don't skip |
| 22 | - ✓ Structured data valid for the content type the project declares (cite the |
| 23 | validator output when run) |
| 24 | - ✓ Links crawlable (real hrefs, not click handlers) on changed navigation |
| 25 | - ✓ Images on changed pages have descriptive filenames/alt where the SEO doc |
| 26 | requires |
| 27 | - ✓ No render-blocking regression for primary content (content present without |
| 28 | JS where the project declares SSR/SSG) |
| 29 | |
| 30 | ## Return exactly |
| 31 | |
| 32 | ``` |
| 33 | REVIEW SEO — scope: <scope> |
| 34 | |
| 35 | | # | Finding | Sev | Evidence | Suggested fix | |
| 36 | |---|---------|-----|----------|---------------| |
| 37 | | 1 | <what> | critical|major|minor | <file:line> | <smallest action> | |
| 38 | |
| 39 | Checklist: <n> evaluated, <n> pass, <n> findings, <n> n/a (<which + why>) |
| 40 | Summary: <1-2 sentences> |
| 41 | Decision: PASS | FAIL |
| 42 | ``` |
| 43 | |
| 44 | FAIL if any critical or major finding is open; PASS otherwise. Minor findings |
| 45 | never block — they route to the caller's triage step. |
| 46 | |
| 47 | ## Done when |
| 48 | |
| 49 | - Every checklist item was evaluated with evidence (file:line or command output) |
| 50 | or explicitly marked n/a with the reason. |
| 51 | - The fixed-format block above is returned — nothing more, nothing less — and |
| 52 | no code was changed. |