技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.1.1
统计:⭐ 2 · 992 · 3 current installs · 3 all-time installs
⭐ 2
安装量(当前) 3
🛡 VirusTotal :可疑 · OpenClaw :良性
Package:atlascore-tech/desktop-sandbox
安全扫描(ClawHub)
- VirusTotal :可疑
- OpenClaw :良性
OpenClaw 评估
The skill's code and instructions are consistent with a desktop installer: it fetches releases from a GitHub repo and runs the platform installer, but it will download and execute system-level installers so you should verify the upstream project before running it.
目的
The name and description claim to install a desktop sandbox. The code and SKILL.md implement a downloader/installer that fetches GitHub releases from the specified repo and runs the .pkg on macOS or .exe on Windows. Requiring node is appropriate for the provided Node script.
说明范围
Instructions are narrow and explicit: run node scripts/run_installer.js (optionally with --version). The installer script downloads release assets from GitHub and executes them. This is in-scope for an installer, but the runtime will download arbitrary binaries from the repo's releases and execute them (including installing into system locations), which is a high-impact action that users should consciously approve.
安装机制
There is no packaged install spec; the skill is instruction + embedded Node script. The script uses the GitHub API to find release assets and downloads them directly (via HTTPS) before running installers. Using GitHub releases is a reasonable source, but downloading and executing release assets is moderate risk compared with an instruction-only skill because it writes and executes binaries on the host.
证书
The skill only requires the node binary and does not request credentials, environment variables, or config paths. The script does not appear to read unrelated environment variables or sensitive files in the provided portion of the code.
持久
The skill does not request permanent presence (always:false) and does not modify other skills. However, it attempts to run OS installers that may write to system directories (e.g., Program Files / root), which can trigger elevation prompts or require administrative privileges. That is expected for an installer but increases the potential impact if the upstream installer is untrusted.
综合结论
This skill will download a platform installer from the GitHub releases of AtlasCore-tech/desktop-sandbox-openclaw and execute it on your machine. That behavior matches its stated purpose but has real risk because installers run with system impact. Before using it: (1) verify the upstream GitHub repo and its maintainer are trustworthy, (2) inspect the release assets and checksums on the repo yourself (or ask for signed releases), (3) run the in…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Desktop Sandbox」。简介:A desktop sandbox lets OpenClaw run as natively as on a real OS, ensuring full …。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/atlascore-tech/desktop-sandbox/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: desktop-sandbox
description: A desktop sandbox lets OpenClaw run as natively as on a real OS, ensuring full functionality with safe isolation.Run OpenClaw without breaking your PC.
metadata:
{
"openclaw":
{
"emoji": "📦",
"requires": { "bins": ["node"] },
},
}
---
# Desktop Sandbox Installer
Install [AtlasCore Desktop Sandbox](https://github.com/AtlasCore-tech/desktop-sandbox-openclaw) from GitHub releases.
## Script
```bash
node scripts/run_installer.js [--version=v1.0]
```
## Parameters
| Parameter | Description |
|-----------|-------------|
| `--version` | Specific version (default: latest) |
## Platform Behavior
| Platform | Installer | Target |
|----------|-----------|--------|
| Windows | `.exe` → `/S /D=C:Program Files` | `C:Program Files` |
| macOS | `.pkg` → `open -W` | `/` |
## Exit Codes
| Code | Meaning |
|------|---------|
| 0 | Success |
| 1 | Installation failed |
| 999 | Fatal error |
## OpenClaw Conversation Usage
In conversation, simply say:
- "Install AtlasCore desktop sandbox"
- "Install desktop sandbox"
- "Download and install AtlasCore sandbox"