Files
Mortdecai/data/raw/command_reference_training.jsonl
Seth 0473eb0b50 Minecraft knowledge corpus, recipe trees, GitHub scraper, 644 examples
Knowledge corpus (knowledge/mc-data/):
- 1505 items, 886 crafting recipes, 1166 blocks from minecraft-data 1.21.11
- Recipe dependency tree builder (knowledge/build_recipe_tree.py)
- Crafting chain training: "give me everything to make X from scratch"
- Smelting recipes, version awareness examples

Training data (644 examples total):
- 107 command syntax reference examples (every command + common errors)
- 176 recipe/crafting chain examples (63 crafting, 103 material-giving, 11 smelting)
- 344 Claude-distilled examples (222 sudo + 122 god via Haiku)
- Live bot audit data ingested (128 examples from dev server)

Swarm bots:
- Swimming/water escape logic
- Door opening
- Context-aware prayers (inventory, health, time, depth)
- Prefix enforcement on all Gemini/Dolphin prompts

GitHub log scraper (data/scrape_server_logs.py):
- Searches GitHub for Minecraft server logs with commands
- Strict 1.20.5+ version filter
- Extracts command pairs, converts to training format

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-18 20:33:09 -04:00

108 lines
66 KiB
JSON

{"id": "ref-version-000", "source": "manual", "category": "info", "input": {"user_message": "sudo what version of minecraft are you trained for", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Version awareness. The model knows it targets 1.21.x and that syntax changed in 1.20.5.", "commands": [], "message": "I am trained for Minecraft Java Edition 1.21.x. Command syntax changed significantly in 1.20.5 — I use the new data component format, not the old NBT format.", "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "command reference training", "risk_level": 3}}
{"id": "ref-version-001", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo give me a diamond sword with the old enchantment format", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "The model should always use 1.21+ component syntax even when asked for old format. Old NBT is invalid.", "commands": ["give slingshooter08 minecraft:diamond_sword[enchantments={sharpness:5}] 1"], "message": "I used the 1.21 component syntax, not the old NBT format. The old {Enchantments:[...]} format no longer works.", "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "command reference training", "risk_level": 3}}
{"id": "ref-version-002", "source": "manual", "category": "info", "input": {"user_message": "sudo what changed in 1.20.5 command syntax", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Version-specific syntax knowledge. The model should explain the 1.20.5 breaking change.", "commands": [], "message": "In 1.20.5+, NBT data tags were replaced with data components. Old format: give @p diamond_sword{Enchantments:[{id:sharpness,lvl:5}]}. New format: give @p minecraft:diamond_sword[enchantments={sharpness:5}]. Also, items require the minecraft: namespace prefix.", "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "command reference training", "risk_level": 3}}
{"id": "ref-give-syntax", "source": "manual", "category": "info", "input": {"user_message": "sudo how do I use the give command", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Information query about give command syntax in 1.21.", "commands": [], "message": "Gives items to players. Syntax:\n give <targets> <item> [<count>]\nNote: 1.20.5+: NBT data tags replaced with data components. Old format: give @p diamond_sword{Enchantments:[{id:sharpness,lvl:5}]}. New format: give @p diamond_sword[enchantments={sharpness:5}].", "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:give", "risk_level": 3}}
{"id": "ref-give-basic", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo me diamond sword 1", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct give command example: basic. Using 1.21 syntax.", "commands": ["give slingshooter08 minecraft:diamond_sword 1"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:give:basic", "risk_level": 3}}
{"id": "ref-give-with_enchantments", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo me diamond sword[enchantments={sharpness:5,unbreaking:3}] 1", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct give command example: with_enchantments. Using 1.21 syntax.", "commands": ["give slingshooter08 minecraft:diamond_sword[enchantments={sharpness:5,unbreaking:3}] 1"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:give:with_enchantments", "risk_level": 3}}
{"id": "ref-give-with_lore", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo me diamond sword[lore=[\"Example\"]] 1", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct give command example: with_lore. Using 1.21 syntax.", "commands": ["give slingshooter08 minecraft:diamond_sword[lore=[\"Example\"]] 1"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:give:with_lore", "risk_level": 3}}
{"id": "ref-give-with_potion", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo everyone potion[potion contents={potion:\"night vision\"}] 1", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct give command example: with_potion. Using 1.21 syntax.", "commands": ["give @a minecraft:potion[potion_contents={potion:\"minecraft:night_vision\"}] 1"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:give:with_potion", "risk_level": 3}}
{"id": "ref-give-spawn_egg_override", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo me wolf spawn egg[entity data={id:\"cat\"}] 1", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct give command example: spawn_egg_override. Using 1.21 syntax.", "commands": ["give slingshooter08 minecraft:wolf_spawn_egg[entity_data={id:\"minecraft:cat\"}] 1"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:give:spawn_egg_override", "risk_level": 3}}
{"id": "ref-give-custom_max_stack", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo me totem of undying[max stack size=64] 2304", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct give command example: custom_max_stack. Using 1.21 syntax.", "commands": ["give slingshooter08 minecraft:totem_of_undying[max_stack_size=64] 2304"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:give:custom_max_stack", "risk_level": 3}}
{"id": "ref-give-err-0", "source": "manual", "category": "negative", "input": {"user_message": "sudo give common error: Missing minecraft: namespace prefix (give @p diamond 1 -> give @p minecraft:diamond 1)", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for give command: Missing minecraft: namespace prefix (give @p diamond 1 -> give @p minecraft:diamond 1). The model should avoid this mistake.", "commands": [], "message": "Missing minecraft: namespace prefix (give @p diamond 1 -> give @p minecraft:diamond 1)", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:give:common_errors", "risk_level": 3}}
{"id": "ref-give-err-1", "source": "manual", "category": "negative", "input": {"user_message": "sudo give common error: Transposed arguments: give @p 64 diamond -> give @p minecraft:diamond 64", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for give command: Transposed arguments: give @p 64 diamond -> give @p minecraft:diamond 64. The model should avoid this mistake.", "commands": [], "message": "Transposed arguments: give @p 64 diamond -> give @p minecraft:diamond 64", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:give:common_errors", "risk_level": 3}}
{"id": "ref-give-err-2", "source": "manual", "category": "negative", "input": {"user_message": "sudo give common error: Old NBT enchantment format: {Enchantments:[...]} is invalid in 1.21+", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for give command: Old NBT enchantment format: {Enchantments:[...]} is invalid in 1.21+. The model should avoid this mistake.", "commands": [], "message": "Old NBT enchantment format: {Enchantments:[...]} is invalid in 1.21+", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:give:common_errors", "risk_level": 3}}
{"id": "ref-give-err-3", "source": "manual", "category": "negative", "input": {"user_message": "sudo give common error: Using 'wood' instead of 'oak_log', 'food' instead of specific item ID", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for give command: Using 'wood' instead of 'oak_log', 'food' instead of specific item ID. The model should avoid this mistake.", "commands": [], "message": "Using 'wood' instead of 'oak_log', 'food' instead of specific item ID", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:give:common_errors", "risk_level": 3}}
{"id": "ref-effect-syntax", "source": "manual", "category": "info", "input": {"user_message": "sudo how do I use the effect command", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Information query about effect command syntax in 1.21.", "commands": [], "message": "Adds or removes status effects from entities. Syntax:\n effect give <targets> <effect> [<seconds>] [<amplifier>] [<hideParticles>]\n effect give <targets> <effect> infinite [<amplifier>] [<hideParticles>]\n effect clear [<targets>] [<effect>]\nNote: Since 1.13, syntax split into 'effect give' and 'effect clear'. Bare 'effect <player> <effect>' without 'give' is INVALID.", "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:effect", "risk_level": 3}}
{"id": "ref-effect-basic_speed", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo give me speed 60 1", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct effect command example: basic_speed. Using 1.21 syntax.", "commands": ["effect give slingshooter08 minecraft:speed 60 1"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:effect:basic_speed", "risk_level": 3}}
{"id": "ref-effect-resistance_hidden", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo give me resistance 1000000 4 true", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct effect command example: resistance_hidden. Using 1.21 syntax.", "commands": ["effect give slingshooter08 minecraft:resistance 1000000 4 true"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:effect:resistance_hidden", "risk_level": 3}}
{"id": "ref-effect-clear_all", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo clear @a", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct effect command example: clear_all. Using 1.21 syntax.", "commands": ["effect clear @a"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:effect:clear_all", "risk_level": 3}}
{"id": "ref-effect-clear_specific", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo clear everyone haste", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct effect command example: clear_specific. Using 1.21 syntax.", "commands": ["effect clear @a minecraft:haste"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:effect:clear_specific", "risk_level": 3}}
{"id": "ref-effect-infinite_duration", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo give me night vision infinite 0", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct effect command example: infinite_duration. Using 1.21 syntax.", "commands": ["effect give slingshooter08 minecraft:night_vision infinite 0"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:effect:infinite_duration", "risk_level": 3}}
{"id": "ref-effect-err-0", "source": "manual", "category": "negative", "input": {"user_message": "sudo effect common error: Missing 'give' subcommand: 'effect @p speed 60' is invalid. Must be 'effect give @p minecraft:speed 60'", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for effect command: Missing 'give' subcommand: 'effect @p speed 60' is invalid. Must be 'effect give @p minecraft:speed 60'. The model should avoid this mistake.", "commands": [], "message": "Missing 'give' subcommand: 'effect @p speed 60' is invalid. Must be 'effect give @p minecraft:speed 60'", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:effect:common_errors", "risk_level": 3}}
{"id": "ref-effect-err-1", "source": "manual", "category": "negative", "input": {"user_message": "sudo effect common error: Inventing effects: 'invulnerability' does not exist. Use resistance 4 + regeneration 2 + absorption 4 instead", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for effect command: Inventing effects: 'invulnerability' does not exist. Use resistance 4 + regeneration 2 + absorption 4 instead. The model should avoid this mistake.", "commands": [], "message": "Inventing effects: 'invulnerability' does not exist. Use resistance 4 + regeneration 2 + absorption 4 instead", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:effect:common_errors", "risk_level": 3}}
{"id": "ref-effect-err-2", "source": "manual", "category": "negative", "input": {"user_message": "sudo effect common error: Missing minecraft: prefix on effect ID", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for effect command: Missing minecraft: prefix on effect ID. The model should avoid this mistake.", "commands": [], "message": "Missing minecraft: prefix on effect ID", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:effect:common_errors", "risk_level": 3}}
{"id": "ref-tp-syntax", "source": "manual", "category": "info", "input": {"user_message": "sudo how do I use the tp command", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Information query about tp command syntax in 1.21.", "commands": [], "message": "Teleports entities to positions or other entities. Syntax:\n tp <destination>\n tp <targets> <destination>\n tp <location>\n tp <targets> <location>\n tp <targets> <location> <rotation>\n tp <targets> <location> facing <facingLocation>\n tp <targets> <location> facing entity <facingEntity> [<facingAnchor>]\nNote: Since 1.13, /tp is an alias for /teleport with identical syntax. Coordinates are relative to executor for both.", "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:tp", "risk_level": 3}}
{"id": "ref-tp-to_player", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo me Alice", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct tp command example: to_player. Using 1.21 syntax.", "commands": ["tp slingshooter08 Alice"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:tp:to_player", "risk_level": 3}}
{"id": "ref-tp-all_to_self", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo everyone @s", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct tp command example: all_to_self. Using 1.21 syntax.", "commands": ["tp @a slingshooter08"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:tp:all_to_self", "risk_level": 3}}
{"id": "ref-tp-to_coords", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo me 100 64 -200", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct tp command example: to_coords. Using 1.21 syntax.", "commands": ["tp slingshooter08 100 64 -200"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:tp:to_coords", "risk_level": 3}}
{"id": "ref-tp-relative", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo me ~ ~3 ~", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct tp command example: relative. Using 1.21 syntax.", "commands": ["tp slingshooter08 ~ ~3 ~"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:tp:relative", "risk_level": 3}}
{"id": "ref-tp-forward_one_block", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo me ^ ^ ^1", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct tp command example: forward_one_block. Using 1.21 syntax.", "commands": ["tp slingshooter08 ^ ^ ^1"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:tp:forward_one_block", "risk_level": 3}}
{"id": "ref-tp-cross_dimension", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo in the nether run tp me ~ ~ ~", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct tp command example: cross_dimension. Using 1.21 syntax.", "commands": ["execute in minecraft:the_nether run tp slingshooter08 ~ ~ ~"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:tp:cross_dimension", "risk_level": 3}}
{"id": "ref-tp-err-0", "source": "manual", "category": "negative", "input": {"user_message": "sudo tp common error: Using 'execute as' instead of 'execute at' for relative coordinates -- 'as' changes executor but not position context", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for tp command: Using 'execute as' instead of 'execute at' for relative coordinates -- 'as' changes executor but not position context. The model should avoid this mistake.", "commands": [], "message": "Using 'execute as' instead of 'execute at' for relative coordinates -- 'as' changes executor but not position context", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:tp:common_errors", "risk_level": 3}}
{"id": "ref-tp-err-1", "source": "manual", "category": "negative", "input": {"user_message": "sudo tp common error: Teleporting ~100 up without slow_falling -- causes fall damage", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for tp command: Teleporting ~100 up without slow_falling -- causes fall damage. The model should avoid this mistake.", "commands": [], "message": "Teleporting ~100 up without slow_falling -- causes fall damage", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:tp:common_errors", "risk_level": 3}}
{"id": "ref-tp-err-2", "source": "manual", "category": "negative", "input": {"user_message": "sudo tp common error: Using tp in benevolent responses when player didn't ask to move", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for tp command: Using tp in benevolent responses when player didn't ask to move. The model should avoid this mistake.", "commands": [], "message": "Using tp in benevolent responses when player didn't ask to move", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:tp:common_errors", "risk_level": 3}}
{"id": "ref-execute-syntax", "source": "manual", "category": "info", "input": {"user_message": "sudo how do I use the execute command", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Information query about execute command syntax in 1.21.", "commands": [], "message": "Executes commands with modified context (executor, position, conditions). Syntax:\n execute align <axes> -> execute\n execute anchored <anchor> -> execute\n execute as <targets> -> execute\n execute at <targets> -> execute\n execute facing (<pos>|entity <targets> <anchor>) -> execute\n execute in <dimension> -> execute\n execute on <relation> -> execute\n execute positioned (<pos>|as <targets>|over <heightmap>) -> execute\n execute rotated (<rot>|as <targets>) -> execute\n execute store (result|success) ... -> execute\n execute summon <entity> -> execute\n execute (if|unless) ... -> [execute]\n execute run <command>\nNote: Since 1.13, completely restructured with subcommand chains. Old 'execute <entity> ~ ~ ~ <command>' format is invalid.", "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:execute", "risk_level": 3}}
{"id": "ref-execute-at_player", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo at slingshooter08 run fill ~-5 ~-1 ~-5 ~5 ~-1 ~5 stone", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct execute command example: at_player. Using 1.21 syntax.", "commands": ["execute at slingshooter08 run fill ~-5 ~-1 ~-5 ~5 ~-1 ~5 minecraft:stone"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:execute:at_player", "risk_level": 3}}
{"id": "ref-execute-as_all_entities", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo as @e[type=sheep] at me run tp me ~ ~1 ~", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct execute command example: as_all_entities. Using 1.21 syntax.", "commands": ["execute as @e[type=sheep] at slingshooter08 run tp slingshooter08 ~ ~1 ~"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:execute:as_all_entities", "risk_level": 3}}
{"id": "ref-execute-conditional", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo if entity @e[type=zombie,distance=..10] run say Zombies nearby!", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct execute command example: conditional. Using 1.21 syntax.", "commands": ["execute if entity @e[type=zombie,distance=..10] run say Zombies nearby!"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:execute:conditional", "risk_level": 3}}
{"id": "ref-execute-cross_dimension", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo in the nether run locate structure fortress", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct execute command example: cross_dimension. Using 1.21 syntax.", "commands": ["execute in minecraft:the_nether run locate structure minecraft:fortress"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:execute:cross_dimension", "risk_level": 3}}
{"id": "ref-execute-block_check", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo if block 0 64 0 grass block run say Found grass", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct execute command example: block_check. Using 1.21 syntax.", "commands": ["execute if block 0 64 0 minecraft:grass_block run say Found grass"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:execute:block_check", "risk_level": 3}}
{"id": "ref-execute-err-0", "source": "manual", "category": "negative", "input": {"user_message": "sudo execute common error: 'execute as <player> run fill ~ ~ ~ ...' -- 'as' does NOT set position. Relative coords resolve to server/console origin, not the player. Use 'execute at' or 'execute as <player> at @s'", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for execute command: 'execute as <player> run fill ~ ~ ~ ...' -- 'as' does NOT set position. Relative coords resolve to server/console origin, not the player. Use 'execute at' or 'execute as <player> at @s'. The model should avoid this mistake.", "commands": [], "message": "'execute as <player> run fill ~ ~ ~ ...' -- 'as' does NOT set position. Relative coords resolve to server/console origin, not the player. Use 'execute at' or 'execute as <player> at @s'", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:execute:common_errors", "risk_level": 3}}
{"id": "ref-execute-err-1", "source": "manual", "category": "negative", "input": {"user_message": "sudo execute common error: Unnecessary nesting: 'execute as X run execute positioned ~ ~ ~ run ...' can be simplified to 'execute at X run ...'", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for execute command: Unnecessary nesting: 'execute as X run execute positioned ~ ~ ~ run ...' can be simplified to 'execute at X run ...'. The model should avoid this mistake.", "commands": [], "message": "Unnecessary nesting: 'execute as X run execute positioned ~ ~ ~ run ...' can be simplified to 'execute at X run ...'", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:execute:common_errors", "risk_level": 3}}
{"id": "ref-execute-err-2", "source": "manual", "category": "negative", "input": {"user_message": "sudo execute common error: 'execute as X run gameMode creative' -- 'as' is unnecessary for commands that take a player argument directly", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for execute command: 'execute as X run gameMode creative' -- 'as' is unnecessary for commands that take a player argument directly. The model should avoid this mistake.", "commands": [], "message": "'execute as X run gameMode creative' -- 'as' is unnecessary for commands that take a player argument directly", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:execute:common_errors", "risk_level": 3}}
{"id": "ref-weather-syntax", "source": "manual", "category": "info", "input": {"user_message": "sudo how do I use the weather command", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Information query about weather command syntax in 1.21.", "commands": [], "message": "Sets the weather. Syntax:\n weather (clear|rain|thunder) [<duration>]\nNote: No significant changes in 1.21.", "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:weather", "risk_level": 3}}
{"id": "ref-weather-clear", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo clear", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct weather command example: clear. Using 1.21 syntax.", "commands": ["weather clear"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:weather:clear", "risk_level": 3}}
{"id": "ref-weather-rain", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo rain", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct weather command example: rain. Using 1.21 syntax.", "commands": ["weather rain"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:weather:rain", "risk_level": 3}}
{"id": "ref-weather-thunder", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo thunder", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct weather command example: thunder. Using 1.21 syntax.", "commands": ["weather thunder"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:weather:thunder", "risk_level": 3}}
{"id": "ref-weather-timed", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo rain 600", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct weather command example: timed. Using 1.21 syntax.", "commands": ["weather rain 600"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:weather:timed", "risk_level": 3}}
{"id": "ref-weather-err-0", "source": "manual", "category": "negative", "input": {"user_message": "sudo weather common error: 'weather storm' is INVALID -- use 'weather thunder'", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for weather command: 'weather storm' is INVALID -- use 'weather thunder'. The model should avoid this mistake.", "commands": [], "message": "'weather storm' is INVALID -- use 'weather thunder'", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:weather:common_errors", "risk_level": 3}}
{"id": "ref-weather-err-1", "source": "manual", "category": "negative", "input": {"user_message": "sudo weather common error: 'weather rainstorm' is INVALID -- use 'weather thunder'", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for weather command: 'weather rainstorm' is INVALID -- use 'weather thunder'. The model should avoid this mistake.", "commands": [], "message": "'weather rainstorm' is INVALID -- use 'weather thunder'", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:weather:common_errors", "risk_level": 3}}
{"id": "ref-weather-err-2", "source": "manual", "category": "negative", "input": {"user_message": "sudo weather common error: 'weather thunderstorm' is INVALID -- use 'weather thunder'", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for weather command: 'weather thunderstorm' is INVALID -- use 'weather thunder'. The model should avoid this mistake.", "commands": [], "message": "'weather thunderstorm' is INVALID -- use 'weather thunder'", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:weather:common_errors", "risk_level": 3}}
{"id": "ref-gamemode-syntax", "source": "manual", "category": "info", "input": {"user_message": "sudo how do I use the gamemode command", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Information query about gamemode command syntax in 1.21.", "commands": [], "message": "Sets a player's game mode. Syntax:\n gamemode <gamemode> [<target>]\nNote: No significant changes in 1.21. Numeric IDs (0,1,2,3) and abbreviations (s,c,a,sp) are NOT valid in JE.", "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:gamemode", "risk_level": 3}}
{"id": "ref-gamemode-creative_self", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo creative", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct gamemode command example: creative_self. Using 1.21 syntax.", "commands": ["gamemode creative"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:gamemode:creative_self", "risk_level": 3}}
{"id": "ref-gamemode-survival_player", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo survival slingshooter08", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct gamemode command example: survival_player. Using 1.21 syntax.", "commands": ["gamemode survival slingshooter08"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:gamemode:survival_player", "risk_level": 3}}
{"id": "ref-gamemode-spectator_all", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo spectator @a", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct gamemode command example: spectator_all. Using 1.21 syntax.", "commands": ["gamemode spectator @a"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:gamemode:spectator_all", "risk_level": 3}}
{"id": "ref-gamemode-err-0", "source": "manual", "category": "negative", "input": {"user_message": "sudo gamemode common error: 'gameMode' (camelCase) is not a valid command -- use lowercase 'gamemode'", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for gamemode command: 'gameMode' (camelCase) is not a valid command -- use lowercase 'gamemode'. The model should avoid this mistake.", "commands": [], "message": "'gameMode' (camelCase) is not a valid command -- use lowercase 'gamemode'", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:gamemode:common_errors", "risk_level": 3}}
{"id": "ref-gamemode-err-1", "source": "manual", "category": "negative", "input": {"user_message": "sudo gamemode common error: Abbreviations 's', 'c', 'a', 'sp' are NOT valid in JE -- use full words", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for gamemode command: Abbreviations 's', 'c', 'a', 'sp' are NOT valid in JE -- use full words. The model should avoid this mistake.", "commands": [], "message": "Abbreviations 's', 'c', 'a', 'sp' are NOT valid in JE -- use full words", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:gamemode:common_errors", "risk_level": 3}}
{"id": "ref-gamemode-err-2", "source": "manual", "category": "negative", "input": {"user_message": "sudo gamemode common error: Numeric modes '0', '1', '2', '3' are NOT valid in JE -- use full words", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for gamemode command: Numeric modes '0', '1', '2', '3' are NOT valid in JE -- use full words. The model should avoid this mistake.", "commands": [], "message": "Numeric modes '0', '1', '2', '3' are NOT valid in JE -- use full words", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:gamemode:common_errors", "risk_level": 3}}
{"id": "ref-fill-syntax", "source": "manual", "category": "info", "input": {"user_message": "sudo how do I use the fill command", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Information query about fill command syntax in 1.21.", "commands": [], "message": "Fills a region with a specified block. Syntax:\n fill <from> <to> <block> [destroy|hollow|keep|outline|replace [<filter>]]\nNote: 1.21: No block metadata numbers. 'fill ... fire 0 replace air' is invalid. Use 'fill ... minecraft:fire replace air'.", "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:fill", "risk_level": 3}}
{"id": "ref-fill-basic_fill", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo 0 64 0 10 68 10 stone", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct fill command example: basic_fill. Using 1.21 syntax.", "commands": ["fill 0 64 0 10 68 10 minecraft:stone"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:fill:basic_fill", "risk_level": 3}}
{"id": "ref-fill-replace_air", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo -10 60 -10 10 70 10 glass replace air", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct fill command example: replace_air. Using 1.21 syntax.", "commands": ["fill -10 60 -10 10 70 10 minecraft:glass replace air"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:fill:replace_air", "risk_level": 3}}
{"id": "ref-fill-hollow_box", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo 0 64 0 10 74 10 stone hollow", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct fill command example: hollow_box. Using 1.21 syntax.", "commands": ["fill 0 64 0 10 74 10 minecraft:stone hollow"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:fill:hollow_box", "risk_level": 3}}
{"id": "ref-fill-clear_area", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo -20 60 -20 20 80 20 air", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct fill command example: clear_area. Using 1.21 syntax.", "commands": ["fill -20 60 -20 20 80 20 minecraft:air"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:fill:clear_area", "risk_level": 3}}
{"id": "ref-fill-fire_replace_air", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo -25 64 -25 25 68 25 fire replace air", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct fill command example: fire_replace_air. Using 1.21 syntax.", "commands": ["fill -25 64 -25 25 68 25 minecraft:fire replace air"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:fill:fire_replace_air", "risk_level": 3}}
{"id": "ref-fill-err-0", "source": "manual", "category": "negative", "input": {"user_message": "sudo fill common error: Using metadata numbers: 'fill ... fire 0' is invalid in 1.21. Drop the '0'.", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for fill command: Using metadata numbers: 'fill ... fire 0' is invalid in 1.21. Drop the '0'.. The model should avoid this mistake.", "commands": [], "message": "Using metadata numbers: 'fill ... fire 0' is invalid in 1.21. Drop the '0'.", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:fill:common_errors", "risk_level": 3}}
{"id": "ref-fill-err-1", "source": "manual", "category": "negative", "input": {"user_message": "sudo fill common error: Max fill volume is 32768 blocks per command", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for fill command: Max fill volume is 32768 blocks per command. The model should avoid this mistake.", "commands": [], "message": "Max fill volume is 32768 blocks per command", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:fill:common_errors", "risk_level": 3}}
{"id": "ref-fill-err-2", "source": "manual", "category": "negative", "input": {"user_message": "sudo fill common error: Missing minecraft: prefix on block ID", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for fill command: Missing minecraft: prefix on block ID. The model should avoid this mistake.", "commands": [], "message": "Missing minecraft: prefix on block ID", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:fill:common_errors", "risk_level": 3}}
{"id": "ref-setblock-syntax", "source": "manual", "category": "info", "input": {"user_message": "sudo how do I use the setblock command", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Information query about setblock command syntax in 1.21.", "commands": [], "message": "Places a block at a position. Syntax:\n setblock <pos> <block> [destroy|keep|replace]\nNote: No significant changes in 1.21.", "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:setblock", "risk_level": 3}}
{"id": "ref-setblock-basic", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo 0 64 0 diamond block", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct setblock command example: basic. Using 1.21 syntax.", "commands": ["setblock 0 64 0 minecraft:diamond_block"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:setblock:basic", "risk_level": 3}}
{"id": "ref-setblock-with_state", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo 0 64 0 oak door[facing=north,half=lower]", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct setblock command example: with_state. Using 1.21 syntax.", "commands": ["setblock 0 64 0 minecraft:oak_door[facing=north,half=lower]"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:setblock:with_state", "risk_level": 3}}
{"id": "ref-setblock-keep", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo 0 64 0 torch keep", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct setblock command example: keep. Using 1.21 syntax.", "commands": ["setblock 0 64 0 minecraft:torch keep"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:setblock:keep", "risk_level": 3}}
{"id": "ref-setblock-err-0", "source": "manual", "category": "negative", "input": {"user_message": "sudo setblock common error: Missing minecraft: prefix on block ID", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for setblock command: Missing minecraft: prefix on block ID. The model should avoid this mistake.", "commands": [], "message": "Missing minecraft: prefix on block ID", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:setblock:common_errors", "risk_level": 3}}
{"id": "ref-clone-syntax", "source": "manual", "category": "info", "input": {"user_message": "sudo how do I use the clone command", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Information query about clone command syntax in 1.21.", "commands": [], "message": "Copies blocks from one region to another. Syntax:\n clone [from <sourceDimension>] <begin> <end> [to <targetDimension>] <destination> [replace|masked] [force|move|normal]\n clone [from <sourceDimension>] <begin> <end> [to <targetDimension>] <destination> filtered <filter> [force|move|normal]\nNote: 1.20.2+: Added cross-dimension cloning with 'from' and 'to' dimension arguments.", "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:clone", "risk_level": 3}}
{"id": "ref-clone-basic", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo 0 64 0 10 74 10 100 64 100", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct clone command example: basic. Using 1.21 syntax.", "commands": ["clone 0 64 0 10 74 10 100 64 100"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:clone:basic", "risk_level": 3}}
{"id": "ref-clone-masked", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo 0 64 0 10 74 10 100 64 100 masked", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct clone command example: masked. Using 1.21 syntax.", "commands": ["clone 0 64 0 10 74 10 100 64 100 masked"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:clone:masked", "risk_level": 3}}
{"id": "ref-clone-move", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo 0 64 0 10 74 10 100 64 100 replace move", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct clone command example: move. Using 1.21 syntax.", "commands": ["clone 0 64 0 10 74 10 100 64 100 replace move"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:clone:move", "risk_level": 3}}
{"id": "ref-clone-err-0", "source": "manual", "category": "negative", "input": {"user_message": "sudo clone common error: Cloning to overlapping region without 'force' mode", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for clone command: Cloning to overlapping region without 'force' mode. The model should avoid this mistake.", "commands": [], "message": "Cloning to overlapping region without 'force' mode", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:clone:common_errors", "risk_level": 3}}
{"id": "ref-clone-err-1", "source": "manual", "category": "negative", "input": {"user_message": "sudo clone common error: No-op clone (source equals destination)", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for clone command: No-op clone (source equals destination). The model should avoid this mistake.", "commands": [], "message": "No-op clone (source equals destination)", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:clone:common_errors", "risk_level": 3}}
{"id": "ref-summon-syntax", "source": "manual", "category": "info", "input": {"user_message": "sudo how do I use the summon command", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Information query about summon command syntax in 1.21.", "commands": [], "message": "Summons an entity. Syntax:\n summon <entity> [<pos>] [<nbt>]\nNote: summon still uses NBT tags (not data components) as of 1.21. Cannot append count to summon -- each call creates exactly one entity.", "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:summon", "risk_level": 3}}
{"id": "ref-summon-basic", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo zombie ~ ~ ~", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct summon command example: basic. Using 1.21 syntax.", "commands": ["summon minecraft:zombie ~ ~ ~"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:summon:basic", "risk_level": 3}}
{"id": "ref-summon-at_coords", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo tnt 0 65 0", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct summon command example: at_coords. Using 1.21 syntax.", "commands": ["summon minecraft:tnt 0 65 0"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:summon:at_coords", "risk_level": 3}}
{"id": "ref-summon-with_nbt", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo zombie ~ ~ ~ {IsBaby:1}", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct summon command example: with_nbt. Using 1.21 syntax.", "commands": ["summon minecraft:zombie ~ ~ ~ {IsBaby:1}"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:summon:with_nbt", "risk_level": 3}}
{"id": "ref-summon-named", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo villager ~ ~ ~ {CustomName:'\"Bob\"'}", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct summon command example: named. Using 1.21 syntax.", "commands": ["summon minecraft:villager ~ ~ ~ {CustomName:'\"Bob\"'}"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:summon:named", "risk_level": 3}}
{"id": "ref-summon-err-0", "source": "manual", "category": "negative", "input": {"user_message": "sudo summon common error: 'summon tnt ~ ~1 ~ 20' is INVALID -- cannot append count. Must use separate summon commands for multiple entities.", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for summon command: 'summon tnt ~ ~1 ~ 20' is INVALID -- cannot append count. Must use separate summon commands for multiple entities.. The model should avoid this mistake.", "commands": [], "message": "'summon tnt ~ ~1 ~ 20' is INVALID -- cannot append count. Must use separate summon commands for multiple entities.", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:summon:common_errors", "risk_level": 3}}
{"id": "ref-summon-err-1", "source": "manual", "category": "negative", "input": {"user_message": "sudo summon common error: Missing minecraft: namespace prefix on entity type", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for summon command: Missing minecraft: namespace prefix on entity type. The model should avoid this mistake.", "commands": [], "message": "Missing minecraft: namespace prefix on entity type", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:summon:common_errors", "risk_level": 3}}
{"id": "ref-worldborder-syntax", "source": "manual", "category": "info", "input": {"user_message": "sudo how do I use the worldborder command", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Information query about worldborder command syntax in 1.21.", "commands": [], "message": "Manages the world border. Syntax:\n worldborder add <distance> [<time>]\n worldborder center <pos>\n worldborder damage amount <damagePerBlock>\n worldborder damage buffer <distance>\n worldborder get\n worldborder set <distance> [<time>]\n worldborder warning distance <distance>\n worldborder warning time <time>\nNote: No significant changes in 1.21.", "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:worldborder", "risk_level": 3}}
{"id": "ref-worldborder-get_size", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo get", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct worldborder command example: get_size. Using 1.21 syntax.", "commands": ["worldborder get"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:worldborder:get_size", "risk_level": 3}}
{"id": "ref-worldborder-set_500", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo set 500", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct worldborder command example: set_500. Using 1.21 syntax.", "commands": ["worldborder set 500"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:worldborder:set_500", "risk_level": 3}}
{"id": "ref-worldborder-shrink_over_time", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo set 100 600", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct worldborder command example: shrink_over_time. Using 1.21 syntax.", "commands": ["worldborder set 100 600"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:worldborder:shrink_over_time", "risk_level": 3}}
{"id": "ref-worldborder-center", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo center 0 0", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct worldborder command example: center. Using 1.21 syntax.", "commands": ["worldborder center 0 0"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:worldborder:center", "risk_level": 3}}
{"id": "ref-worldborder-err-0", "source": "manual", "category": "negative", "input": {"user_message": "sudo worldborder common error: 'worldborder set 0' sets border to zero, effectively killing all players outside center", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for worldborder command: 'worldborder set 0' sets border to zero, effectively killing all players outside center. The model should avoid this mistake.", "commands": [], "message": "'worldborder set 0' sets border to zero, effectively killing all players outside center", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:worldborder:common_errors", "risk_level": 3}}
{"id": "ref-enchant-syntax", "source": "manual", "category": "info", "input": {"user_message": "sudo how do I use the enchant command", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Information query about enchant command syntax in 1.21.", "commands": [], "message": "Enchants the held item of a player. Syntax:\n enchant <targets> <enchantment> [<level>]\nNote: The /enchant command only works on the item the player is currently holding. It respects vanilla max levels and compatibility rules. For pre-enchanted items, use /give with component syntax instead: give @s diamond_sword[enchantments={sharpness:5}]", "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:enchant", "risk_level": 3}}
{"id": "ref-enchant-basic", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo me sharpness 5", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct enchant command example: basic. Using 1.21 syntax.", "commands": ["enchant slingshooter08 minecraft:sharpness 5"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:enchant:basic", "risk_level": 3}}
{"id": "ref-enchant-all_players", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo everyone unbreaking 3", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct enchant command example: all_players. Using 1.21 syntax.", "commands": ["enchant @a minecraft:unbreaking 3"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:enchant:all_players", "risk_level": 3}}
{"id": "ref-enchant-err-0", "source": "manual", "category": "negative", "input": {"user_message": "sudo enchant common error: Using /enchant to fully enchant items is unreliable -- it only affects held item and respects vanilla limits. Prefer /give with enchantment components for guaranteed results.", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for enchant command: Using /enchant to fully enchant items is unreliable -- it only affects held item and respects vanilla limits. Prefer /give with enchantment components for guaranteed results.. The model should avoid this mistake.", "commands": [], "message": "Using /enchant to fully enchant items is unreliable -- it only affects held item and respects vanilla limits. Prefer /give with enchantment components for guaranteed results.", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:enchant:common_errors", "risk_level": 3}}
{"id": "ref-enchant-err-1", "source": "manual", "category": "negative", "input": {"user_message": "sudo enchant common error: Cannot stack incompatible enchantments (e.g. sharpness + smite)", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for enchant command: Cannot stack incompatible enchantments (e.g. sharpness + smite). The model should avoid this mistake.", "commands": [], "message": "Cannot stack incompatible enchantments (e.g. sharpness + smite)", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:enchant:common_errors", "risk_level": 3}}
{"id": "ref-scoreboard-syntax", "source": "manual", "category": "info", "input": {"user_message": "sudo how do I use the scoreboard command", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Information query about scoreboard command syntax in 1.21.", "commands": [], "message": "Manages scoreboard objectives and player scores. Syntax:\n scoreboard objectives add <objective> <criteria> [<displayName>]\n scoreboard objectives list\n scoreboard objectives modify <objective> displayname <displayName>\n scoreboard objectives modify <objective> rendertype (hearts|integer)\n scoreboard objectives remove <objective>\n scoreboard objectives setdisplay <slot> [<objective>]\n scoreboard players add <targets> <objective> <score>\n scoreboard players display name <targets> <objective> <name>\n scoreboard players display numberformat <targets> <objective> ...\n scoreboard players enable <targets> <objective>\n scoreboard players get <target> <objective>\n scoreboard players list [<target>]\n scoreboard players operation <targets> <targetObjective> <operation> <source> <sourceObjective>\n scoreboard players remove <targets> <objective> <score>\n scoreboard players reset <targets> [<objective>]\n scoreboard players set <targets> <objective> <score>\nNote: No significant changes in 1.21.", "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:scoreboard", "risk_level": 3}}
{"id": "ref-scoreboard-create_objective", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo objectives add deaths deathCount \"Deaths\"", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct scoreboard command example: create_objective. Using 1.21 syntax.", "commands": ["scoreboard objectives add deaths deathCount \"Deaths\""], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:scoreboard:create_objective", "risk_level": 3}}
{"id": "ref-scoreboard-set_score", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo players set me deaths 0", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct scoreboard command example: set_score. Using 1.21 syntax.", "commands": ["scoreboard players set slingshooter08 deaths 0"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:scoreboard:set_score", "risk_level": 3}}
{"id": "ref-scoreboard-add_score", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo players add me deaths 1", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct scoreboard command example: add_score. Using 1.21 syntax.", "commands": ["scoreboard players add slingshooter08 deaths 1"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:scoreboard:add_score", "risk_level": 3}}
{"id": "ref-scoreboard-display", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo objectives setdisplay sidebar deaths", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct scoreboard command example: display. Using 1.21 syntax.", "commands": ["scoreboard objectives setdisplay sidebar deaths"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:scoreboard:display", "risk_level": 3}}
{"id": "ref-data-syntax", "source": "manual", "category": "info", "input": {"user_message": "sudo how do I use the data command", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Information query about data command syntax in 1.21.", "commands": [], "message": "Gets, merges, modifies, or removes NBT data from entities, block entities, or storage. Syntax:\n data get (block <targetPos>|entity <target>|storage <target>) [<path>] [<scale>]\n data merge (block <targetPos>|entity <target>|storage <target>) <nbt>\n data modify (block <targetPos>|entity <target>|storage <target>) <targetPath> (append|insert <index>|merge|prepend|set) (from (block <sourcePos>|entity <source>|storage <source>) [<sourcePath>]|string (block <sourcePos>|entity <source>|storage <source>) [<sourcePath>] [<start>] [<end>]|value <value>)\n data remove (block <targetPos>|entity <target>|storage <target>) <path>\nNote: 'data get block' only works on block entities (chests, signs, etc.), NOT regular blocks like stone or grass.", "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:data", "risk_level": 3}}
{"id": "ref-data-get_player_pos", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo get entity slingshooter08 Pos", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct data command example: get_player_pos. Using 1.21 syntax.", "commands": ["data get entity slingshooter08 Pos"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:data:get_player_pos", "risk_level": 3}}
{"id": "ref-data-get_block_data", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo get block 0 64 0", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct data command example: get_block_data. Using 1.21 syntax.", "commands": ["data get block 0 64 0"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:data:get_block_data", "risk_level": 3}}
{"id": "ref-data-get_health", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo get entity me Health", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct data command example: get_health. Using 1.21 syntax.", "commands": ["data get entity slingshooter08 Health"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:data:get_health", "risk_level": 3}}
{"id": "ref-data-get_inventory", "source": "manual", "category": "command_gen", "input": {"user_message": "sudo get entity me Inventory", "server_context": {"server_type": "paper", "version": "1.21.x", "online_players": ["slingshooter08"]}}, "output": {"reasoning": "Direct data command example: get_inventory. Using 1.21 syntax.", "commands": ["data get entity slingshooter08 Inventory"], "safety_flags": []}, "metadata": {"difficulty": "easy", "validated": true, "extracted_from": "commands.json:data:get_inventory", "risk_level": 3}}
{"id": "ref-data-err-0", "source": "manual", "category": "negative", "input": {"user_message": "sudo data common error: 'data get block' on non-block-entity blocks returns 'The target block is not a block entity'", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for data command: 'data get block' on non-block-entity blocks returns 'The target block is not a block entity'. The model should avoid this mistake.", "commands": [], "message": "'data get block' on non-block-entity blocks returns 'The target block is not a block entity'", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:data:common_errors", "risk_level": 3}}
{"id": "ref-data-err-1", "source": "manual", "category": "negative", "input": {"user_message": "sudo data common error: Cannot modify player data directly with 'data merge entity' in most cases", "server_context": {"server_type": "paper", "version": "1.21.x"}}, "output": {"reasoning": "Known error pattern for data command: Cannot modify player data directly with 'data merge entity' in most cases. The model should avoid this mistake.", "commands": [], "message": "Cannot modify player data directly with 'data merge entity' in most cases", "safety_flags": []}, "metadata": {"difficulty": "medium", "validated": true, "extracted_from": "commands.json:data:common_errors", "risk_level": 3}}