技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 119 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :可疑 · OpenClaw :良性
Package:578499893/clean-desktop
安全扫描(ClawHub)
- VirusTotal :可疑
- OpenClaw :良性
OpenClaw 评估
The skill's requested actions, absence of installs/credentials, and runtime instructions align with its stated purpose of reorganizing Desktop files; it is an instruction-only helper with a few minor platform/clarity issues but no evident malicious behavior.
目的
Name/description match the requested capabilities: classifying and moving desktop files by extension. There are no unrelated environment variables, binaries, or installs requested.
说明范围
SKILL.md limits itself to listing and moving desktop files and generating a report, and includes a dry_run option. Minor issues: it assumes the Desktop path as ~/Desktop for Windows (which is inaccurate on many Windows systems), uses folder names in Chinese (may not exist), and doesn't specify exact shell commands or how shortcuts/symlinks are handled. These are implementation/portability gaps rather than scope creep or data-exfiltration.
安装机制
No install spec or code is provided (instruction-only), so nothing will be downloaded or written to disk by an installer. Lowest-risk category for install behavior.
证书
No environment variables, credentials, or config paths are requested. The operations require only filesystem access to the user's Desktop, which is proportionate to the task.
持久
always is false and there is no request to modify other skills or system-wide settings. The skill does not request permanent presence or extra privileges beyond moving files when invoked.
综合结论
This skill appears to do what it claims: preview or move files on your Desktop into folders by type. Before installing or enabling autonomous use, test it with dry_run=true and review the generated report; verify the Desktop path and localized folder names on your platform (Windows typically uses C:Users<User>Desktop, not ~/Desktop). Ensure you have backups or use dry-run to avoid accidental moves, and confirm permissions for moving files. …
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「clean-desktop」。简介:自动分类移动桌面文件到图片、文档、压缩包文件夹,支持预览模式避免实际修改。。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/578499893/clean-desktop/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
# 桌面清理大师
## 描述
自动整理用户桌面文件,按图片、文档、压缩包等类型分类归档。
## 工具
- bash: 执行文件操作命令
- read: 读取桌面文件列表
## 参数
- dry_run: 布尔值,默认为true。如果为true,只预览不实际操作。
## 执行流程
1. 获取桌面路径(Windows为~/Desktop,Mac/Linux为~/Desktop)
2. 列出所有文件(排除.DS_Store和快捷方式)
3. 按扩展名分类:
- 图片:.jpg, .png, .gif → 移入桌面/图片文件夹
- 文档:.pdf, .docx, .txt → 移入桌面/文档文件夹
- 压缩包:.zip, .rar → 移入桌面/压缩包文件夹
4. 生成操作报告,告知用户移动了哪些文件
## 安全提示
- 操作前检查目标文件夹是否存在,不存在则自动创建
- 不处理隐藏文件(以.开头的文件)
- 不删除任何文件,只做移动操作