---
title: Multiverse of Human Games
url: https://www.emergentmind.com/topics/multiverse-of-human-games
type: topic
---

# Multiverse of Human Games

The **Multiverse of Human Games** denotes, in current research usage, a family of closely related but technically distinct ideas about plurality in games: the open-ended space of games “designed by humans for humans”; the distribution of rule systems, aesthetics, physics, and objectives across many games; the multiplicity of equilibria and dynamical regimes in multiplayer strategic interaction; and the existence of multiple persistent worlds, shards, timelines, or canon-specific versions in interactive simulation and role-play [2602.17594] [2605.09965] [1003.5839] [2606.16014] [2510.14351]. Across these usages, the common theme is that game analysis is no longer confined to a single fixed environment. Instead, it concerns families of environments, worldlines, or strategic landscapes whose structure must be formalized, compared, simulated, and evaluated under human-relevant constraints.

## 1. Meanings of “multiverse” across game research

One line of work defines a **human game** as a game “designed by humans for humans,” and the Multiverse of Human Games as the entire **open-ended, in-principle infinite** space of all games that humans could conceivably create and enjoy, together with the human cultural distribution over that space—how likely such games are to be invented, propagated, and played [2602.17594]. This definition intentionally excludes arbitrary computable environments that no human would design or enjoy. In that sense, the multiverse is a task space and a distribution.

A second line of work uses **multiverse** to describe the proliferation of possible outcomes in evolutionary game dynamics as group size and strategy count increase. In Gokhale and Traulsen’s formulation, the term refers to the multiplicity of possible equilibria and dynamical regimes as multiplayer and multi-strategy effects replace pairwise interactions; it is explicitly **not a metaphysical multiverse** [1003.5839]. Here, the multiverse is an equilibrium landscape.

A third line of work treats the multiverse as a collection of **parallel canons, worlds, shards, or timelines**. “Beyond One World” studies superheroes across 30 iconic heroes and 90 canon-specific versions, with multiverse awareness defined by version-specific factual and moral fidelity [2510.14351]. “Orchestrated Reality” extends this to persistent, content-addressed game worlds that can branch, migrate entities, and support multiple concurrent worlds or timelines [2606.16014]. Here, the multiverse is a provenance-governed space of narrative states.

A fourth line of work in generalist game playing frames games themselves as a vast multiverse because each game is a universe with its own rules, aesthetics, physics, and objectives. Human intelligence is characterized there by **“omni-reality adaptability,”** namely rapid transfer from one physical reality to many synthetic rule systems [2605.09965].

| Context | Meaning of “multiverse” | Representative formal object |
|---|---|---|
| Human-game evaluation | Open-ended space of all conceivable human games | $\mathcal{H}$ with associated distribution $P_{\mathcal{H}}$ |
| Evolutionary games | Multiplicity of equilibria and dynamical regimes | Isolated internal equilibria in multiplayer games |
| Role-play and simulation | Parallel canons, worlds, shards, or timelines | Version tags, canonical state, content hashes |
| Generalist game playing | Distribution of heterogeneous game universes | Goal-conditioned POMDP instances |

This plurality of meanings is not merely terminological variation. It indicates that “multiverse” has become a reusable abstraction for breadth, branching, and multiplicity in game-centered research.

## 2. Formal models: from game distributions to canonical world state

A central formalization treats interaction with a game as a **goal-conditioned POMDP**,
$$
\mathcal{M}=\langle G,S,A,T,R,\Omega,O,\gamma\rangle,
$$
where $G$ are natural-language goals or tasks, $S$ states, $A$ actions, $T$ transitions, $R$ feedback conditioned on $g\in G$, $\Omega$ observations, $O$ observation model, and $\gamma$ discount. The agent seeks a policy $\pi(a_t\mid o_{\le t},g)$ that maximizes
$$
E\left[\sum_{t=0}^{\infty}\gamma^t R(s_t,a_t,g)\right].
$$
This formulation is used to describe the shift from fixed-rule, fully observable settings to partially observable, multimodal, long-horizon, real-time environments with open-ended goal spaces [2605.09965].

For human-game evaluation, an inferred formalization denotes the set of all conceivable human games by $\mathcal{H}$ and an associated distribution by $P_{\mathcal{H}}$, with a budget-conditional evaluation function
$$
G(A;B)=E_{g\sim P_{\mathcal{H}}} f(A,g;B),
$$
where $B$ fixes the resource budget and $f$ outputs a normalized, human-relative score. This suggests that the multiverse is operationalized not only as a set of games but also as a distribution over culturally generated tasks under matched resource constraints [2602.17594].

“Orchestrated Reality” gives a more specific world-model formalization for an LLM-driven game world for a human player as a **Parameterized-Action POMDP**,
$$
\mathcal{M} = (\mathcal{S},\mathcal{A},\Omega,O,F,\rho_0).
$$
Here, each $s\in\mathcal{S}$ is a tree of typed JSON documents under a fixed schema, fully serialisable and addressable by content hash $h(s)$. Actions decompose as
$$
\mathcal{A}=\{(k,x_k)\mid k\in\mathcal{A}_d,\ x_k\in\mathcal{X}_k\},
$$
with a discrete intent kind and structured JSON parameters. The player does not observe $s_t$ directly, but instead receives a narrative projection
$$
o_t\sim O(s_t),
$$
and the transition kernel
$$
F:\mathcal{S}\times\mathcal{A}\to\Delta(\mathcal{S})
$$
is implemented by a **Plan–Diff–Validate–Apply (PDVA)** pipeline that proposes, validates, and atomically commits JSON deltas [2606.16014].

In that architecture, the world is the canonical object owned by a singleton orchestration agent analogous to a tabletop-RPG Game Master. The narrative voice is an observation of canonical state rather than a stateful authority. State persistence is achieved through a schema-validated JSON tree on disk, atomic content-hashed commits, and event journaling. This yields a mutation boundary at which prose may suggest outcomes, but only validated JSON deltas advance state [2606.16014].

A plausible implication is that the multiverse perspective requires more than broader task coverage. It also requires explicit contracts over state, action, observation, provenance, and branching semantics.

## 3. Human-game evaluation and the AI GameStore

The most explicit operationalization of the Multiverse of Human Games as a benchmark appears in **AI GameStore** [2602.17594]. The platform uses an LLM+human-in-the-loop pipeline to source, generate, refine, and annotate games aligned with human play, while standardizing interfaces for reproducible evaluation. The first suite contains **100 adapted games** spanning Action, Casual, Puzzle, Board, and other categories.

Its sourcing stage scraped **7,500 candidates** across categories, countries, and platforms from Apple App Store and Steam, then filtered by popularity (**$\ge 10{,}000$ reviews**) and high rating (**$\ge 4.5/5$**). An LLM judge, Gemini 2.5 Flash, scored suitability using criteria including playable in minutes, implementable in p5.js, quantifiable scoring, and minimal reliance on niche knowledge; the top 100 were retained for adaptation. In refinement, Claude sonnet-4.5 produced p5.js games, automated debugging iteratively fixed bugs, and human players supplied natural-language feedback. The reported average was **4.7 refinement steps** and **roughly 30 minutes end-to-end per game** [2602.17594].

Each game was labeled on a **0–5 scale** for **Visual Processing (VP), Spatial-Temporal Coordination (ST), Memory (ME), Planning (PL), World Model Learning (WM), Physical Reasoning (PH),** and **Social Reasoning (SO)**. This makes the benchmark diagnostic rather than purely aggregate. The paper emphasizes that many games jointly require multiple capabilities, enabling tests of integration such as VP+PL+WM or ME+PL [2602.17594].

The evaluation protocol matched humans and models on gameplay duration: **120 seconds per game**. Humans interacted naturally through a unified web interface. Models interacted through a harness that pauses the game each second, provides game description, screenshots, an editable scratchpad, and past actions, then receives five action lists for the next one-second window partitioned into five 0.2-second segments. Scoring used the author-provided normalization
$$
s_{\text{norm}}=\operatorname{clip}\left(100\times \frac{\text{Raw Game Score}}{\text{Human Median Score}},1,10000\right),
$$
with the **geometric mean** across games as the principal aggregate. Human median is set to 100 per game [2602.17594].

The empirical setup included **N=106 Prolific participants**, each playing 10 games, and seven frontier VLMs: GPT-5.2, GPT-5-mini, Gemini-2.5-Pro, Gemini-2.5-Flash, Claude-Opus-4.5, Qwen-3-VL-32B, and Llama-4-Maverick. Each model was run three times per game with default temperature and “auto” thinking budgets; results were averaged across runs [2602.17594].

The headline result is a large human–model gap. **Geometric-mean normalized scores are under 10% of human baseline for the best models**, and models require on average **12–18$\times$ more wall-clock time** than humans for the same 120 seconds of in-game interaction. Performance is **bimodal**: on roughly two thirds of games, models make some progress, often 10–30% of human median; on the remaining 30–40%, they fail to achieve meaningful progress (**<1% of human median**). Capability-conditioned analyses show pronounced deficits in **Memory**, **Planning**, and **World Model Learning**, and performance declines sharply as games demand more distinct capabilities simultaneously. Restricting to games with **ST $\le 2$** does not materially improve the top models’ aggregate performance, suggesting that slow reaction or harness cadence is not the primary failure mode [2602.17594].

These findings situate the Multiverse of Human Games as a **living, open-ended meta-benchmark** rather than a static leaderboard. The platform’s anti-saturation measures—only 10 games public, 90 kept as a private test set, and continual introduction of new variants—are part of the benchmark definition itself [2602.17594].

## 4. Multiversal role-play and persistent playable worlds

Multiverse-aware role-play focuses on character identity across parallel canons. **Beyond One World** benchmarks character-grounded role-play for **30 iconic heroes** and **90 canon-specific versions**, with three narrative phases per character: Childhood, Pre-Hero, and Hero. The benchmark contains two tasks: **Canon Events**, with **1,346 items** total, and **Moral Dilemmas**, with **1,080 dilemmas** across four archetypes [2510.14351].

The scoring framework explicitly separates internal deliberation from outward decisions. Responses are segmented into `<thinking>` and `<acting>` spans, then scored on a **0–5 scale** by Sonnet 3.7 using version-specific attributes. The benchmark introduces **Think–Act Matching (TAM)**, computed from all-mpnet-base-v2 embeddings as the maximum cosine similarity between thinking and acting spans:
$$
\tau=\max_{i,j} \cos(f(t_i),f(a_j)).
$$
Dataset-level TAM is the mean of instance-level scores [2510.14351].

The reported findings are threefold. First, **chain-of-thought prompting improves narrative coherence in weaker models but can reduce canonical accuracy in stronger ones**. Second, **cross-version generalization within a character remains a major obstacle**. Third, models often excel at either **thinking** or **acting**, but rarely both. For example, sonnet3.7 acts highest with $\bar{A}\approx 3.65$ but thinks moderately with $\bar{T}\approx 3.03$, whereas gemini2-flash thinks highest with $\bar{T}\approx 3.67$ and has moderate acting with $\bar{A}\approx 3.19$ [2510.14351].

The benchmark’s practical recommendations are structurally similar to those found in persistent world simulation: modular canon memory keyed by character, universe, and phase; explicit version tags and provenance; periodic Canon Event probes; and reason–action audits using TAM. This suggests a shared requirement across multiverse role-play and persistent worlds: canonical state must be explicit, versioned, and resistant to leakage across worldlines [2510.14351].

That same requirement is formalized at the world-simulation level in **Orchestrated Reality**. The framework treats the game world as the canonical object and assigns ownership to a single orchestration agent—the **world-agent**—analogous to a tabletop RPG Game Master. It addresses three failures of many LLM-driven experiences—**statelessness, unvalidated writes, and monolithic agency**—by modeling the world as a persistent, schema-validated JSON tree on disk, advancing it through atomic, content-hashed commits, and separating concerns across sub-agents coordinated by a singleton GM [2606.16014].

The paper provides a worked single-turn example, a JSON-state sketch, and a catalogue of **15 illustrative incidents** drawn from a real deployment. It also describes scaling from a single world to a **multiverse of human games** through branching timelines and versioning, world seeding and rule parameterization, cross-world portability of typed JSON entities, migration intents across world boundaries, multi-NPC concurrent agency under deny-first permissions, and RL interfaces that expose $(\mathcal{S},\mathcal{A},\Omega,O,F)$ as an environment for automated play, regression testing, and content QA [2606.16014].

The limitations are equally central. Open problems include deterministic record/replay under LLM stochasticity, per-actor cost discipline as NPC concurrency grows, narrative drift for under-specified details, incomplete rule coverage $\mathcal{R}$, and the fact that prose observations $o_t$ are not themselves validated [2606.16014]. In both role-play and orchestrated worlds, multiversality depends on canonical memory and provenance control, but factual fidelity remains an active systems problem.

## 5. Strategic and behavioral multiverses in human interaction

In multiplayer evolutionary game theory, the multiverse is a landscape of equilibria. For two-player games with any number of strategies there can be **at most one isolated internal equilibrium**. For any number of players $d$ with any number of strategies $n$, the maximum number of isolated internal equilibria is
$$
(d-1)^{\,n-1}.
$$
This upper bound is obtained by treating internal equilibria as solutions to $n-1$ polynomial equations of degree at most $d-1$ and applying a Bézout-type counting argument [1003.5839].

For two strategies, the replicator equation is
$$
\dot{x}=x(1-x)\big(\pi_A(x)-\pi_B(x)\big),
$$
and in $d$-player games the payoffs are degree-$(d-1)$ polynomials in $x$:
$$
\pi_A(x)=\sum_{k=0}^{d-1}\binom{d-1}{k}x^k(1-x)^{d-1-k}a_k,\quad
\pi_B(x)=\sum_{k=0}^{d-1}\binom{d-1}{k}x^k(1-x)^{d-1-k}b_k.
$$
Hence there can be up to $d-1$ interior fixed points. With $n\ge 3$, intersections of higher-degree algebraic curves or surfaces on the simplex generate multiple isolated equilibria with diverse stability patterns [1003.5839].

The paper maps this formal proliferation to human-relevant scenarios. In **public goods** games, linear returns yield at most one interior equilibrium, but threshold public goods can yield up to two interior equilibria. In **multiplayer stag hunts**, increasing thresholds and synergies can generate multiple interior equilibria and fragile payoff dominance. The broader implication is that pairwise-derived results, including the one-third law, do not generalize cleanly to multiplayer multi-strategy settings [1003.5839].

A complementary behavioral notion of multiverse appears in the dynamics of human cooperation in repeated Prisoner’s Dilemma. There, distinct long-run behavioral regimes emerge from the closed loop between simple human reinforcement learning and an opponent’s strategy. Using the stage-game payoffs
$$
T=0.5,\quad R=0.3,\quad P=0.1,\quad S=0.0,
$$
and learning rates
$$
\epsilon_C=0.09375,\quad \epsilon_D=0.03125,
$$
the paper studies human play against **strong extortion**
$$
p^X=(0.692,0.000,0.538,0.000)
$$
and **strong generous**
$$
p^X=(1.000,0.182,1.000,0.364)
$$
zero-determinant opponents [1508.05288].

In the context-conditioned model, dynamics unfold in the two-dimensional space $(p_D^Y,p_C^Y)$ with unstable fixed points and sharply partitioned basins of attraction. Against the strong generous ZD, the most important stable manifold empirically is the one with $p_C^Y=1$, where mutual cooperation is absorbing. Against the strong extortion ZD, the dominant basin intersecting the initialization range leads to permanent mutual defection through the stable manifold $p_D^Y=0$ [1508.05288].

The empirical benchmark matched human data from Hilbe et al. (2014). Observed initial human cooperation was **30–40%**; against generous opponents, cooperation rose to **~70–80%** with mean payoff **≈ €0.27**; against extortion, it declined to **~30–40%** with mean payoff **≈ €0.15**. Simulations with **N = 10201** agents reproduced the time courses and end-of-game distributional shapes, and individual-level prediction using the first 10 rounds gave a linear regression with **slope 0.69** and **intercept 0.26** for predicted versus observed cooperativity [1508.05288].

Here, the multiverse is a parameterized behavioral regime space. Extortionate and generous opponents carve different basins; learning parameters and initial conditions determine which basin is reached. This is not a separate use of the term so much as a dynamical specialization of it.

## 6. Formal universes, limits, and research directions

Absolute combinatorial game theory introduces yet another rigorous sense in which human games inhabit a multiverse. Under **misère play**, there are **infinitely many absolute universes**, obtained by recursive parental expansions from dicot and dead-ending universes. Under **normal-play**, there are **exactly two absolute universes**: the full space of short normal-play games and the universe of all-small games [2303.05198].

A universe $U\subseteq Q$ is required to contain all atoms, be closed under disjunctive sum and conjugation, and be hereditarily closed. The key local comparison result is the **Basic Order Theorem**, under which $G\ge H$ in an absolute universe iff both **Proviso** and **Maintenance** hold. The minimal parental universe is the **dicot universe** $D$. The **dead-ending universe** $E$ is parental and contains placement rulesets, with $D\subseteq E$ [2303.05198].

This framework has direct implications for human-playable rulesets. **Nim** belongs to $D$ under normal-play and to $E$ under misère. **Kayles**, **Dawson’s Kayles**, and **Treblecross** are dead-ending. **Domineering** is dead-ending under misère and typically not dicot under normal-play. **Hackenbush** and **Toads-and-Frogs** are neither dead-ending nor dicot, and therefore live in the full universes [2303.05198]. The multiverse here is a family of comparison universes in which equivalence and strategy depend on the closure conditions one assumes.

Across the broader literature, several open problems recur. In orchestrated world simulation, planned evaluations include a within-subjects player study using **miniPXI** and **PAX**, promotion of multi-NPC concurrent agency to a parameterized-action Markov game, and deployment as an RL environment [2606.16014]. In AI GameStore, next steps include richer social interaction, long-horizon games with narrative and large state, automated reliable level generation, deeper capability profiles, strict real-time constraints, and continued anti-cheating safeguards through private test sets and replay logging [2602.17594]. In generalist game playing, the field is organized around four pillars—**Dataset, Model, Harness, and Benchmark**—and constrained by five trade-offs: **Scale vs Fidelity vs Diversity**, **Breadth vs Depth**, **Reasoning vs Reactivity**, **Modular Workflow vs Model-as-Whole**, and **Code Engine vs World Model** [2605.09965].

That same work proposes a five-level roadmap from **single-game task mastery** to **cross-task transfer**, **cross-genre generalization**, **lifelong adaptation**, and finally the **Creator (Demiurge)** stage, in which the agent generates and evolves worlds, rules, tasks, rewards, and co-evolves populations [2605.09965]. A plausible implication is that the Multiverse of Human Games is becoming both a descriptive object and a systems objective: a way to characterize the breadth of human-designed games, the branching of persistent worlds, the multiplicity of strategic equilibria, and the technical path toward agents that can act, learn, and remain consistent across all of them.

Source: https://www.emergentmind.com/topics/multiverse-of-human-games