Tested tool guide
Tested browser tools
Checked August 16, 2026
What Work Breakdown Structure Builder does, with a checked example
This tool builds a project's task hierarchy as an editable tree: you add phases, break each into work packages, and break those into leaf-level tasks, each optionally tagged with a cost and an owner. It assigns decimal WBS codes (1, 1.1, 1.2, 2, 2.1...) automatically as you nest items, and sums cost upward so every parent shows the total of its children. The most common surprise is entering a cost on a task that also has children - decompose fully before pricing, since the roll-up is built from leaf values, not whatever you type at a parent level.
Worked example
A concrete input and expected output from the current implementation.
Input
Website Launch
1 Design
1.1 Wireframes - $800
1.2 Visual Design - $1200
2 Development
2.1 Frontend - $3000
2.2 Backend - $4000
3 Testing - $1500
->
Expected output
1 Design = $2,000 (1.1 $800 + 1.2 $1,200)
2 Development = $7,000 (2.1 $3,000 + 2.2 $4,000)
3 Testing = $1,500
Project total = $10,500
Each parent's cost is the sum of its own leaf children ($800+$1,200=$2,000 for Design; $3,000+$4,000=$7,000 for Development), and the project total is the sum of all top-level nodes: $2,000 + $7,000 + $1,500 = $10,500.