remote-executor-system — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited remote-executor-system (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 由关键词触发加载,不要常驻。
#### 列出进程
POST /process/list
Content-Type: application/json
{
"filter": "python", // 可选,按名称过滤
"sort_by": "memory", // memory, cpu, name
"limit": 30
}返回:
{
"processes": [
{"pid": 1234, "name": "python.exe", "cpu": 5.2, "memory_mb": 256}
],
"count": 1
}#### 结束进程
POST /process/kill
Content-Type: application/json
{"pid": 1234} // 按 PID
// 或
{"name": "python"} // 按名称模糊匹配#### 读取注册表
POST /reg/read
Content-Type: application/json
{
"key": "HKLM\\Software\\Microsoft\\Windows\\CurrentVersion",
"value_name": "ProgramFilesDir"
}#### 写入注册表
POST /reg/write
Content-Type: application/json
{
"key": "HKCU\\Software\\MyApp",
"value_name": "Setting",
"data": "123",
"reg_type": "REG_SZ" // REG_SZ, REG_DWORD, REG_QWORD, REG_BINARY, REG_MULTI_SZ
}#### 列出服务
POST /service/list
Content-Type: application/json
{"filter": ""} // 可选过滤#### 启动服务
POST /service/start-svc
Content-Type: application/json
{"name": "ServiceName"}#### 停止服务
POST /service/stop-svc
Content-Type: application/json
{"name": "ServiceName"}#### 列出计划任务
POST /task/list
Content-Type: application/json
{"filter": ""}#### 创建计划任务
POST /task/create
Content-Type: application/json
{
"name": "MyTask",
"command": "python D:\\script.py",
"schedule": "DAILY" // ONCE, DAILY, WEEKLY, MONTHLY
}#### 删除计划任务
POST /task/delete
Content-Type: application/json
{"name": "MyTask"}查看 Python 进程:
curl -s -X POST http://<host>:8765/process/list \
-H "Content-Type: application/json" \
-d '{"filter": "python", "sort_by": "memory", "limit": 10}'结束进程:
curl -s -X POST http://<host>:8765/process/kill \
-H "Content-Type: application/json" \
-d '{"pid": 1234}'读取注册表:
curl -s -X POST http://<host>:8765/reg/read \
-H "Content-Type: application/json" \
-d '{"key": "HKLM\\Software\\Microsoft\\Windows\\CurrentVersion", "value_name": "ProgramFilesDir"}'列出服务:
curl -s -X POST http://<host>:8765/service/list \
-H "Content-Type: application/json" \
-d '{"filter": ""}'~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.