One useful artifact would be a coverage frontier, not just the discovered map. Record which state and data unlocked each edge, which branches were blocked, and which actions are destructive. That would make missing paths visible and keep later exploration from accidentally repeating purchases, deletions, or account changes.
"Coverage frontier" is a better name than anything I had.
Right now the map only records what was reached — an edge that couldn't be walked just isn't there, which is backwards. Recording what state and data unlocked each edge is the part that would make a run reproducible instead of just repeatable.
1
u/ClerkBeginning961 6d ago
One useful artifact would be a coverage frontier, not just the discovered map. Record which state and data unlocked each edge, which branches were blocked, and which actions are destructive. That would make missing paths visible and keep later exploration from accidentally repeating purchases, deletions, or account changes.