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…
Safety guardrails — blocks destructive commands (rm -rf, DROP TABLE, force-push, git reset --hard) and optionally restricts file edits to a specific directory. Use when working on critical systems or when you want extra protection.
$ npx -y skills add Houseofmvps/ultraship --skill guard --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/guardContext preview
The summary Claude sees to decide when to auto-load this skill.
Safety guardrails — blocks destructive commands (rm -rf, DROP TABLE, force-push, git reset --hard) and optionally restricts file edits to a specific directory. Use when working on critical systems or when you want extra protection.
name: guard description: Safety guardrails — blocks destructive commands (rm -rf, DROP TABLE, force-push, git reset --hard) and optionally restricts file edits to a specific directory. Use when working on critical systems or when you want extra protection. argument-hint: "<directory-to-protect>" allowed-tools: Bash, Read
Guard protects you from accidental destructive actions by intercepting dangerous commands before they execute. It uses Claude Code's PreToolUse hooks to catch risky patterns in real-time.
**Announce at start:** "I'm activating Guard — destructive commands will be blocked until you explicitly approve them."
When the user specifies a directory to freeze to, Guard blocks edits outside that directory:
User: "Only edit files in src/api/" → Guard blocks Edit/Write calls to any path not under src/api/
Guard installs PreToolUse hooks that run BEFORE Claude executes Bash, Edit, or Write tools:
1. **Bash hook** — Scans the command string for destructive patterns. If matched, outputs a warning and blocks execution. 2. **Edit/Write hook** — If a freeze directory is set, checks that the target file is within the allowed path.
The hooks are defined in this skill's configuration and activate when the skill is loaded.
Just invoke `/guard` — destructive command blocking is immediate.
Tell Claude which directory to restrict edits to:
"Only edit files in packages/api/" "Freeze edits to src/components/"
Guard will write the freeze path to `.ultraship/guard-freeze.txt` and enforce it on all Edit/Write operations.
"Unfreeze" or "Remove edit restrictions"
If Guard blocks something you actually need to run, explicitly confirm:
"Yes, I want to force-push to main" "Confirmed: drop the users table"
Guard will allow explicitly confirmed destructive actions.
1. **Block by default, allow on confirmation.** Better to stop and ask than to destroy. 2. **No silent failures.** Always explain what was blocked and why. 3. **The user is sovereign.** Explicit confirmation overrides any guard. 4. **Minimal friction for safe operations.** Guard only triggers on genuinely dangerous patterns.
"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,…