用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/MikeTreml/MissionControl --skill memory-analysis命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | memory-analysis |
| description | Embedded memory analysis, optimization, and leak detection |
| category | Resource Optimization |
| allowed-tools | ["Bash","Read","Write","Edit","Glob","Grep"] |
This skill provides comprehensive memory analysis capabilities for embedded systems, including linker map analysis, stack usage estimation, heap fragmentation detection, and memory optimization strategies.
memory-architecture-planning.js - Memory layout designcode-size-optimization.js - Size reduction strategiesexecution-speed-profiling.js - Memory access optimizationbootloader-implementation.js - Multi-image memory layoutThis skill is invoked when tasks require:
Section Size Used Free Usage
.text 128 KB 98.5 KB 29.5 KB 76.9%
.rodata 32 KB 24.2 KB 7.8 KB 75.6%
.data 8 KB 2.1 KB 5.9 KB 26.2%
.bss 16 KB 12.4 KB 3.6 KB 77.5%
Function Stack Depth Total
main 64 1 64
process_data 128 2 192
parse_message 256 3 448
handle_packet 96 4 544
memory_analysis:
map_file: build/firmware.map
stack_analysis: enabled
heap_tracking: enabled
warning_threshold: 85 # percent
tools:
- puncover
- gcc-stack-analyzer