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…
Sprint workflow pipeline — chains plan → build → test → review → ship skills into a structured sprint. Use when starting a new feature or project iteration to follow the full lifecycle.
$ npx -y skills add Houseofmvps/ultraship --skill sprint --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/sprintContext preview
The summary Claude sees to decide when to auto-load this skill.
Sprint workflow pipeline — chains plan → build → test → review → ship skills into a structured sprint. Use when starting a new feature or project iteration to follow the full lifecycle.
name: sprint description: Sprint workflow pipeline — chains plan → build → test → review → ship skills into a structured sprint. Use when starting a new feature or project iteration to follow the full lifecycle. argument-hint: "<feature-description>"
A sprint is the full lifecycle of shipping a feature — from planning through deployment. This skill chains Ultraship skills into a structured pipeline where each phase produces artifacts that feed the next.
**Announce at start:** "I'm using the sprint workflow to guide this feature from plan to ship."
┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐
│ PLAN │───▶│ BUILD │───▶│ TEST │───▶│ REVIEW │───▶│ SHIP │───▶│ VERIFY │
│ │ │ │ │ │ │ │ │ │ │ │
│ /write- │ │ /execute-│ │ /tdd │ │ /review │ │ /deploy │ │ /canary │
│ plan │ │ plan │ │ │ │ │ │ /ship │ │ /retro │
└──────────┘ └──────────┘ └──────────┘ └──────────┘ └──────────┘ └──────────┘
│ │ │ │ │ │
▼ ▼ ▼ ▼ ▼ ▼
Plan doc Working code Tests pass Issues fixed Deployed Verified**Trigger:** User describes a feature, requirement, or bug to fix.
1. If the scope is large, use **`ultraship:brainstorming`** first to explore the idea space 2. Use **`ultraship:writing-plans`** to create an implementation plan 3. Plan is saved to `docs/ultraship/plans/YYYY-MM-DD-<feature>.md`
**Artifacts produced:** Implementation plan with file map, task list, test strategy
**Gate:** Plan must be reviewed and approved by user before proceeding to Build.
**Trigger:** Plan is approved.
1. Use **`ultraship:executing-plans`** to implement the plan task by task 2. If tasks are independent, use **`ultraship:dispatching-parallel-agents`** for parallel execution 3. If working in isolation, use **`ultraship:using-git-worktrees`** for a clean workspace
**Scaling to large work:** Subagents can now nest up to 5 levels deep — a dispatched implementer can fan out its own helpers for sub-steps. For codebase-wide changes (a migration, a cross-cutting refactor, an audit of every route), prefer a **dynamic Workflow**: describe the task naturally and include the word "workflow" so Claude generates an orchestration script that pipelines the work across many background subagents with verification built in. Use a single controller for a handful of tasks; escalate to a Workflow when the work-list is large or unknown in size.
**Artifacts produced:** Working code, committed to a feature branch
**Gate:** All planned tasks are implemented. Code compiles/runs without errors.
**Trigger:** Implementation is complete.
1. Use **`ultraship:test-driven-development`** to write tests for new code 2. Run the full test suite to catch regressions 3. If bugs are found, use **`ultraship:systematic-debugging`** to diagnose (not guess-and-fix)
**Artifacts produced:** Passing test suite, test coverage for new code
**Gate:** All tests pass. No known bugs in new code.
**Trigger:** Tests pass.
1. Use **`ultraship:requesting-code-review`** for self-review 2. Run `/review` for automated code review with confidence scoring 3. Run `/secure` for security scanning 4. Fix any high-confidence issues found
**Artifacts produced:** Review report, security scan results, fixes committed
**Gate:** No critical or high-severity issues remaining.
**Trigger:** Review is clean.
1. Use **`ultraship:verification-before-completion`** for final verification 2. Run `/ship` for the full pre-deploy scorecard (SEO, security, code quality, bundle) 3. If score is acceptable, run `/deploy` for the deploy pipeline 4. Use **`ultraship:finishing-a-development-branch`** to merge/PR
**Artifacts produced:** Deploy to production, PR/merge to main
**Gate:** `/ship` scorecard is READY TO SHIP. Deploy succeeds.
**Trigger:** Deploy completes.
1. Run `/canary` to verify production health 2. If canary detects issues, escalate to `/rescue` 3. Save any deployment learnings via `/learn` 4. Run `/retro` at the end of the sprint to review overall progress
**Artifacts produced:** Canary report, learnings, retrospective
1. **Never skip phases.** Each phase exists because skipping it causes problems. 2. **Gates are mandatory.** Don't proceed to the next phase until the gate criteria are met. 3. **Artifacts chain forward.** Each phase's output is the next phase's input. 4. **The user decides pace.** Some sprints complete in an hour. Some take a week. The pipeline adapts. 5. **Small batches.** Prefer shipping small features frequently over large features infrequently.
For bug fixes or small features (< 50 lines of code), compress the pipeline:
1. **Investigate** → Use `/investigate` to find root cause 2. **Fix + Test** → Fix the bug, write a test 3. **Verify** → Run `/review`, check tests pass 4. **Ship** → Push and run `/canary`
Skip the full planning phase for changes that don't need it.
Track sprint progress using tasks. At any point, the user can ask "where are we?" and get a clear answer:
Sprint: Add webhook retry logic Phase: 3/6 — TEST Status: 2 tests written, 1 failing (timeout issue in retry delay) Next: Fix failing test, then proceed to REVIEW
"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,…