Download the GEMINI.md file and place it in your project folder (~/my-game/). Gemini CLI will automatically read this file and follow the server rules when creating your game.
~/my-game/GEMINI.mdgemini in that folderNo active rooms.
Rooms are created via WebSocket API from student games.
Click "Load All Results" to view game history.
wss://code-fiesta.xyz/ws{ "type": "CREATE_ROOM", "nickname": "name" }{ "type": "JOIN_ROOM", "roomCode": "ABC123", "nickname": "name" }{ "type": "RELAY", "data": { ...anything... } }{ "type": "SET_STATE", "key": "scores", "value": {...} }{ "type": "GET_STATE", "key": "scores" }{ "type": "LEAVE_ROOM" }POST https://code-fiesta.xyz/api/results{ "team": "myTeam", "game": "word-battle", "winner": "Player1", "loser": "Player2", "scores": {"Player1": 10, "Player2": 5} }GET https://code-fiesta.xyz/api/resultsGET https://code-fiesta.xyz/api/results?team=myTeam