用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Conceptual-Machines/magda-core --skill move-file命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | move-file |
| description | Move a C++ source file to a new location, updating all |
Automates moving a C++ source file and updating all related references.
Run from the project root:
python3 .claude/skills/move-file/move-file.py [--dry-run] <old-path> <new-path>
Both paths are relative to the project root. Use --dry-run to preview what would change without modifying any files.
# Preview changes first (no files modified)
python3 .claude/skills/move-file/move-file.py --dry-run \
magda/daw/core/Config.hpp \
magda/daw/engine/Config.hpp
# Move a header from core/ to engine/
python3 .claude/skills/move-file/move-file.py \
magda/daw/core/Config.hpp \
magda/daw/engine/Config.hpp
git mv the file (preserves git history)#include references in all .cpp/.hpp files:
"../core/Config.hpp") → recomputed relative path from referencing file"magda/daw/core/Config.hpp") → updated pathmagda/daw/CMakeLists.txt source entries (for .cpp files only)Review all changes before building:
git diff
make debug
基于 SOC 职业分类