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…
Demo-Ready Mode — prepare your app for demos, screenshots, and presentations. Use when user wants to demo their app, take screenshots, prepare for a presentation, or clean up dev artifacts.
$ npx -y skills add Houseofmvps/ultraship --skill demo --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/demoContext preview
The summary Claude sees to decide when to auto-load this skill.
Demo-Ready Mode — prepare your app for demos, screenshots, and presentations. Use when user wants to demo their app, take screenshots, prepare for a presentation, or clean up dev artifacts.
name: demo description: "Demo-Ready Mode — prepare your app for demos, screenshots, and presentations. Use when user wants to demo their app, take screenshots, prepare for a presentation, or clean up dev artifacts." allowed-tools: Bash, Read, Edit, Grep, Glob
One command to make your app demo-ready. Clean up dev artifacts, check visual polish, generate a walkthrough script.
node ${CLAUDE_PLUGIN_ROOT}/tools/demo-prep.mjs <project-directory>Parse the JSON output for demo readiness score and issues.
Present the demo readiness score and status:
For each category of issues found:
**Console Logs (Priority: High)** Remove all console.log/debug statements from production code:
**TODO Comments (Priority: Medium)** For each TODO:
**Placeholder Text (Priority: High)** Replace all Lorem ipsum and placeholder text with real copy that makes sense for the product.
Fix visual issues found:
**Missing Favicon:**
**Default Branding:**
**Error Pages:**
**Loading States:**
**Empty States:**
If the app has a seed file:
If no seed file exists:
Present the auto-generated walkthrough:
For each step: 1. **Action** — what to do (navigate, click, fill) 2. **Screenshot** — whether to capture this screen 3. **Talking point** — what to say/highlight at this step 4. **Notes** — things to point out or avoid
If the user wants screenshots, use Playwright MCP:
1. Navigate to each walkthrough URL 2. Use `browser_resize` for the target viewport 3. Use `browser_take_screenshot` at each step 4. Capture both desktop and mobile versions of key screens
After all fixes, re-run the tool to verify the score improved:
node ${CLAUDE_PLUGIN_ROOT}/tools/demo-prep.mjs <project-directory> --check-onlyReport the before/after scores.
**First impressions are forever.** A demo with console.logs, Lorem ipsum, and empty states kills credibility. A polished demo with real data and smooth flows wins deals, users, and investors.
"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,…