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…
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 quality, or learn how top projects are structured.
$ npx -y skills add Houseofmvps/ultraship --skill clone-patterns --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/clone-patternsContext preview
The summary Claude sees to decide when to auto-load this skill.
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 quality, or learn how top projects are structured.
name: clone-patterns description: "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 quality, or learn how top projects are structured." argument-hint: "<repo-url-or-path>" allowed-tools: Bash, Read, Grep, Glob
Analyze any codebase's patterns and apply the best ones to your project.
Ask for the source project directory (must be cloned locally):
node ${CLAUDE_PLUGIN_ROOT}/tools/pattern-analyzer.mjs <source-directory> --compare=<your-project-directory>Parse the JSON output.
Present the source project's patterns:
**Project Structure:**
**Testing Strategy:**
**Code Quality:**
**TypeScript Practices:**
**Error Handling:**
**CI/CD:**
Show side-by-side comparison between the source project and yours:
For each area, show:
Create a prioritized adoption plan:
**Priority 1 (High Impact, Low Effort):**
**Priority 2 (High Impact, Medium Effort):**
**Priority 3 (Medium Impact, Higher Effort):**
For each pattern the user wants to adopt, implement it:
1. **TypeScript strict mode** — update tsconfig.json, fix resulting errors 2. **Test framework** — install vitest/jest, create first test, add test script 3. **Error handling** — create base error class, add error middleware 4. **CI pipeline** — create .github/workflows/ci.yml with lint, test, build 5. **Linting** — add eslint config matching source project's style
Only apply patterns the user explicitly approves.
**Steal like an artist.** The best codebases didn't invent their patterns — they borrowed from others and refined them. Learn what works, adapt it to your context, and make it your own.
"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…
Code review with principal-engineer-level depth. Reviews for correctness, performance, security, maintainability, and architecture. Use when completing tasks,…
Competitive X-Ray — analyze any competitor URL vs your site. Use when user wants to compare their site against a competitor, benchmark performance, or…