Skip to Content
ShipCode
Introduction

ShipCode

Autonomous AI coding pipeline. GitHub issues in, pull requests out.

What is ShipCode?

ShipCode turns GitHub issues into pull requests autonomously. Label an issue with agent:claude or agent:codex, and ShipCode handles planning, adversarial review, implementation, verification, and PR creation.

Quick Start

# CLI (requires Node.js >= 22.5.0) npx shipcode onboard npx shipcode run 42

Or run the desktop app:

git clone https://github.com/shipshitdev/shipcode cd shipcode bun install bun run dev:desktop

How it works

  1. Plan — Opus 4.6 rewrites the issue into a spec and structured plan
  2. Review — Codex critiques the plan with high reasoning (max 2 rounds)
  3. Execute — Routed model implements in an isolated git worktree
  4. Verify — Opus checks the diff against acceptance criteria
  5. Ship — Push branch, create PR, link to issue
ShipCode - Autonomous AI coding pipeline