docs: add temporal semantics review gate (refs #18)

This commit is contained in:
2026-07-10 08:28:47 +02:00
parent ce0572cebd
commit cfd4055629
+5
View File
@@ -49,6 +49,11 @@ Given completed work (commits, changed files, SSH state), find:
- **Gitea hygiene**: Were issues opened/closed, commits linked?
- **Side effects**: Were there unintended changes to other services?
- **Fragility**: Will this break on reboot? On Docker restart? On network blip?
- **Temporal semantics**: For every effect, timer, subscription, poll, or async completion, when
does setup, callback, and cleanup fire (mount, dependency change, unmount, StrictMode replay),
and which state/request may it still mutate? Test fast interaction before the delay, dependency
changes while work is in flight, and unmount. A "make X consistent with Y" finding must re-check
Y's timing invariants instead of assuming its behavior is safe to copy.
## Commands