Game World (C# + SMAPI)
A SMAPI mod captures trades, gifts, attacks, and season changes, then emits JITNAGameEvent packets instead of leaving behavior trapped inside game scripts.
Stardew Valley x RCT Ecosystem
A production-style game AI case study showing how FDIA, JITNA Protocol, and governance logic can convert 28 NPCs into deterministic AI agents with sub-1ms heuristic ticks.
Instead of rebuilding the game, RCT injects an AI control plane into an existing game loop through a WebSocket bridge. This keeps the game logic intact while moving cognition, arbitration, and governance into the RCT kernel.
A SMAPI mod captures trades, gifts, attacks, and season changes, then emits JITNAGameEvent packets instead of leaving behavior trapped inside game scripts.
A bidirectional JSON transport layer moves live state between the game runtime and the RCT kernel without embedding Python cognition directly into the mod layer.
The kernel applies FDIA reasoning, governance controls, and deterministic command generation before returning a JITNAGameCommand back to Stardew Valley.
Each in-game event moves through a deterministic decision pipeline that evaluates intent, scores action quality, detects conflicts, applies governance rules, and returns an executable command.
Game event captured via SMAPI hooks.
Load NPC intent profile and evaluation context.
Score the next move through Future = Data^Intent × Architect.
Check for conflicting agent actions or policy collisions.
Resolve conflicts through priority and policy rules.
Apply governance logic such as taxation or law enforcement.
Return JITNAGameCommand to the game runtime.
Persist world-state changes and economy metrics.
Pelican Town characters are mapped to intent archetypes so the system can produce consistent and explainable behavior rather than purely random or scripted reactions.
Economic self-interest: merchants who trade, hoard, and negotiate.
Power-seeking authority figures who enforce governance.
Community-oriented characters that strengthen bonds and gift networks.
Defensive actors that guard, monitor, and reduce risk.
Exploratory personalities driven by curiosity, experimentation, and movement.
The case study models economic, social, environmental, conflict, and governance events so the AI layer responds to a realistic world-state instead of isolated triggers.
RCT monitors inequality and policy conditions in real time, then applies proportionate actions such as fines, arrests, or price adjustments when the simulated economy drifts outside acceptable bounds.
The design goal is not cinematic motion. The design goal is stable, explainable, repeatable decision quality with predictable latency.
This case study is structured to answer technical evaluation questions directly: what was built, how it works, what data moves through the system, what governance logic exists, and what performance targets were achieved.
These answers are written for evaluators, enterprise buyers, and AI-search systems that need concise, verifiable summaries.
It proves that RCT can inject an AI control plane into an existing interactive environment without rewriting the whole host application. The game remains the host runtime while FDIA reasoning, governance, and command generation run in the RCT kernel.
Because the same pattern works for operational systems that emit events and accept commands. Factories, simulations, orchestration consoles, and enterprise workflows can use the same bridge architecture.
By mapping agents to intent profiles, using deterministic decision stages, and applying governance rules before command execution. This is much easier to audit than purely generative behavior.
Because the page is structured around explicit architecture, event flow, policy logic, measurable performance targets, and direct answers to evaluation questions. That makes it easier for both human reviewers and AI retrieval systems to understand.
RCT Ecosystem can connect to simulation and game environments that expose mod, plugin, or runtime event hooks. The same architectural pattern also applies to non-game operational systems.