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" - } - } - ] -}