Vibe Console

The Vibe Console is Chronos Engine’s developer control surface. It is not part of your player experience — it exists for updating, testing, debugging, and understanding world memory behavior.

1️⃣ Connection Section

Purpose: make sure Chronos is connected and scoped correctly.

  • • Base URL
  • • API Key
  • • World ID
  • • NPC ID

This section is required for every developer. Chronos must always know which backend and which world namespace it operates on.

2️⃣ World Rules

Purpose: define how your world behaves using design intent — not hardcoded logic.

Rules are stored on the server and read by the NPC Brain whenever Brain Think runs.

✅ Recommended Pattern (Simple IF / THEN)
IF player_helped_villager THEN mood=friendly
IF player_lied_to_guard THEN mood=hostile
IF player_apologized THEN mood=neutral
✅ JSON Mapping (Advanced / Structured)
{
  "on_event": {
    "player_helped_villager": { "mood": "friendly" },
    "player_lied_to_guard":   { "mood": "hostile" }
  }
}
✅ Natural Language (AI Mode)
Guards remember crimes.
If a player lies, they become suspicious.
Helping villagers improves reputation.

You usually only need to set rules once per world. After that, your game can send events normally — no gameplay code changes required.

💡 Recommended 0.1v workflow: manage rules here in Vibe Console instead of setting them from game code. This allows designers to adjust behavior without rebuilding the game.

3️⃣ Event Injection

Why you see example events like player_stole_item:

This does not mean all games steal apples. This exists to provide one simple, repeatable demo event.

In real games, events may look like:

  • • player_killed_npc
  • • quest_completed
  • • door_opened
  • • faction_betrayal

All events share the same structure. The example button simply means: append any world event.

4️⃣ Brain Think

Purpose: force the NPC Brain to evaluate memory, rules, and events.

In the SDK, important gameplay events can trigger Brain automatically. In Vibe Console, this button is still useful as a manual debug/admin action.

  • • Test new rules instantly
  • • Verify memory-driven behavior
  • • Inspect state transitions manually
5️⃣ NPC State Viewer

Purpose: display Chronos’ derived NPC state.

This proves memory persistence, state evolution, and cross-session behavior.

This is the core “magic moment” of Chronos Engine.

6️⃣ Events List (Debug Tool)

Purpose: inspect append-only world history.

  • • Debug ordering
  • • Verify event persistence
  • • Understand Brain inputs

This is optional but extremely useful during development.

Chronos Engine Docs — Beta. Keep feedback coming.