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…
Instant Project Onboarding — generate a complete onboarding guide for any project. Use when user wants to onboard a new developer, understand a new codebase, or generate project documentation.
$ npx -y skills add Houseofmvps/ultraship --skill onboard --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/onboardContext preview
The summary Claude sees to decide when to auto-load this skill.
Instant Project Onboarding — generate a complete onboarding guide for any project. Use when user wants to onboard a new developer, understand a new codebase, or generate project documentation.
name: onboard description: "Instant Project Onboarding — generate a complete onboarding guide for any project. Use when user wants to onboard a new developer, understand a new codebase, or generate project documentation." allowed-tools: Bash, Read, Grep, Glob, Write
One command generates everything a new developer needs to be productive in your codebase.
node ${CLAUDE_PLUGIN_ROOT}/tools/onboard-generator.mjs <project-directory>Parse the JSON output.
Format the output as a comprehensive onboarding document:
**Project Overview:**
**Architecture Diagram:** Display the Mermaid architecture diagram from the tool output. This gives new developers an instant visual understanding.
**Getting Started:** 1. Prerequisites (runtime, package manager, databases) 2. Clone and install steps 3. Environment setup (.env vars with descriptions) 4. Run the dev server 5. Run tests
**Key Files:** Table of the most important files and their roles. New developers should read these first.
**API Routes:** Table of all detected API routes with methods, paths, and source files.
**Database:**
**Recent Activity:** Last 10 commits — gives context on what the team is currently working on.
**Gotchas:** Known issues and common problems new developers encounter.
Save the onboarding guide to `docs/ONBOARDING.md` in the project:
# [Project Name] — Developer Onboarding > Auto-generated by Ultraship on [date] ## Overview ... ## Architecture ```mermaid [diagram]
...
...
...
...
...
### Phase 4: Identify Knowledge Gaps After generating the guide, identify areas that need human input: - Undocumented environment variables - Missing README sections - No contributing guidelines - No architecture decision records (ADRs) Suggest creating these if they don't exist. ## Key Principle **30-minute rule.** A new developer should be able to run the project locally within 30 minutes of reading this guide. If they can't, the guide is incomplete.
"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,…