A calculator for optimizing recombinator crafting in Path of Exile.
- Calculate optimal recipes for any target item (up to 3p3s)
- See expected costs, base items needed, and recombinator uses
- Track your inventory of failed crafts to reduce costs
- Visual step-by-step breakdown with probabilities
- Collapsible repeated steps for clarity
uv run python app.pyThen visit http://localhost:8080 in your browser
# Basic usage
uv run python recomb.py 3p1s
# With inventory
uv run python recomb.py 3p1s --inventory 2p1s 2p0s
# Custom costs
uv run python recomb.py 3p1s --base-cost 2.0 --dust-cost 0.5The calculator uses dynamic programming to find optimal crafting recipes:
- Items are processed bottom-up by total mods (p+s)
- Each item stores the top-K cheapest recipes
- Inventory items let you skip steps you've already crafted
- Only the first occurrence of each inventory item is used per recipe
1p0s= 1 prefix, 0 suffix2p1s= 2 prefix, 1 suffix- etc.
Mostly vibecoded with Claude, I'll remake it properly one day.