ship-looplisted
Install: claude install-skill mattbutlerengineering/mattbutlerengineering
# Ship Loop
Autonomous continuous improvement loop with **parallel dispatch**. Runs discovery, implementation, and verification concurrently to maximize throughput.
**Priority principle: Security > Availability > New features.**
**Speed principle: Parallelize everything. Never block when you can pipeline.**
## Architecture: Pipelined Parallel Loop
```
┌─────────────────────────────────────────────────────────┐
│ ITERATION N │
│ │
│ Phase A: Discover (parallel) │
│ ├── A1. System health check ─┐ │
│ ├── A2. Dependabot alerts ├── all in parallel │
│ ├── A2.5. Smoke audit (if merge) │ │
│ ├── A3. Check previous PRs/CI │ │
│ └── A4. Sentry triage (if avail) ─┘ │
│ │ │
│ Phase B: Dispatch (parallel batch) │
│ ├── Agent 1: issue #59 ──┐ │
│ ├── Agent 2: issue #62 ├── up to 5 in parallel │
│ └── Agent 3: issue #63 ──┘ │
│ │ │
│ Phase C: Collect & verify (parallel) │
│ ├── Check CI for PR from iteration N-1 ─┐ │
│ ├── Health check deploys ├── parallel │
│ └── Close verified issues ─┘ │
│