hypha
an instrument for coordinating fleets of coding agents
memo
bench
2 changes · — compose · — held
load:
disjoint
conflict
rename
+ specimen
base
what every agent started from
…
function price(qty) { return qty * 10; } function label(n) { return "item-" + n; } function total(qty) { return price(qty); }
specimen A1
…
×
function price(qty) { return qty * 12; } function label(n) { return "item-" + n; } function total(qty) { return price(qty); }
deriving…
specimen A2
…
×
function price(qty) { return qty * 10; } function label(n) { return "sku-" + n; } function total(qty) { return price(qty); }
deriving…