Below is the revised documentation with updated naming for the “Game to Agent” section (now fully consistent with the “Agent to Game” section) and corrected index links in the table of contents.
The platform supports the implementation of custom AI agents. To facilitate this, we provide a base class that manages local connections with the game, along with a template to help you quickly get started with your custom agent development. You can find additional details and documentation here.
Any AI agent that adheres to the API specifications outlined in this document will integrate seamlessly with the platform.
All messages exchanged between the AI agent server and the Godot game are formatted in JSON. The protocol defines three primary message types:
playRequest
or playFeedback
is received. This message describes a play to be performed in the game. The game may reject an invalid request with an error (resulting in the agent’s turn being skipped) or it may return a playFeedback
to allow adjustments.The agent server sends its responses to the Godot game using the following messages:
This message specifies a play to be executed in the game.
Field | Type | Description |
---|---|---|
type |
string | Must be "play" . |
shape |
string | The name of the piece to be played (e.g., “Red”, “Cream”, etc.). |
position |
Array of Float | The (X, Y) coordinates representing the center of the piece. |
rotation |
Float | The rotation in degrees for the piece. |
timestamp |
string | Timestamp of the message (ISO 8601 format is recommended). |
This message concludes the agent’s turn.
Field | Type | Description |
---|---|---|
type |
string | Must be "finish" . |
timestamp |
string | Timestamp of the message (ISO 8601 format is recommended). |
This message sends a chat reply to the game’s chatbox.
Field | Type | Description |
---|---|---|
type |
string | Must be "chat" . |
message |
string | The chat reply message to be displayed to the player. |
timestamp |
string | Timestamp of the message (ISO 8601 format is recommended). |
All messages exchanged between the Godot game and the AI agent server are formatted in JSON. The protocol defines four primary message types:
The game sends messages to the agent server in two categories: playing actions and chatting.
The agent must be capable of responding to both playRequest
and subsequent playFeedback
messages. Upon receiving a playFeedback
, the agent can either send an updated play
or a finish
response.
Field | Type | Description |
---|---|---|
type |
string | "playRequest" for the initial play, or "playFeedback" for subsequent adjustments. |
objective |
string | The objective of the current game. |
state |
object | Contains game state information. |
on_board |
object | Information on pieces currently on the board. |
{PIECE} |
object[] | Each {PIECE} represents a piece’s name and its information. Valid pieces include “Red”, “Cream”, “Purple”, “Brown”, “Blue”, “Yellow”, and “Green”. |
position |
Vector Array | (X, Y) coordinates of the center of the piece. |
vertices |
Array of Vector Array | (X, Y) coordinates for each vertex of the piece. |
rotation |
number | Rotation in degrees. |
collisions |
Array of Strings | Names of pieces currently colliding with the piece, or "BOUNDARY" if the piece is out of bounds. |
off_board |
object | Information on pieces not yet placed on the board. |
{PIECE} |
object[] | Each {PIECE} represents a piece’s name and its information (same valid pieces as above). |
vertices |
object | X,Y coordinates of each vertex relative to the center (0,0). |
rotation |
number | Rotation in degrees. |
board_img |
base64 image | A base64 encoded image of the current board state. |
drawer_img |
base64 image | A base64 encoded image of the piece drawer. |
timestamp |
string | Timestamp of the message (ISO 8601 format is recommended). |
When the game sends a chat request, the following fields should be included:
Field | Type | Description |
---|---|---|
type |
string | "chatRequest" |
objective |
string | The objective of the current game. |
message |
string | The chat message sent by the player. |
state |
object | Contains the current game state information. |
on_board |
object | Information on pieces currently on the board. |
{PIECE} |
object[] | Each {PIECE} represents a piece’s name and its information. Valid pieces include “Red”, “Cream”, “Purple”, “Brown”, “Blue”, “Yellow”, and “Green”. |
position |
Vector Array | (X, Y) coordinates of the center of the piece. |
vertices |
Array of Vector Array | (X, Y) coordinates for each vertex of the piece. |
rotation |
number | Rotation in degrees. |
collisions |
Array of Strings | Names of pieces currently colliding with the piece, or "BOUNDARY" if the piece is out of bounds. |
off_board |
object | Information on pieces not yet placed on the board. |
{PIECE} |
object[] | Each {PIECE} represents a piece’s name and its information. |
vertices |
object | X,Y coordinates of each vertex relative to the center (0,0). |
rotation |
number | Rotation in degrees. |
board_img |
base64 image | A base64 encoded image of the current board state. |
drawer_img |
base64 image | A base64 encoded image of the piece drawer. |
timestamp |
string | Timestamp of the message (ISO 8601 format is recommended). |
This message sends a chat reply to the game’s chatbox.
Field | Type | Description |
---|---|---|
type |
string | "error" |
message |
string | Error Message. |
timestamp |
string | Timestamp of the message (ISO 8601 format is recommended). |