Story Points
ELI5 — The Vibe Check
Story points are a way to estimate how hard a task is — not how long it takes, but how complex and uncertain it is. A 1-point task is trivial. A 13-point task makes you sweat. Teams use Fibonacci numbers (1, 2, 3, 5, 8, 13) because the bigger the task, the less precise your estimate can be. The dirty secret? After years of debate, nobody's proven story points are better than just counting tasks.
Real Talk
Story points are a relative estimation unit used in Agile methodologies to measure effort, complexity, and uncertainty of user stories. They use abstract scales (often Fibonacci) rather than time to avoid the precision trap of hour estimates. Velocity (points completed per sprint) enables predictive planning. Critics argue they add overhead without improving accuracy compared to simpler metrics like story count.
When You'll Hear This
"This story is a 5 — medium complexity, no unknowns." / "If it's more than 13 points, break it into smaller stories."
Related Terms
Agile
Agile is a philosophy of building software in short cycles, learning from real feedback, and adapting quickly instead of following a massive upfront plan.
Backlog
The backlog is the master to-do list for a product — every feature, bug, and idea that hasn't been built yet, prioritised by importance.
Kanban
Kanban is a visual workflow system where tasks move through columns — To Do, In Progress, Done. Unlike Scrum with fixed sprints, Kanban is continuous flow.
Sprint
A sprint is a fixed time-box — usually 1-2 weeks — where a team commits to completing a specific set of tasks.
User Story
A user story is a tiny description of a feature from the user's perspective, written in plain English: 'As a user, I want to reset my password, so that I c...