Ship Decisions logo

Ship Decisions

Community
menkesu
ship-decisions

Guides "ship or iterate?" decisions using Shreyas Doshi's frameworks, Marty Cagan's shipping philosophy, and Tobi Lutke's reversible decision-making. Use when deciding if feature is ready, preventing perfectionism paralysis, applying one-way vs two-way door thinking, or balancing technical debt vs shipping speed.

Overview

Publishermenkesu
Repositoryawesome-pm-skills
Skill nameship-decisions
Stars
406
Forks
120
Bundled files
Instructions only
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by menkesu on GitHub. Read the source before you install it.

Installation

Install the Ship Decisions AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/menkesu/awesome-pm-skills.git /tmp/awesome-pm-skills
mkdir -p .claude/skills
cp -r /tmp/awesome-pm-skills/ship-decisions .claude/skills/ship-decisions
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Ship Decisions in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Ship Decisions on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Ship Decisions is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

The Shipping Decision Matrix

When This Skill Activates

Claude uses this skill when:

  • User asks "is this ready to ship?"
  • Deciding between shipping now vs iterating more
  • Evaluating if "good enough" is good enough
  • Balancing technical debt vs shipping speed
  • Preventing perfectionism paralysis

Core Frameworks

1. Reversible vs Irreversible Decisions (Source: Jeff Bezos, applied by Shreyas Doshi)

One-Way vs Two-Way Doors:

"Some decisions are like one-way doors - hard to reverse. Most decisions are like two-way doors - easy to reverse. Don't treat all decisions the same."

The Framework:

🚪 Two-Way Doors (Reversible)

  • Can be undone or changed easily
  • Low cost to reverse
  • Learning > being right
  • Decision speed: FAST (hours/days)
  • Process: Ship and iterate

🚪 One-Way Doors (Irreversible)

  • Hard or impossible to reverse
  • High cost to undo
  • Need to get it right
  • Decision speed: SLOW (weeks/months)
  • Process: Research, debate, decide carefully

How to Apply:

Before shipping, ask:
1. "Can we reverse this decision?"
   - YES → Two-way door → Ship fast, iterate
   - NO → One-way door → Go slow, get it right

2. "What's the cost of being wrong?"
   - LOW → Ship and learn
   - HIGH → Research more

3. "Can we learn more by shipping?"
   - YES → Ship to learn
   - NO → Prototype/test first

Examples:

TWO-WAY DOORS (Ship Fast):
✅ Button color
✅ Copy/messaging
✅ UI layout
✅ Feature flag experiments
✅ Pricing (for small customers)

ONE-WAY DOORS (Go Slow):
⚠️ Database schema (migrations expensive)
⚠️ API contracts (breaking changes hurt users)
⚠️ Brand decisions (hard to rebrand)
⚠️ Pricing (for enterprise customers)
⚠️ Architecture (refactoring expensive)

2. The Shipping Scorecard (Source: Shreyas Doshi)

Is It Ready?

"Don't ship broken products. But also don't wait for perfect. Ship when it's good enough for real users to get value."

The 5-Check System:

✅ 1. Core Functionality Works

  • Happy path functions end-to-end
  • User can complete main job
  • No critical bugs

✅ 2. Edge Cases Acceptable

  • Not perfect, but handled gracefully
  • Errors don't break experience
  • User can recover

✅ 3. Reversible Decision

  • Can we undo or iterate?
  • Is this a two-way door?
  • What's the rollback plan?

✅ 4. Learning Value > Polish Value

  • Will shipping teach us more than building more?
  • Do we need real user feedback to improve?
  • Is hypothetical polish valuable without data?

✅ 5. Risk Mitigated

  • Critical failure modes addressed
  • Monitoring in place
  • Gradual rollout plan

Scoring:

5/5 checks → SHIP NOW
4/5 checks → SHIP TO SMALL GROUP
3/5 checks → ITERATE ONE MORE CYCLE
<3/5 checks → NOT READY

3. Technical Debt vs Shipping Speed (Source: Marty Cagan, Tobi Lutke)

The Tradeoff:

"Technical debt isn't inherently bad. It's bad when it slows you down. Ship fast, pay down debt strategically."

When to Ship with Tech Debt:

  • Learning debt: Need user feedback to validate approach
  • Temporary: Planning to refactor soon anyway
  • Isolated: Debt doesn't affect other systems
  • Value >> Debt cost: User value gained > refactor cost

When to Pay Down Debt First:

  • Compounding debt: Will make future changes harder
  • Security/Privacy: User trust at risk
  • Platform/API: Breaking changes expensive
  • Team velocity: Slowing everyone down

Framework:

Assess Tech Debt:
1. What's the carrying cost?
   - Slows future features?
   - Blocks other teams?
   - Creates bugs?

2. What's the payoff of fixing?
   - Unblocks work?
   - Reduces bugs?
   - Improves velocity?

3. What's the user value of shipping now?
   - Solves immediate problem?
   - Competitive advantage?
   - Revenue impact?

Decision:
IF (user value > debt cost) → SHIP
IF (debt blocks future) → REFACTOR
IF (uncertain) → SHIP TO SMALL GROUP

4. Gradual Rollout Strategy (Source: Modern tech best practices)

Don't Ship to Everyone at Once:

"The safest way to ship is gradually. Start small, monitor, expand."

The Rollout Ladder:

Stage 1: Internal (1-10 users)

  • Team uses it daily
  • Find obvious bugs
  • Duration: 1-3 days

Stage 2: Early Adopters (1-5% users)

  • Select forgiving users
  • Eager for new features
  • Provide feedback actively
  • Duration: 3-7 days

Stage 3: Broader Beta (10-25%)

  • Larger sample size
  • Monitor metrics closely
  • Duration: 1-2 weeks

Stage 4: General Availability (100%)

  • All users
  • Stable metrics
  • Duration: Ongoing

Rollback Plan:

javascript
// Feature flag implementation
if (isFeatureEnabled(user, 'new-feature')) {
  return newExperience();
} else {
  return oldExperience();
}

// Quick rollback = change flag, no deploy

Decision Tree: Ship or Wait?

FEATURE: Ready to evaluate
├─ Core functionality works? ───────NO──→ FIX CRITICAL BUGS
│  YES ↓
├─ Is this reversible decision? ────────┐
│  YES (two-way door) ──────────────────┤
│  NO (one-way door) → RESEARCH MORE    │
│                                        ↓
├─ Edge cases acceptable? ──────────────┤
│  YES ─────────────────────────────────┤
│  NO → FIX OR GRACEFUL DEGRADATION     │
│                                        ↓
├─ Can we learn from shipping? ─────────┤
│  YES ─────────────────────────────────┤
│  NO → TEST/PROTOTYPE MORE             │
│                                        ↓
├─ Risk mitigated? ─────────────────────┤
│  YES → SHIP GRADUALLY                 │
│  NO → ADD MONITORING/ROLLBACK         │
│                                        ↓
└─ SHIP ←───────────────────────────────┘
   Start: Internal → 5% → 25% → 100%

Action Templates

Template 1: Shipping Readiness Assessment

markdown
# Feature: [Name]

## Shipping Scorecard

### 1. Core Functionality Works
- [ ] Happy path works end-to-end
- [ ] User can complete main job
- [ ] No critical bugs blocking core use
**Status:** [Ready / Needs work]

### 2. Edge Cases Acceptable
- [ ] Error states handled gracefully
- [ ] User can recover from failures
- [ ] Edge cases don't break experience
**Status:** [Acceptable / Needs improvement]

### 3. Reversible Decision
- Is this reversible? [Yes / No]
- Rollback plan: [describe]
- Two-way door? [Yes / No]
**Status:** [Safe to ship / Risky]

### 4. Learning Value
- Will shipping teach us more? [Yes / No]
- Do we need real user feedback? [Yes / No]
- Is polish speculative without data? [Yes / No]
**Status:** [Ship to learn / Build more first]

### 5. Risk Mitigated
- [ ] Monitoring in place
- [ ] Gradual rollout plan
- [ ] Critical failure modes addressed
**Status:** [Risks managed / Needs work]

## Score: [X / 5]

**Decision:**
- 5/5 → Ship to 5% immediately
- 4/5 → Ship to internal first
- 3/5 → One more iteration
- <3 → Not ready

## Rollout Plan
- [ ] Internal (team): [date]
- [ ] Early adopters (5%): [date]
- [ ] Broader beta (25%): [date]
- [ ] General availability (100%): [date]

Template 2: Tech Debt Decision

markdown
# Feature: [Name]

## Technical Debt Assessment

### Current Debt
[Describe shortcuts taken, code quality issues]

### Carrying Cost
- Slows future features? [Yes / No / How much]
- Blocks other teams? [Yes / No]
- Creates bugs? [Yes / No / Frequency]
- Security/privacy risk? [Yes / No]

**Debt Impact:** [High / Medium / Low]

### Payoff of Fixing Now
- Time to refactor: [X days]
- Would unblock: [list]
- Would improve: [list]

**Refactor Value:** [High / Medium / Low]

### User Value of Shipping Now
- User problem solved: [describe]
- Revenue/metric impact: [estimate]
- Competitive advantage: [Yes / No]
- User waiting for this: [Yes / No]

**Shipping Value:** [High / Medium / Low]

## Decision

IF Shipping Value > Debt Impact:
**SHIP NOW, refactor later**
   Plan: [when to address debt]

IF Debt Impact > Shipping Value:
**REFACTOR FIRST, then ship**
   Plan: [how to refactor]

IF Uncertain:
**SHIP TO SMALL GROUP (5%)**
   Monitor: [specific metrics]

Template 3: One-Way vs Two-Way Door

markdown
# Decision: [Description]

## Reversibility Analysis

### Can we reverse this decision?
[Yes / No / Partially]

### Cost to reverse
- Time: [X days/weeks]
- Money: [$X]
- User impact: [High / Medium / Low]
- Team impact: [High / Medium / Low]

### Why hard to reverse?
[Technical, contractual, brand, user expectations, etc.]

## Door Type

**Two-Way Door (Reversible):**
→ Decide in: Hours/days
→ Process: Ship fast, iterate
→ Research: Minimal

**One-Way Door (Irreversible):**
→ Decide in: Weeks/months
→ Process: Research, debate, consensus
→ Research: Extensive

## Decision
Door type: [Two-way / One-way]
Decision timeline: [X time]
Process: [describe]

Quick Reference Card

🚢 Shipping Decision Checklist

Before Evaluating:

  • Core functionality tested
  • Edge cases identified
  • Rollback plan ready

The 5 Questions:

  1. Works? Core functionality end-to-end ✓
  2. Acceptable? Edge cases handled gracefully ✓
  3. Reversible? Can we undo or iterate? ✓
  4. Learn? Shipping teaches us more than building? ✓
  5. Safe? Risks mitigated, monitoring ready ✓

Decision Rules:

  • 5/5 → Ship to small group now
  • 4/5 → Ship internal first
  • 3/5 → One more iteration
  • <3/5 → Not ready yet

Rollout Ladder:

  1. Internal (team)
  2. Early adopters (5%)
  3. Broader beta (25%)
  4. General availability (100%)

Real-World Examples

Example 1: Facebook's "Move Fast" Philosophy

Approach: Ship fast, break things (early days)

  • Two-way doors: Ship immediately
  • Feature flags: Easy rollback
  • Gradual rollouts: 1% → 5% → 25% → 100%

Evolution: "Move fast with stable infrastructure"

  • One-way doors: Go slow (API, platform)
  • Two-way doors: Still fast (UI, features)

Example 2: Stripe's API Versioning

Challenge: Changing API breaks customers

Decision: ONE-WAY DOOR

  • Treat API as contract
  • Never break backwards compatibility
  • Version all changes
  • Support old versions forever

Result: Trust through stability


Example 3: Tech Debt at Airbnb

Challenge: Ship new features vs refactor

Decision Framework:

  • Debt blocking growth → Refactor first
  • Debt isolated → Ship, refactor later
  • Uncertain → Ship to 5%, measure velocity

Result: Strategic debt paydown, maintained velocity


Common Pitfalls

❌ Mistake 1: Treating All Decisions Like One-Way Doors

Problem: Slow decision-making, perfectionism Fix: Identify two-way doors, ship fast on those

❌ Mistake 2: Shipping Broken Core Functionality

Problem: "Move fast and break things" gone wrong Fix: Core must work, edge cases can be rough

❌ Mistake 3: No Rollback Plan

Problem: Ship breaks, no way to undo Fix: Feature flags, gradual rollout

❌ Mistake 4: Ignoring Compounding Tech Debt

Problem: Short-term speed, long-term slowdown Fix: Strategic debt paydown


Related Skills

  • strategic-build - For LNO framework (is this Leverage work?)
  • quality-speed - For craft quality vs shipping speed
  • zero-to-launch - For MVP scoping decisions
  • exp-driven-dev - For A/B testing risky changes

Key Quotes

Jeff Bezos (Amazon):

"Some decisions are consequential and irreversible - one-way doors. Make those slowly. Most decisions are reversible - two-way doors. Make those fast."

Shreyas Doshi:

"The best PMs know when 'good enough' is good enough. Ship to learn, not to be perfect."

Marty Cagan:

"Technical debt isn't the enemy. The enemy is debt that compounds and slows you down."

Tobi Lutke (Shopify):

"Trust is built on shipping what you promise. Ship early, ship often, ship small."


Further Learning

  • references/reversible-decisions.md - One-way vs two-way doors guide
  • references/shipping-checklist.md - Comprehensive readiness assessment
  • references/gradual-rollout-guide.md - Feature flag implementation
  • references/tech-debt-paydown.md - Strategic refactoring frameworks

Frequently asked questions

What does the Ship Decisions AI skill do?

Guides "ship or iterate?" decisions using Shreyas Doshi's frameworks, Marty Cagan's shipping philosophy, and Tobi Lutke's reversible decision-making. Use when deciding if feature is ready, preventing perfectionism paralysis, applying one-way vs two-way door thinking, or balancing technical debt vs shipping speed.

Why use Ship Decisions on TypingMind?

Because you install it once and use it with any model. Ship Decisions is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Ship Decisions in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/menkesu/awesome-pm-skills/tree/main/ship-decisions. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Ship Decisions?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Ship Decisions?

As many as you like. As long as a model supports skills, you can use Ship Decisions with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Ship Decisions AI skill free?

It is published on GitHub by menkesu. Check the repository for licensing terms. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇