a11y
Accessibility audit + auto-fix (WCAG 2.2 A/AA). Scans built/static HTML for screen-reader, keyboard, and structure failures, fixes the deterministic ones, and…
Diagnose and fix non-indexed pages using GSC and Bing Webmaster data. Finds exactly why each page isn't indexed and applies the fix.
$ npx -y skills add Houseofmvps/ultraship --skill index-fix --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/index-fixContext preview
The summary Claude sees to decide when to auto-load this skill.
Diagnose and fix non-indexed pages using GSC and Bing Webmaster data. Finds exactly why each page isn't indexed and applies the fix.
name: index-fix description: Diagnose and fix non-indexed pages using GSC and Bing Webmaster data. Finds exactly why each page isn't indexed and applies the fix. argument-hint: "<site-url>" allowed-tools: Bash, Read, Edit, Grep, Glob
Diagnose why pages aren't indexed in Google and Bing, fix the root causes, and resubmit for indexing. This skill uses real data from GSC URL Inspection API and Bing Webmaster Tools — no guessing.
**Goal: 100% index coverage for pages that SHOULD be indexed. Not every URL belongs in the index — staging pages, admin panels, thin pagination, and intentionally private content should stay excluded.**
Verify data sources: 1. **GSC** (required): `ULTRASHIP_GSC_CREDENTIALS` or `ULTRASHIP_GSC_ACCESS_TOKEN` 2. **Bing** (recommended): `ULTRASHIP_BING_KEY`
If GSC is not configured, show setup guide and stop — GSC is required for URL inspection.
Get the current index state:
node ${CLAUDE_PLUGIN_ROOT}/tools/index-doctor.mjs coverage <site-url>This shows:
If Bing key is available:
node ${CLAUDE_PLUGIN_ROOT}/tools/index-doctor.mjs compare <site-url> <sitemap-url>Compare Google vs Bing indexing to find:
Run the full diagnosis:
node ${CLAUDE_PLUGIN_ROOT}/tools/index-doctor.mjs diagnose <site-url> <sitemap-url>This inspects up to 50 URLs via GSC URL Inspection API and reports:
**Blocked by robots.txt** (critical):
**Noindex tag** (critical):
**Soft 404** (high):
**Crawled but not indexed** (high):
**Discovered but not crawled** (medium):
**Redirect** (medium):
**Canonical mismatch** (medium):
**Server error** (critical):
**404 Not Found** (high):
**⚠️ SAFETY FIRST: Before applying ANY fix, verify the block/exclusion wasn't intentional. Ask the user if unsure. Removing noindex from staging pages or robots.txt Disallow from admin paths can expose sensitive content.**
For each diagnosed issue, apply the fix:
**robots.txt fixes:**
**noindex fixes:**
**Content quality fixes:**
**Sitemap cleanup:**
node ${CLAUDE_PLUGIN_ROOT}/tools/sitemap-generator.mjs <dir> <base-url>**Internal linking:**
**Only resubm
"ULTRASHIP" Claude Code plugin — 39 skills, 33 tools, 11 agents for ship-ready workflows: planning, review, pentesting, safety guardrails, canary monitoring, SEO/AI-readiness check, penetration testing, code review, competitive analysis, incident response. 1 dependency. 180 tests. MIT.
Repo: Houseofmvps/ultraship
Accessibility audit + auto-fix (WCAG 2.2 A/AA). Scans built/static HTML for screen-reader, keyboard, and structure failures, fixes the deterministic ones, and…
Living Architecture Map — auto-generate Mermaid diagrams of your codebase. Use when user wants to visualize architecture, understand code structure, generate…
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent,…
Post-deploy canary monitoring — checks site health, detects regressions, monitors for errors after deployment. Use after deploying to verify production is…
Learn From the Best — analyze patterns from any codebase and apply them to yours. Use when user wants to adopt best practices from another repo, compare code…
Code review with principal-engineer-level depth. Reviews for correctness, performance, security, maintainability, and architecture. Use when completing tasks,…