Overview
The paper gives a practical, runnable system and measured user gains, but the small sample, prompt brittleness, and reliance on proprietary LLMs limit generalizability.
Citations1
Evidence Strength0.60
Confidence0.80
Risk Signals11
Trust Signals
Findings with numeric evidence: 2/4
Findings with evidence refs: 4/4
Results with explicit delta: 6/6
Reproducibility
Status: Partial assets available
Open source: Partial
At A Glance
Cost impact: 50%
Production readiness: 40%
Novelty: 60%
Why It Matters For Business
An agentic ReAct design with a memory agent measurably raises player immersion, coherence, and replay intent; studios can add AI DMs that scale solo-play experiences and increase engagement.
Who Should Care
Summary TLDR
The authors built ChatRPG: a text-based solo role-playing system and compared two Game Master designs. v1 used long prompt engineering with GPT‑4. v2 split responsibilities into two ReAct agents (Narrator + Archivist) that call JSON tools to act and update persistent state. A counterbalanced user study (N=12) shows v2 gave higher ratings for perceived intelligence, immersion, mastery, coherence, and curiosity. Code is published. Main limits: small sample, prompt sensitivity, and API content filters.
Problem Statement
Solo tabletop-style role-playing needs a dependable Game Master (GM). Simple prompt-only LLMs can produce engaging text but struggle with long-term coherence, state tracking, and complex actions. The paper asks whether an agentic, tool-enabled ReAct design with a dedicated memory agent improves player experience over a prompt-only approach.
Main Contribution
Built ChatRPG v1 (prompt-engineered, state-in-prompt) and v2 (multi-agent ReAct with tools and persistent state).
Designed two specialized agents: Narrator (story & actions) and Archivist (persistent game state/memory).
Key Findings
Players rated the agentic v2 higher on multiple engagement measures.
v2 achieved statistically significant improvements in coherence and immersion.
Results
| Metric | Value | Baseline | Delta | Split / Dataset | Evidence | Evidence Ref |
|---|---|---|---|---|---|---|
| Mastery (PXI) | v1 mean=0.68, v2 mean=2.33 | v1 | +1.65 | N=12, paired test | t=-3.683, p=0.004 | Table 1 |
| Coherent story | v1 mean=1.00, v2 mean=2.25 | v1 | +1.25 | N=12, paired test | t=-2.322, p=0.04 | Table 1 |
What To Try In 7 Days
Prototype a prompt-only GM to validate basic narrative style and UI.
Add a single background process that stores structured JSON state instead of stuffing history into prompts.
Implement one ReAct tool (e.g., battle resolution) and few-shot examples to test action/tool wiring with an LLM.
Agent Features
Memory
Planning
Tool Use
Frameworks
Is Agentic
Yes
Architectures
Collaboration
Optimization Features
Token Efficiency
Reproducibility
Risks & Boundaries
Limitations
Small sample size (N=12) limits statistical power and external validity.
Behavior is sensitive to prompt wording and few-shot examples; brittle tuning required.
When Not To Use
When you need deterministic reproducibility across runs or exact reproducible outputs.
When content moderation will block core gameplay (e.g., violent fantasy) and no alternative model is available.
Failure Modes
Hallucinations that introduce inconsistent facts or NPC traits.
Context window overflow if state is not properly summarized or persisted.

