remote-executor-desktop — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited remote-executor-desktop (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
注意: 此 skill 由关键词触发加载,不要常驻。
#### 读取剪贴板
GET /clipboard返回:
{"content": "剪贴板内容"}#### 设置剪贴板
POST /clipboard
Content-Type: application/json
{"text": "要设置的内容"}#### 发送 Windows 通知
POST /notification
Content-Type: application/json
{
"title": "Remote Executor",
"message": "任务已完成!"
}#### 锁定工作站
POST /lock-screen返回:
{"message": "Screen locked"}#### 查询 Windows 事件日志
POST /event-log
Content-Type: application/json
{
"log_name": "System", // System, Application, Security
"count": 20,
"level": "error" // critical, error, warning, information, verbose
}返回:
{
"events": [
{"time": "2024-01-01T00:00:00", "id": 1000, "level": "Error", "provider": "Service", "message": "..."}
],
"count": 1,
"log_name": "System"
}读取剪贴板:
curl -s http://<host>:8765/clipboard设置剪贴板:
curl -s -X POST http://<host>:8765/clipboard \
-H "Content-Type: application/json" \
-d '{"text": "Hello from Remote Executor"}'发送通知:
curl -s -X POST http://<host>:8765/notification \
-H "Content-Type: application/json" \
-d '{"title": "测试", "message": "这是一条测试通知"}'查询系统错误日志:
curl -s -X POST http://<host>:8765/event-log \
-H "Content-Type: application/json" \
-d '{"log_name": "System", "count": 10, "level": "error"}'~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.