用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/MikeTreml/MissionControl --skill jtag-swd-debug命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Expert Electron application architecture skill for IPC design, main/renderer/preload boundaries, security hardening, performance optimization, packaging strategy, native integration, and cross-platform desktop development. Use when reviewing or designing Electron apps, planning migrations, auditing architecture risks, choosing IPC patterns, diagnosing startup or memory issues, or coordinating related Electron skills.
Generates DrawIO XML diagrams for Amazon Web Services architectures from text descriptions or images. Analyzes existing .drawio files to extract AWS components. Use for AWS architecture diagrams, cloud infrastructure documentation, or when converting AWS diagram images to editable DrawIO format.
Generates DrawIO XML diagrams for Google Cloud Platform architectures from text descriptions or images. Analyzes existing .drawio files to extract GCP components. Use for GCP architecture diagrams, cloud infrastructure documentation, or when converting GCP diagram images to editable DrawIO format.
基于 SOC 职业分类
正在显示 SKILL.md
| name | jtag-swd-debug |
| description | Deep integration with JTAG/SWD debug probes for hardware-level debugging and flash programming |
| category | Hardware Debugging |
| allowed-tools | ["Bash","Read","Write","Edit","Glob","Grep"] |
This skill provides deep integration with JTAG/SWD debug probes for hardware-level debugging, flash programming, and real-time firmware analysis. It enables direct hardware interaction through industry-standard debug interfaces.
hardware-bring-up.js - Initial board validation and debug setupbootloader-implementation.js - Bootloader debugging and flash operationsdevice-driver-development.js - Driver debugging with hardware accessfield-diagnostics.js - Field debugging and analysisThis skill is invoked when tasks require:
debug_probe:
type: jlink | stlink | openocd | cmsis-dap
interface: swd | jtag
speed: 4000 # kHz
target: cortex-m4 | cortex-m7 | etc.
openocd -f interface/stlink.cfg -f target/stm32f4x.cfg \
-c "program firmware.elf verify reset exit"
JLinkExe -device STM32F407VG -if SWD -speed 4000 \
-CommanderScript read_memory.jlink
openocd -f board/stm32f4discovery.cfg \
-c "init; halt; reg; resume; exit"