开发编程
#mcp
embedded-debugger
Embedded hardware debugging workflow for probe-rs targets using embedded-debugger-mcp. Use when Codex or Claude Code needs to inspect debug probes, validate embedded debugger setup, start the MCP server, guide a user through ARM Cortex-M/RISC-V flashing/debugging/RTT workflows, or operate without installing an MCP client by using the CLI plus prompts.
DeepseekModel
官方收录技能
质量 优秀 · 78
v1.0.0
获取
https://deepseekmodel.com/api/download.php?id=adancurusul-embedded-debugger-mcp-skills-embedded-debugger-skill-md&format=skill
下载 .skill
标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name embedded-debugger description Embedded hardware debugging workflow for probe-rs targets using embedded-debugger-mcp. Use when Codex or Claude Code needs to inspect debug probes, validate embedded debugger setup, start the MCP server, guide a user through ARM Cortex-M/RISC-V flashing/debugging/RTT workflows, or operate without installing an MCP client by using the CLI plus prompts. Embedded Debugger Use the local embedded-debugger-mcp binary as the source of truth. Prefer CLI checks first, then MCP tools when an MCP client is available. Entry Decision If the user has an MCP client configured, start or verify the server: embedded-debugger-mcp serve If the user wants no MCP install, use CLI-first mode: embedded-debugger-mcp doctor , embedded-debugger-mcp probes list , and embedded-debugger-mcp skill print-prompt . If hardware access is required, confirm the probe and target are connected before destructive actions such as flash erase or program. CLI Workflow Run these in order and report the exact outcome: embedded-debugger-mcp doctor embedded-debugger-mcp probes list embedded-debugger-mcp config show Use JSON for automation: embedded-debugger-mcp doctor --json embedded-debugger-mcp probes list --json Backends One tool set runs over two interchangeable engines, chosen at connect : backend: "probe-rs" (default) — native probe-rs; supports flash and RTT. backend: "openocd" (experimental) — talks to an already-running openocd over its GDB port via openocd_address (default 127.0.0.1:3333 ). Use for chips probe-rs does not cover well (e.g. Xtensa ESP32 via openocd-esp32). Memory access and halt/run/step/reset are validated on real ESP32-S3; flash and RTT are not available on this backend. Register reads currently use ARM gdb register numbers, so PC/SP are wrong on Xtensa (known limitation). diagnose_fault and unwind_exception are Cortex-M specific and do not apply to Xtensa targets. Start openocd with gdb_memory_map disable , otherwise it probes flash on the GDB connect, fails, and REJECTS the connection. Example: openocd -f board/esp32s3-builtin.cfg -c "gdb_memory_map disable" . The AI uses the same tools regardless of backend; only connect differs. MCP Workflow Use MCP tools for session-based operations: list_probes connect (add backend: "openocd" and openocd_address to use OpenOCD) Read-only checks such as probe_info , get_status , and read_memory On a crash or halt, call diagnose_fault : it reads the Cortex-M SCB fault registers (CFSR/HFSR/MMFAR/BFAR/SHCSR/CPUID) plus PC/SP/LR and returns a compact structured evidence bundle in one call. Halt the target first for meaningful values; reason over the set fault bits yourself. Then call unwind_exception with elf_path to map the crash to a source line (full DWARF backtrace on probe-rs; faulting PC/LR on OpenOCD). Mutating operations only after the user confirms target, file path, and risk: write_memory , flash_erase , flash_program , run_firmware (probe-rs) RTT operations after firmware is running: rtt_attach , rtt_channels , rtt_read , rtt_write , rtt_detach (probe-rs) disconnect Fetch authoritative info yourself You are a capable model: prefer fetching ground truth over relying on memorized or hardcoded chip data. This skill points you to sources; it does not embed register tables. In order of authority: The target itself (runtime, most authoritative for this exact chip): registers are self-described by the GDB target description; memory is read with read_memory ; core identity from CPUID / the connected target. The firmware ELF (what is actually running): symbols and source lines come from DWARF — use unwind_exception (pass elf_path ) to map addresses to file:line . The chip datasheet / reference manual (external, per-chip): for a peripheral or fault register, find the peripheral's base in the memory-map chapter, add the register offset, then read_memory . Search the vendor document for the exact value; do not guess addresses from memory. CMSIS-SVD files are a machine-readable source for register maps. ARM Cortex-M architecture registers (SCB fault regs, CPUID) are fixed by the ARM architecture and identical across vendors — diagnose_fault reads them. They do not exist on non-Cortex-M targets (e.g. Xtensa ESP32). Do not hardcode or invent register/peripheral addresses. If a value is not recoverable from the target, the ELF, or a cited datasheet, say so. Know your versions Behavior and target support depend on tool versions — check them before concluding something is unsupported or broken: probe-rs version determines which chips and architectures are supported (e.g. Xtensa support is comparatively new). Check embedded-debugger-mcp doctor . OpenOCD version and fork matter: the Espressif fork (openocd-esp32) is needed for Xtensa ESP32, and some targets need flags like gdb_memory_map disable . Check openocd --version . Probe firmware (ST-Link / J-Link) can affect connectivity; probes list reports the connected probe. Safety Rules Treat flash erase, flash program, memory write, reset, run, and RTT write as mutating hardware operations. Prefer read-only discovery before mutation. Respect project configuration limits for file paths, file sizes, memory ranges, and flash erase permissions. Do not claim hardware success from command text alone; cite the command or MCP tool result that produced the evidence. Prompt Reference For a reusable CLI+Skill prompt, read references/default-prompt.md .
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 / 自定义框架) |