Skip to content

Heyvhuang/ship-faster

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

79 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Ship Faster

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 | ็ฎ€ไฝ“ไธญๆ–‡


๐Ÿค” Why Ship Faster?

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

๐ŸŽฏ Who is this for?

  • ๐Ÿค– 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.


๐Ÿ”— Works With

  • Agents: Claude Code, Cursor, OpenCode, any MCP-capable agent
  • Default stack assumptions: Next.js + TypeScript + Supabase + Stripe + Vercel

โšก Quick Start

Option A: Install skills only (10 seconds)

# 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\"

Option B: Clone for templates + skills (30 seconds)

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

Option C: Install via skills.sh (npx)

# 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-faster

๐Ÿš€ Pick Your Path

Once 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>

๐Ÿ”„ How It Works

Ship Faster workflow

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


๐ŸŽฎ Pixel Office Kit

Pixel Office Kit โ€” AI agents working in a pixel-art office

Agents ยท autonomous behavior ยท day/night cycle ยท canvas rendering โ€” Pro: real-time interactions + moods + conversations + matrix effects + OpenClaw integration


๐Ÿ› ๏ธ Skills (34)

Composable workflows that ship end-to-end. Copy to ~/.claude/skills/.

๐Ÿ”„ Workflows

๐Ÿ”ง Tools

๐Ÿ”Ž Reviews

๐Ÿ”Œ Services

  • ๐Ÿ—„๏ธ supabase โ€” DB ops with approval gates + bundled Postgres best practices
  • ๐Ÿ’ณ stripe โ€” Billing ops with confirmation gates
  • โ˜๏ธ cloudflare โ€” Workers / KV / R2 / D1 infrastructure

๐Ÿ”Œ Services (MCP)

  • ๐Ÿ—„๏ธ mcp-supabase โ€” Supabase via MCP with write confirmation
  • ๐Ÿ’ณ mcp-stripe โ€” Stripe MCP transactions with approval gates
  • โ˜๏ธ mcp-cloudflare โ€” Cloudflare MCP with permission tiers

๐Ÿงฌ Meta

๐Ÿ“‹ Full catalog: skills/manifest.json


๐Ÿ“ฆ Templates (7)

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.


๐ŸŽฎ Components

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

Pixel Office Kit demo

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:

  1. Create templates/<NNN>-<slug>/
  2. Include README.md and .env.local.example

New Snippet:

  1. Create snippets/<slug>/
  2. Include README.md explaining what skills should copy

๐Ÿ”’ Security

  • Never commit secrets or .env.local files
  • Build outputs (.next/, *.tsbuildinfo) are gitignored
  • Write operations (DB, deploy, payments) require explicit approval

๐Ÿ“œ License

MIT License โ€” see LICENSE


Made by VoxYZ

Ship small. Ship fast. Ship often.

Links: Twitter ยท GitHub

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors