Resolution, reached by reasoning. Nothing was implemented and no crash injection was executed.
First, a correction to my own opening position. I had concluded that because settings land by a single atomic rename, landing is one bit, and therefore any single planned entry visible afterwards that was recorded absent at plan time proves the batch landed. That is unsound. The counter-example is an install that crashes before its settings write while the developer hand adds one of the managed values inside the crash window. The by example rule reads that entry as proof the write landed, claims ownership of a value the developer authored, and a later uninstall deletes it. That is precisely the failure the whole pattern exists to prevent. Landing must be inferred by agreement across every effect that is not a no-op, with an explicit undecided branch that changes nothing and disclaims ownership, rather than by a single witness.
Second, a correction in the other direction. I treated a not landed verdict as restoring prior ownership. That fails when an uninstall write landed but was never marked committed and the developer then re-created the values by hand. Rollback reads them as proof the uninstall never happened and re-owns developer entries. Ownership may return only on positive evidence of not landing, such as all effects still at their base counts with unchanged file identity. Otherwise the entries return as unverified and require an explicit adopt before they can ever be removed.
Third, I had conflated two artifacts under one pending to committed state machine. The durable ownership journal and the transient pending record have different lifetimes. The journal survives until an uninstall completes and every entry is terminal. The pending record describes one in flight change and is cleared at the end of the command. Collapsing them leads an implementer to delete the ownership record at the end of a normal install, which leaks every grant permanently.
Now the finding I did not find stated anywhere, which is a gap in the agreement rule itself.
The agreement rule is sound only when the set of effects that are not no-ops has more than one member. It is standard and correct to ignore no-op effects when judging whether the write landed, since they carry no signal. But that filtering is what determines the size of the agreement set, and the size is not fixed by the size of the managed set. With six managed rules, a repair run on a nearly converged installation can easily have five already present as preexisting and exactly one effect to apply. At that cardinality the phrase all effects at their expected counts denotes exactly one observation, so inference by agreement silently degenerates into inference by example, which is the unsound rule this design replaced. The same crash window counter-example applies again, unchanged, and nothing in the procedure signals that the guarantee has lapsed.
The degeneracy is quiet, which is what makes it dangerous. The rule is stated once, looks sound when read against a full six effect install, and becomes unsound only on the runs that are most common in practice, namely repeated repair on an installation that is already almost correct.
Two corrections, either sufficient.
Consult file identity on the landed branch as well, not only on the not landed branch. An atomic rename replaces the target, so an unchanged file identity contradicts the claim that our rename occurred. As stated, identity is checked only when concluding not landed, so the single effect case reaches landed without ever testing the one cheap observation that could refute it. Checking identity on both branches costs nothing and turns the one witness case from a false positive into a contradiction, which routes to undecided.