
Software Move
- 16 installs
- modelscope.cn
Helps with ai & agent building tasks during AI-assisted development.
About
software-move is a Claude Code skill for ai & agent building. It helps developers move faster with AI-assisted coding.
- software-move
- AI & Agent Building
- AI-coding skill
Software Move by the numbers
- 16 all-time installs (skills.sh)
- Ranked #11,040 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Jul 7, 2026 (Skillselion catalog sync)
npx skills add https://github.com/modelscope.cn --skill software-moveAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 16 |
|---|---|
| Repository | modelscope.cn ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
software-move
用于在磁盘间搬移已安装软件并支持历史还原的技能。
安装
cd scripts && pip install -e .工作流程
1. 扫描 → softwaremove scan disk <盘符> 2. 检测 → softwaremove move check --source <路径> --name <名称> 3. 迁移 → softwaremove move start --source <源路径> --target <目标路径> 4. 还原 → softwaremove history restore --id <编号>
常用命令
# 扫描磁盘
softwaremove scan disk D
# 检测软件是否可搬移
softwaremove move check --source "C:\Users\1\AppData\Local\Figma" --name "Figma"
# 搬移软件(Program Files 目录需加 --admin)
softwaremove move start --source "C:\Program Files\Docker\Docker" --target "D:\SoftwareMoved\Docker" --admin
# 查看历史记录
softwaremove history list
# 撤销上一次迁移
softwaremove history undo管理员权限
C:\Program Files、C:\Program Files (x86)、C:\Windows 下的软件需要管理员权限才能创建 junction 链接。迁移时添加 --admin 参数自动请求 UAC 提权。
执行前提醒(Agent 必读)
在执行任何需要 --admin 的操作(包括 move start、history restore、history undo、history redo)之前,Agent 必须先向用户发送以下提醒:
即将执行软件搬家/还原操作。过程中可能会弹出一个新的终端窗口(UAC 提权),请不要关闭该窗口,等操作执行完成后它会自动关闭。
待用户确认收到提醒后,再执行实际命令。
参考文档
- 完整使用说明与命令详解
- CLI 实现说明
- README - 开发与安装
- 测试计划