minecraft-debug-mcp
Operate and debug the live Minecraft bot through its built-in MCP REPL server. Use when work requires starting the bot with `pnpm dev`, connecting to the local MCP endpoint, inspecting cognitive state/logs/history, injecting synthetic chat/events, or running targeted REPL code against the running brain during investigation and development.
DeepseekModel
官方收录技能
质量 优秀 · 90
v1.0.0
获取
https://deepseekmodel.com/api/download.php?id=moeru-ai-airi-integrations-minecraft-codex-skills-minecraft-debug-mcp-skill-md&format=skill
下载 .skill
标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name minecraft-debug-mcp description Operate and debug the live Minecraft bot through its built-in MCP REPL server. Use when work requires starting the bot with `pnpm dev`, connecting to the local MCP endpoint, inspecting cognitive state/logs/history, injecting synthetic chat/events, or running targeted REPL code against the running brain during investigation and development. Minecraft Debug MCP Overview Use this skill to run the local bot and interact with its MCP debug interface safely and quickly. Quick Start Workflow Run pnpm dev from /path/to/project/root/integrations/minecraft and keep it running. Wait for MCP REPL server running at http://localhost:3001 in logs. Connect MCP client to http://localhost:3001/sse . Verify readiness with a read-only call: Read resource brain://state , or Call tool get_state . Continue with the smallest tool/action that answers the task. Execution Rules Start read-only, then escalate to mutation tools only when needed. Prefer get_state , get_last_prompt , and get_logs for diagnostics before execute_repl . Prefer get_llm_trace for structured per-attempt reasoning/content inspection. Keep execute_repl snippets minimal and reversible. Use inject_chat for conversational simulation and inject_event only when specific event-shape testing is required. Treat inject_chat as side-effectful: it can trigger actual in-game bot replies/actions. If MCP connection fails, check that pnpm dev is still running and port 3001 is free. Tooling Strategy Use get_state to inspect queue/processing state and available tools/actions (skips REPL builtins by default; pass { includeBuiltins: true } to include them). Use get_logs with a small limit first. Use get_last_prompt to inspect latest LLM input. Use execute_repl for deep object inspection or one-off targeted calls on the running brain. Use inject_chat to simulate player chat and verify behavior loop. Use get_llm_trace to assert REPL behavior in automation (for example, detect repeated await skip() on specific events). Use execute_repl("forget_conversation()") to clear conversation memory before prompt-engineering tests. Read references/mcp-surface.md for exact tool/resource names and argument schemas. Live-Tested Notes get_state returns available tools/actions and runtime state (skips REPL builtins like skip , use , log by default to reduce noise; pass { includeBuiltins: true } if you need to inspect them). get_last_prompt can return very large payloads; call only when prompt-level debugging is needed. execute_repl returns a structured result where returnValue is stringified; parse mentally as display output, not typed JSON. get_logs(limit=10) is enough to verify whether an injected event reached REPL/executor. get_llm_trace(limit, turnId?) gives structured attempt-level trace data (messages, content, reasoning, usage, duration). get_last_prompt and get_llm_trace are compacted for MCP: system prompt/system-role messages are omitted to reduce token cost. Prefer compact value reads in REPL: query.self() for bot status. query.inventory().has(name, n) / query.inventory().count(name) for checks. query.inventory().summary() for stable aggregated item output. query.snapshot(range?) for one-shot world+inventory capture. forget_conversation() is available as a runtime function in REPL/global context and clears only conversation memory. Current prompt behavior supports two-turn value-first flows: read/query turn returns concrete data first, follow-up turn performs chat/action using that returned value. Live Testing Workflow Confirm MCP health: Call get_state . Capture baseline inventory: execute_repl with query.inventory().list().map(i => ({ name: i.name, count: i.count })) . Trigger a task through normal cognition path: Call inject_chat with a clear instruction (example: "please gather 3 dirt blocks"). Verify execution trace: Call get_logs(limit=10) and check for: bot acknowledgement chat action tool feedback (for example collectBlocks ) REPL result summary Call get_llm_trace(limit=5) when you need exact model output/reasoning for assertions. Re-check inventory using the same REPL snippet and compare against baseline. Use this workflow when validating behavior changes, tool wiring, or regressions in planning/execution loops.
Agent 识别该技能的关键词,点击任意一个即可复制。
该技能未提供触发词。
下载的 .skill 包内含以下字段。
| 字段 | 说明 |
|---|---|
| format | 格式标识(skill/v1) |
| skill_id | 技能唯一 ID |
| name | 技能名称 |
| version | 版本号 |
| description | 技能描述 |
| category | 所属分类(数组) |
| trigger_words | 触发词列表 |
| tags | 标签列表 |
| source | 来源标识 |
| source_url | 来源链接(本页地址) |
| exported_at | 导出时间(每次下载生成) |
| system_prompt | 系统提示词正文 |
| model_config | 模型参数:provider / model / temperature / max_tokens / top_p |
| examples | 示例 |
| install_guide | 各平台导入说明(Coze / Dify / Claude / 自定义框架) |