What problem does it solve? NetEase Minecraft mod developers juggle many MCP tools for API lookup, JSON UI editing, geometry and animation changes, and pixel texture work, and picking the wrong tool or workflow wastes effort. This Skill acts as a dispatcher that selects the right mcdk_assistant MCP tool family and sequences the correct workflow for each task. ## Core Features & Use Cases - Tool Selection and Routing: Maps task types (API/event/enum search, JSON UI patching, geometry editing, animation keyframes, pixel art) to precise MCP tools like search_api, patch_ui_file, model_op, anim_op, and canvas_*. - Structured Editing Guidance: Enforces parse-then-edit workflows (dump_ui_tree before patch_ui_file, model_parse before model_op) instead of rewriting large JSON files by hand. - Skill Boundaries and Fallbacks: Defines when to defer to other skills (netease-api-researcher, netease-ui-binder, netease-game-instrumentation) and how to fall back to local Docs folders when the MCP server is unavailable. - Use Case: A user asks to mirror a right-arm swing animation to the left arm; the Skill directs animation_parse, animation_get_bone_channel, then anim_op with mirror_bone_rotation. ## Quick Start Ask the assistant to use the mcdk_assistant MCP server to look up a NetEase Mod API or patch a JSON UI file, and it will pick the right tools and workflow.