get-storage-manual
Use this when answering any question about item and storage. The guidance of tool get_storage.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use this when answering any question about item and storage. The guidance of tool get_storage.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Use this when user ask you to find or craft some item for them. The guidance of tool storage_fetch.
Find and mark item in storage for user. When user ask for the LOCATION of something, use this skill. The guidance of tool find_mark_storage.
基于 SOC 职业分类
| name | get_storage_manual |
| description | Use this when answering any question about item and storage. The guidance of tool get_storage. |
Call get_storage tool to query the item storage.
This tool accepts an optional string as filter pattern. If not provided, all items will be returned.
If you want to search in all items(not only in storage), use parameter all to set true. This would be useful to search all item in the game.
For example, when user ask: "Where are my gold and iron?",you may call the tool as follows:
get_storage({"filter":"gold"})
[TOOL RESPONSE]>> [{"id": "minecraft:glod_block", "name": "Gold Block", "count": 64, "craftable":true},{"id": "minecraft:glod_ingot","name": "Gold Ingot", "count": 64, "craftable":false},{"id": "minecraft:glod_nugget","name": "Gold Nugget", "count": 0, "craftable":true}]
get_storage({"filter":"iron","all": true})
[TOOL RESPONSE]>> [{"id": "minecraft:iron_axe", "name": "Iron Axe"},{"id": "minecraft:iron_ingot", "name": "Iron Ingot"},....]
Warning, if the result of your filter is greater than 150, you may get an error message.
You should always prefer use user's input language to perform the query.
If you want to read more detail about the item, use parameter showTooltip.
get_storage({"filter":"diamond"})
[TOOL RESPONSE]>> [{"id": "minecraft:diamond_sword", "name": "Diamond Sword", "count": 1, "craftable":false, "tooltip": "On mainhand:\\n 5.5 Damage\\n 1 Speed\\nDurability:912"}]
If you want also search pattern in tooltip, use parameter queryTooptip.
Craftable indicates that there is a craft guide that provides this item. Sometimes some item without craft guide or even not in memory may be craftable, you may call simulate_crafting to check it.
Never calculate the crafting path your self, always use simulate_crafting instead. Never check ingredients before calling tool.
simulate_crafting({"itemId": "minecraft:diamond_sword","cound":1})
[TOOL RESPONSE]>> {"success": true, "steps":2, "consumes": [{"id": "minecraft:diamond", "count": 2}, {"id": "minecraft:oak_log", "count": 2}]}
simulate_crafting({"itemId": "minecraft:torch","cound":1})
[TOOL RESPONSE]>> {"success": false, "missing": [{"id": "minecraft:coal", "count": 1}], "fails":[]}
If no fails or missing info are provided, it means there's no craft guide related to this item.
If tool has returned success:true, that means you can use fetch_item for this item. Read fetch_item_manual for more detail.
Simulate crafting DO NOT generate actual item. USE fetch_item to get item.
Never tell user about ids, use item name instead.
If something not found, try to use all parameter.