Pick a depth. Each prompt opens in your AI pre-loaded with the lesson. Click a row to preview the prompt.
Every team has more growth ideas than engineering capacity. ICE (Impact, Confidence, Ease) is the lightweight triage model that stops the loudest person in the room from deciding what ships next. A scored backlog forces you to make your assumptions explicit and compare them honestly.
Score three candidate experiments with ICE and rank them.
type Experiment = { name: string; impact: number; confidence: number; ease: number };
function iceScore(e: Experiment) {
return { ...e, score: (e.impact * e.confidence * e.ease) / 100 };
}
const experiments: Experiment[] = [
{ name: "Homepage headline A/B", impact: 8, confidence: 7, ease: 9 },
{ name: "Onboarding email drip", impact: 9, confidence: 5, ease: 5 },
{ name: "In-app tooltip sequence", impact: 6, confidence: 8, ease: 7 },
];
const ranked = experiments.map(iceScore).sort((a, b) => b.score - a.score);
ranked.forEach(e => console.log(e.name, "→", e.score.toFixed(1)));
// Homepage headline A/B → 5.0
// In-app tooltip sequence → 3.4
// Onboarding email drip → 2.3