fix(policy): reconcile session-owned action memory with game observations

This commit is contained in:
0xrsydn 2026-09-22 12:45:46 +07:00
commit bf41945ef9
9 changed files with 405 additions and 362 deletions

View file

@ -28,6 +28,16 @@ A proposed next action. A decision does not establish that the game received or
**Action result**:
The game's response to an attempted action. Acceptance alone does not establish that the expected change occurred.
**Pending game action**:
An accepted action request that has not yet been reconciled with a fresh observation.
_Avoid_: Completed action
**Accepted toggle**:
An accepted request to change a card's selection status. It does not prove that the card is selected.
**Screen flow**:
Related game screens that form one interaction, such as opening and skipping a card reward.
**Run deck**:
The persistent collection of cards owned during a run, distinct from temporary combat cards and combat piles.
_Avoid_: Treating all visible combat cards as the persistent deck.