From 13805ab7b5c3bf4a53a72dbf39826148c3c65a48 Mon Sep 17 00:00:00 2001 From: Rin Date: Mon, 16 Feb 2026 03:36:56 +0800 Subject: [PATCH] chore(minecraft): remove unused scenario test files Removes basic-chat.json and damage-reaction.json scenario definitions that are no longer used for testing chat responses and damage reactions. --- services/minecraft/scenarios/basic-chat.json | 25 ------------- .../minecraft/scenarios/damage-reaction.json | 35 ------------------- 2 files changed, 60 deletions(-) delete mode 100644 services/minecraft/scenarios/basic-chat.json delete mode 100644 services/minecraft/scenarios/damage-reaction.json diff --git a/services/minecraft/scenarios/basic-chat.json b/services/minecraft/scenarios/basic-chat.json deleted file mode 100644 index 466b1c229..000000000 --- a/services/minecraft/scenarios/basic-chat.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "Basic Chat Response", - "steps": [ - { - "name": "Inject Hello Message", - "action": "inject_chat", - "params": { - "username": "Tester", - "message": "Hello bot, are you working?" - } - }, - { - "name": "Wait for Processing", - "action": "wait", - "params": { "ms": 5000 } - }, - { - "name": "Verify Bot Response", - "action": "wait", - "expect": { - "log_contains": "Action completed: chat" - } - } - ] -} diff --git a/services/minecraft/scenarios/damage-reaction.json b/services/minecraft/scenarios/damage-reaction.json deleted file mode 100644 index 3aa18554b..000000000 --- a/services/minecraft/scenarios/damage-reaction.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "name": "Damage Reaction", - "steps": [ - { - "name": "Inject Damage Event", - "action": "inject_event", - "params": { - "type": "perception", - "payload": { - "type": "damage_taken", - "description": "Ouch! Took 2 damage from Zombie", - "sourceId": "zombie_1", - "confidence": 1.0, - "timestamp": 1770000000000, - "metadata": { - "amount": 2, - "source": "zombie" - } - }, - "source": { - "type": "minecraft", - "id": "zombie_1" - } - } - }, - { - "name": "Wait for Reaction", - "action": "wait", - "params": { "ms": 5000 }, - "expect": { - "log_contains": "Action completed: chat" - } - } - ] -}