Most AI tools give you pieces. This gives you a process.
From idea to deploy โ without losing context.
๐ Docs ยท ๐๏ธ Skills Catalog ยท ๐ ๏ธ Skills ยท ๐ฆ Templates ยท โก Quick Start
English | ็ฎไฝไธญๆ
| Without | With Ship Faster |
|---|---|
| ๐ฉ Agent loses context mid-task | โ Every run writes to disk โ resumable anytime |
| ๐ฅ No audit trail | โ Full logs + evidence for replay/review |
| ๐ฃ Risky deploys, DB writes, payments | โ Approval gates before side effects |
| ๐ฒ Ad-hoc prompts, inconsistent outputs | โ Composable skills with predictable structure |
- ๐ค AI coding agents (Claude Code, Cursor, OpenCode, etc.) โ skills are the primary interface
- ๐จโ๐ป Developers who operate those agents โ copy/paste prompts, review artifacts, approve gates
- ๐ฅ Teams who want reproducible, auditable AI-assisted development
๐ก This is NOT a CLI, NOT a SaaS. It's a set of files you copy into your agent's skill directory.
- Agents: Claude Code, Cursor, OpenCode, any MCP-capable agent
- Default stack assumptions: Next.js + TypeScript + Supabase + Stripe + Vercel
# macOS / Linux
mkdir -p ~/.claude/skills
curl -L https://github.com/Heyvhuang/ship-faster/archive/refs/heads/main.tar.gz \
| tar -xz --strip-components=2 -C ~/.claude/skills ship-faster-main/skills/๐ช Windows (PowerShell)
New-Item -ItemType Directory -Force -Path "$HOME\.claude\skills" | Out-Null
$zip = "$env:TEMP\ship-faster-main.zip"
Invoke-WebRequest -Uri "https://github.com/Heyvhuang/ship-faster/archive/refs/heads/main.zip" -OutFile $zip
Expand-Archive -Path $zip -DestinationPath "$env:TEMP\ship-faster" -Force
Copy-Item -Recurse -Force "$env:TEMP\ship-faster\ship-faster-main\skills\*" "$HOME\.claude\skills\"git clone https://github.com/Heyvhuang/ship-faster.git
cd ship-faster
# Copy skills to your agent
cp -r skills/* ~/.claude/skills/
# Or run a template directly
cd templates/001-copyback-studio && pnpm install && pnpm dev# List available skills
npx --yes skills add Heyvhuang/ship-faster --list
# Install all skills (Claude Code)
npx --yes skills add Heyvhuang/ship-faster --yes --agent claude-code
# Install a single skill
npx --yes skills add Heyvhuang/ship-faster --yes --agent claude-code --skill workflow-ship-fasterOnce skills are installed, paste one of these into your agent:
| Scenario | Prompt |
|---|---|
| ๐ก I have an idea | Use workflow-project-intake |
| ๐ฆ I have a repo | Use workflow-ship-faster |
| ๐ฏ I want one feature | Use workflow-feature-shipper |
| ๐จ I need UI/UX direction | Use tool-design-style-selector |
๐ Full prompt examples
๐ก Start from scratch:
Use workflow-project-intake.
Idea: <what are we building?>
Users: <who is it for?>
Must-have: <3-5 bullets>
Constraints: <deadline / tech / design / infra>
Need: deploy? database? billing? seo?
๐ฆ Ship existing repo:
Use workflow-ship-faster.
Repo path: <absolute path or '.'>
Constraints: <deadline / tech / non-goals>
Need: deploy? database? billing? seo?
๐ฏ One feature (PR-sized):
Use workflow-feature-shipper.
Repo path: <absolute path or '.'>
Feature: <one sentence>
Acceptance criteria:
- <bullet>
- <bullet>
Non-goals:
- <bullet>
Every run writes to disk for replay/audit/resume:
runs/ship-faster/active/<run_id>/
โโโ proposal.md # Why/what/scope (stable context)
โโโ tasks.md # Checklist [ ] โ [x] (resume here!)
โโโ context.json # Switches (deploy/db/billing/seo)
โโโ evidence/ # Large outputs / audits
โโโ logs/ # Debug events
๐ Learn more: Runs & Approvals
Agents ยท autonomous behavior ยท day/night cycle ยท canvas rendering โ Pro: real-time interactions + moods + conversations + matrix effects + OpenClaw integration
Composable workflows that ship end-to-end. Copy to ~/.claude/skills/.
- โก workflow-ship-faster โ End-to-end: idea โ foundation โ design โ deploy
- ๐ฅ workflow-project-intake โ Brainstorm โ clarify โ route to workflow
- ๐ workflow-feature-shipper โ PR-sized feature iteration
- ๐ง workflow-brainstorm โ One question at a time โ design spec
- ๐ workflow-execute-plans โ Batch execution with checkpoints
- ๐ค workflow-template-extractor โ Extract runnable template from real project
- ๐ฑ workflow-template-seeder โ Seed new template from spec
- ๐จ tool-design-style-selector โ Scan project โ generate design-system.md
- ๐๏ธ tool-ui-ux-pro-max โ Palette / typography / UX lookup database
- ๐ tool-ast-grep-rules โ AST-based code search & rewrite
- ๐ deep-research โ Deep codebase research in an isolated Explore subagent
- ๐งฐ tool-hooks-doctor โ Check/install Claude Code evolution hooks
- ๐ tool-better-auth โ Better Auth integration guidance
- ๐งช tool-systematic-debugging โ Root-cause-first debugging process
- ๐งฉ tool-schema-markup โ Structured data / JSON-LD guidance
- ๐ tool-programmatic-seo โ Template-driven pages at scale
- ๐ tool-x-article-publisher โ Publish Markdown to X Articles
- ๐ฃ publish-x-article โ Publish Markdown to X Articles (alt name)
- โ review-quality โ Merge readiness + maintainability + docs audit
- โ๏ธ review-react-best-practices โ React/Next.js performance rules
- ๐ review-seo-audit โ SEO audit framework
- ๐งน review-clean-code โ Clean Code principles analysis
- ๐ review-doc-consistency โ Docs vs code alignment check
- ๐ฆ review-merge-readiness โ Structured PR review with verdict
- ๐๏ธ supabase โ DB ops with approval gates + bundled Postgres best practices
- ๐ณ stripe โ Billing ops with confirmation gates
- โ๏ธ cloudflare โ Workers / KV / R2 / D1 infrastructure
- ๐๏ธ mcp-supabase โ Supabase via MCP with write confirmation
- ๐ณ mcp-stripe โ Stripe MCP transactions with approval gates
- โ๏ธ mcp-cloudflare โ Cloudflare MCP with permission tiers
- ๐ skill-evolution โ Capture context โ generate patches
- โจ skill-creator โ Create new skills from scratch
- ๐ง skill-improver โ Analyze runs โ improve skills
- ๐ workflow-creator โ Create workflow chains from existing skills
๐ Full catalog:
skills/manifest.json
Runnable example projects โ demos + regression references.
| Template | Stack | Description | |
|---|---|---|---|
| ๐จ | CopyBack Studio | Next.js + Supabase + R2 | AI image workflow |
| ๐ | UnitEconomics Console | Next.js | Business metrics dashboard |
| ๐ฐ | MarginLedger | Vite + React | Profit margin tracker |
| ๐ | Kanban Load Mirror | Vite + React | Task load balancing |
| ๐ | Multi-Store Daily Brief | Vite + React | Retail analytics |
| โ | Ticket to FAQ | Vite + React | Support โ FAQ generator |
| ๐ | Elevate Move-in Booking | Vite + React | Appointment scheduling |
๐ก The repo root is not runnable. Pick a template or run skills against your own project.
Standalone UI components โ embed in your own projects.
| Component | Stack | Description | |
|---|---|---|---|
| ๐ข | Pixel Office Kit | Next.js + Canvas | AI agent pixel office โ watch agents work, walk, and collaborate |
Preview: Pixel Office Kit
4 agents ยท auto behavior ยท day/night cycle โ Pro: 6 agents + moods + conversations + matrix effects + OpenClaw integration
Repository Structure
ship-faster/
โโโ docs/ # Documentation
โโโ templates/ # Runnable full projects
โ โโโ 001-copyback-studio/
โ โโโ 002-uniteconomics-console/
โ โโโ 003-marginledger/
โ โโโ 004-kanban-load-mirror/
โ โโโ 005-multi-store-daily-brief/
โ โโโ 006-ticket-to-faq/
โ โโโ 007-elevate-move-in-booking/
โโโ skills/ # Agent skill packages
โ โโโ workflow-ship-faster/
โ โโโ workflow-project-intake/
โ โโโ review-*/
โ โโโ tool-*/
โ โโโ supabase/
โ โโโ stripe/
โ โโโ cloudflare/
โ โโโ assets/ # Diagrams and static assets
โโโ pixel-office-kit/ # AI agent pixel office component
โโโ snippets/ # Internal reference code
โ โโโ product-starter/
โโโ LICENSE
โโโ README.md
Naming Convention
| Type | Pattern | Example |
|---|---|---|
| Templates | templates/<NNN>-<slug>/ |
001-copyback-studio |
| Snippets | snippets/<slug>/ |
product-starter |
| Skills | skills/<prefix>-<slug>/ |
workflow-ship-faster |
Prefixes: workflow-, tool-, review-, skill-
Service skills (supabase, stripe, cloudflare) use the service name directly.
Update / Uninstall
Update (overwrite existing skills):
Note: this only overwrites skill folders with the same name; other folders in ~/.claude/skills/ are untouched.
curl -L https://github.com/Heyvhuang/ship-faster/archive/refs/heads/main.tar.gz \
| tar -xz --strip-components=2 -C ~/.claude/skills ship-faster-main/skills/Install single skill:
git clone https://github.com/Heyvhuang/ship-faster.git
cp -r ship-faster/skills/workflow-ship-faster ~/.claude/skills/Uninstall: Delete skill folders from ~/.claude/skills/ (see skills/manifest.json for names).
Adding Templates / Snippets
New Template:
- Create
templates/<NNN>-<slug>/ - Include
README.mdand.env.local.example
New Snippet:
- Create
snippets/<slug>/ - Include
README.mdexplaining what skills should copy
- Never commit secrets or
.env.localfiles - Build outputs (
.next/,*.tsbuildinfo) are gitignored - Write operations (DB, deploy, payments) require explicit approval
MIT License โ see LICENSE

