Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

omniwireomniwire 控制

Agent Skill

omniwire 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,368

周安装

175

GitHub Stars

公开资料未说明

下载量

1,414
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:omniwire(omniwire 控制)
来源仓库:https://github.com/voidchecksum/omniwire
安装命令:
openclaw skills install omniwire
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install omniwire

简介

omniwire 是 AI 代理群的基础设施层,提供 88 个 MCP 工具用于网络控制。

  • 适合在 OpenClaw 中执行浏览器自动化、网页抓取与防火墙管理任务。
  • 支持 A2A 协议通信与 OmniMesh VPN 组网,强化分布式协作能力。
  • 包含网络抓取与页面信息提取功能,可用于前端流程验证。
  • 使用前需确认网络策略允许相关端口与外部连接请求。

SKILL.md

name
omniwire
version
3.5.0
description
Infrastructure layer for AI agent swarms — 88 MCP tools for mesh control, A2A protocol, OmniMesh VPN, CyberSync, web scraping, firewall management, browser automation, and more. ~80ms execution.
tags
[infrastructure, mesh, ssh, devops, servers, docker, remote, mcp, vpn, wireguard, a2a, cybersync, firewall, scraping, browser, security, arm, monitoring, latest]
author
VoidChecksum
homepage
https://github.com/VoidChecksum/omniwire
license
GPL-3.0-only
metadata
openclaw
emoji
🌐
primaryEnv
skillKey
omniwire
requires
bins
["node", "ssh"]
env
[]
install
package
omniwire@latest
bins
["omniwire", "ow"]
stateDirs
["~/.omniwire"]
persistence
OmniWire uses SSH2 to control mesh nodes. Config in ~/.omniwire/mesh.json. Encrypted secrets in ~/.omniwire/secret.key. CyberSync stores knowledge in PostgreSQL. No data leaves your network.

OmniWire v3.5.0 — Mesh Control for AI Agent Swarms

88 MCP tools. 12 categories. Every machine, one agent, zero friction.

OmniWire is the infrastructure layer for AI agent swarms. It connects your entire mesh (VPS, laptops, Raspberry Pis, Docker hosts) into a single controllable surface with 88 tools spanning execution, A2A protocol, OmniMesh VPN, CyberSync, web scraping, firewall management, CDP browser automation, and more.

You: check disk and container status on all servers

Agent: [omniwire_broadcast + omniwire_docker — parallel across all nodes]

  contabo  | 10.0.0.1 | ONLINE | 78ms  | disk=16% | containers: 12 running
  kali     | 10.0.0.2 | ONLINE | 91ms  | disk=34% | containers: 4 running
  rpi      | 10.0.0.3 | ONLINE | 112ms | disk=20% | containers: 2 running

What It Does

CategoryToolsWhat your agent can do
Execution6Run commands, scripts, pipelines, background jobs on any node
Agentic / A2A13Agent tasks, messaging, blackboard, workflows, semaphores, registries
Files6Read, write, list, find, transfer, deploy files across nodes
Monitoring4Mesh health, live metrics, benchmarks, node info
System / DevOps14Processes, disks, packages, services, Docker, kernel, cron, git, logs
Network / VPN7VPN switching, port forwarding, browser, shell, streams, proxy, scraping
Security6Firewall, certs, audit, 2FA/TOTP, cookies, user management
CyberSync9Bi-directional config sync for 6 AI tools + knowledge/memory
Knowledge2Store and search unified knowledge base (pgvector)
OmniMesh3WireGuard mesh manager, expose services, gateway routing
Events1Webhook + WebSocket + SSE event bus
CDP Browser118 browser actions via persistent Docker Chrome
Utilities10+Alerts, aliases, backups, snippets, DNS, diagnostics, scheduling

Setup — 3 Steps

Step 1: Install OmniWire

AGENT: Run this via exec. User just clicks Approve.
npm install -g omniwire@latest

Works on: Linux (x64, ARM64, ARMv7), macOS (Intel + Apple Silicon), Windows (x64).

Step 2: Configure Your Mesh

Create the mesh config. Ask the user for their server details:

AGENT: Ask the user: "What servers do you want to control? For each one I need: - A name (e.g., contabo, kali, rpi) - IP address or hostname - SSH user (usually root) - SSH key filename in ~/.ssh/ (e.g., id_ed25519) - Role: storage, compute, gpu+browser, or leave blank"

Then create the config:

mkdir -p ~/.omniwire
cat > ~/.omniwire/mesh.json << 'EOF'
{
  "nodes": [
    {
      "id": "contabo",
      "host": "10.0.0.1",
      "user": "root",
      "identityFile": "id_ed25519",
      "role": "storage",
      "tags": ["vps", "docker"]
    },
    {
      "id": "kali",
      "host": "10.0.0.2",
      "user": "root",
      "identityFile": "id_ed25519",
      "role": "compute",
      "tags": ["kali", "pentest"]
    }
  ],
  "cyberbase": {
    "host": "10.10.0.1",
    "port": 5432,
    "database": "cyberbase",
    "user": "cyberbase"
  }
}
EOF

Step 3: Verify

echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"test","version":"1"}}}' \
  | omniwire --stdio --no-sync 2>/dev/null | head -1

Should respond with omniwire v3.5.0. Done.

Transport options:

TransportCommandPort
stdio (MCP default)omniwire --stdio
SSE (HTTP streaming)omniwire --sse3200
REST (HTTP JSON)omniwire --rest3201
Events (WebSocket)omniwire --events3202

Usage Examples

Execute commands anywhere

You: restart nginx on contabo

Agent: [omniwire_exec node=contabo command="systemctl restart nginx"]
  OK — nginx restarted (0ms)

You: run uptime on every server

Agent: [omniwire_broadcast command="uptime"]
  contabo  | up 42 days, 3:21
  kali     | up 7 days, 11:04
  rpi      | up 2 days, 0:15

Transfer files between nodes

You: copy the pentest report from kali to contabo

Agent: [omniwire_transfer_file src_node=kali dest_node=contabo src=/root/report.pdf dest=/var/reports/]
  Transferred 2.4MB — LZ4 compressed — 83ms

Transfer modes (auto-selected):

  • SFTP for files under 10MB
  • netcat + LZ4 for 10MB–1GB
  • aria2c for files over 1GB (16 parallel connections)

Docker management

You: what containers are running on contabo?

Agent: [omniwire_docker node=contabo action=ps]
  12 running — neo4j, postgres, omnibus-hub, kali-htb, omniwire-events...

You: pull and start the latest omniwire-events image

Agent: [omniwire_container node=contabo action=pull image=omniwire-events:latest]
  Pulled. Starting...
  ✓ omniwire-events running (healthy)

Monitor mesh health

You: how are all my servers doing?

Agent: [omniwire_mesh_status]

  contabo  | 10.0.0.1 | ONLINE | 78ms  | load=1.2 | mem=31% | disk=16%
  kali     | 10.0.0.2 | ONLINE | 91ms  | load=0.4 | mem=19% | disk=34%
  rpi      | 10.0.0.3 | ONLINE | 112ms | load=0.7 | mem=22% | disk=20%

VPN switching

You: switch to Mullvad on the kali node

Agent: [omniwire_vpn node=kali action=connect provider=mullvad country=nl]
  Connected — Netherlands exit — mesh routes preserved
  New IP: 185.65.134.x

Supported providers: Mullvad, OpenVPN, WireGuard, Tailscale. OmniMesh routes are protected during VPN switches.

Web scraping with Cloudflare bypass

You: scrape the pricing table from example.com

Agent: [omniwire_scrape node=contabo url=https://example.com/pricing selector=".pricing-table"]
  Scraped 4.2KB — Scrapling engine — Cloudflare bypassed
  [returns structured data]

A2A agent messaging

You: send a task to the pentest agent on kali

Agent: [omniwire_agent_task node=kali agent_id=pentest-agent task={type:"scan", target:"192.168.1.0/24"}]
  Task queued — ID: task_abc123

Agent: [omniwire_blackboard action=watch key=task_abc123/result]
  Result ready: {hosts: 12, open_ports: [...]}

COC — Unified CyberBase + Obsidian + Canvas sync

You: COC save — OmniWire v3.5.0 deployed with 88 tools

Agent: [omniwire_coc action=save note="OmniWire v3.5.0 deployed with 88 tools"]
  Saved to CyberBase (knowledge table)
  Mirrored to Obsidian vault: CyberBase/omniwire-v350.md
  Canvas node updated: CyberBase MindMap.canvas
  ✓ All 3 sync targets confirmed

Full Tool Reference

<details> <summary><strong>Execution (6 tools)</strong></summary>

ToolDescription
omniwire_execExecute a command on a specific node. Args: node, command, timeout, background
omniwire_runRun a named script or predefined task. Args: node, script, args
omniwire_batchExecute multiple commands across multiple nodes in one call. Args: commands[]
omniwire_broadcastExecute command on ALL nodes simultaneously. Args: command, tags (filter by tag)
omniwire_pipelineChain commands where output of one feeds into next. Args: node, steps[]
omniwire_bgBackground task manager — dispatch, poll, get result. Args: action, task_id

</details>

<details> <summary><strong>Agentic / A2A Protocol (13 tools)</strong></summary>

ToolDescription
omniwire_storeKey-value store for agents. Actions: get, set, delete, list. Args: key, value, ttl
omniwire_watchWatch a key for changes (long-poll). Args: key, timeout
omniwire_healthcheckCheck agent health status across nodes. Args: agent_id, node
omniwire_agent_taskDispatch a structured task to a named agent. Args: node, agent_id, task
omniwire_a2a_messageSend an A2A protocol message between agents. Args: to, from, message, reply_to
omniwire_semaphoreDistributed semaphore for agent coordination. Actions: acquire, release. Args: name, count
omniwire_eventEmit a named event into the event bus. Args: event, data, targets[]
omniwire_workflowExecute a multi-step workflow definition. Args: workflow_id, input
omniwire_agent_registryRegister/discover agents by capability. Actions: register, lookup, list
omniwire_blackboardShared blackboard for agent state. Actions: read, write, watch, clear
omniwire_task_queueDistributed task queue. Actions: push, pop, peek, size
omniwire_capabilityDeclare/query agent capabilities. Args: agent_id, capabilities[]
omniwire_cocCOC — unified CyberBase + Obsidian + Canvas sync. Actions: save, read, search, update

</details>

<details> <summary><strong>Files (6 tools)</strong></summary>

ToolDescription
omniwire_read_fileRead file from any node. Args: node, path, encoding, lines
omniwire_write_fileWrite file to any node. Args: node, path, content, mode
omniwire_list_filesList directory on any node. Args: node, path, recursive, filter
omniwire_find_filesSearch files across nodes by name/content/pattern. Args: node, query, path
omniwire_transfer_fileCopy files between nodes (auto-selects SFTP/LZ4/aria2c). Args: src_node, dest_node, src, dest
omniwire_deployPush files or directories to multiple nodes simultaneously. Args: src, nodes[], dest

</details>

<details> <summary><strong>Monitoring (4 tools)</strong></summary>

ToolDescription
omniwire_mesh_statusHealth check all nodes — latency, load, memory, disk. Cached 5s.
omniwire_node_infoDetailed info for one node — OS, CPU, uptime, IPs. Args: node
omniwire_live_monitorLive system metrics snapshot. Args: node, interval, metrics[]
omniwire_benchmarkBenchmark node performance — CPU, disk, network. Args: node, type

</details>

<details> <summary><strong>System / DevOps (14 tools)</strong></summary>

ToolDescription
omniwire_process_listList and filter processes. Args: node, filter, sort
omniwire_disk_usageDisk usage — all mounts or specific path. Args: node, path
omniwire_install_packageInstall packages via apt/npm/pip/brew. Args: node, package, manager
omniwire_service_controlsystemd start/stop/restart/status/enable. Args: node, service, action
omniwire_dockerDocker commands (ps, logs, exec, stats, images). Args: node, action, container
omniwire_containerContainer lifecycle — pull, run, stop, rm, inspect. Args: node, action, image
omniwire_kerneldmesg, sysctl, modprobe, strace, perf. Args: node, action, args
omniwire_cronManage cron jobs — list, add, remove. Args: node, action, schedule, command
omniwire_envRead/write environment variables. Args: node, action, key, value
omniwire_networkNetwork info — interfaces, routes, connections, iptables. Args: node, action
omniwire_gitGit operations on remote nodes. Args: node, repo, action, args
omniwire_syslogRead system logs. Args: node, service, lines, since
omniwire_log_aggregateAggregate logs from multiple nodes. Args: nodes[], service, query
omniwire_metricsPush/pull metrics (Prometheus-compatible). Args: node, action, metrics

</details>

<details> <summary><strong>Network / VPN (7 tools)</strong></summary>

ToolDescription
omniwire_vpnVPN management — Mullvad, OpenVPN, WireGuard, Tailscale. Args: node, action, provider, country
omniwire_port_forwardSSH tunnel / port forwarding. Args: node, local_port, remote_host, remote_port
omniwire_open_browserOpen URL on GPU/display node. Args: node, url
omniwire_shellPersistent shell session (state preserved). Args: node, session_id, command
omniwire_streamReal-time streaming output from long-running commands. Args: node, command
omniwire_proxyHTTP/SOCKS proxy management. Args: node, action, port, type
omniwire_scrapeScrapling-powered web scraping with Cloudflare bypass. Args: node, url, selector, format

</details>

<details> <summary><strong>Security (6 tools)</strong></summary>

ToolDescription
omniwire_firewalliptables / ufw / nftables management. Args: node, action, rule
omniwire_certTLS certificate management (Let's Encrypt, self-signed). Args: node, domain, action
omniwire_auditSecurity audit — open ports, SUID files, cron jobs, users. Args: node, checks[]
omniwire_2faTOTP manager — generate, add, delete codes. CyberBase + 1Password persistence. Args: action, service
omniwire_cookiesBrowser cookie export/import (JSON, Header String, Netscape). Args: node, action, browser
omniwire_userUser account management — create, delete, sudo, SSH keys. Args: node, action, username

</details>

<details> <summary><strong>CyberSync (9 tools)</strong></summary>

CyberSync provides bi-directional config sync for 6 AI tools: Claude Code, OpenCode, OpenClaw, Codex, Gemini, PaperClip. All sensitive files encrypted with XChaCha20-Poly1305 at rest.

ToolDescription
omniwire_syncSync a specific file or directory across nodes. Args: path, nodes[], direction
omniwire_sync_rulesManage sync rules (include/exclude patterns). Args: action, rule
omniwire_sync_hooksPre/post sync hooks. Args: action, hook_script
omniwire_sync_memorySync Claude/agent memory to CyberBase. Args: action, node
omniwire_sync_agentsSync agent definitions across nodes. Args: action, nodes[]
cybersync_statusSync status — item counts, heartbeats, last sync time per tool
cybersync_sync_nowForce immediate reconciliation across all nodes
cybersync_diffShow what's out of sync before committing
cybersync_historySync event log — what changed, when, which node

</details>

<details> <summary><strong>Knowledge (2 tools)</strong></summary>

ToolDescription
omniwire_knowledgeStore knowledge entries in CyberBase with vector embedding. Args: action, key, content, tags
omniwire_search_knowledgeSemantic search over knowledge base (pgvector). Args: query, limit, tags

</details>

<details> <summary><strong>OmniMesh (3 tools)</strong></summary>

OmniMesh is OmniWire's built-in WireGuard mesh manager. It provisions, rotates keys, and manages peer routing automatically.

ToolDescription
omniwire_omnimeshMesh lifecycle — init, add-node, remove-node, rotate-keys, status. Args: action, node
omniwire_mesh_exposeExpose a local service to the mesh via WireGuard. Args: node, service, port, mesh_port
omniwire_mesh_gatewayConfigure a node as a mesh gateway (egress/ingress). Args: node, action, routes[]

</details>

<details> <summary><strong>Events (1 tool)</strong></summary>

ToolDescription
omniwire_eventsEvent bus — subscribe, publish, list. Supports Webhook callbacks, WebSocket push (port 3202), and SSE streaming. Args: action, event, handler_url

</details>

<details> <summary><strong>CDP Browser (1 tool)</strong></summary>

omniwire_cdp provides 18 browser actions via a persistent Docker Chrome instance on any node. Sessions persist between calls. Cookies auto-exported in JSON + Header String + Netscape format.

ActionDescription
navigateNavigate to URL
screenshotCapture page screenshot
clickClick element by selector
typeType text into input
scrollScroll page
evaluateExecute JavaScript
get_htmlGet page HTML
get_textGet visible text
wait_forWait for selector/navigation
fill_formFill multiple form fields
selectSelect dropdown option
hoverHover element
uploadUpload file to input
downloadDownload file
cookies_getExport cookies
cookies_setImport cookies
session_savePersist session state
session_loadRestore session state

</details>

<details> <summary><strong>Utilities (10+ tools)</strong></summary>

ToolDescription
omniwire_alertSend alert via Telegram/webhook/email. Args: message, channel, priority
omniwire_aliasManage command aliases for nodes. Args: action, name, command
omniwire_backupBackup files/DBs to remote storage. Args: node, path, dest, compress
omniwire_clipboardRead/write clipboard on GUI node. Args: node, action, content
omniwire_snippetStore and retrieve command snippets. Args: action, name, content
omniwire_tail_logTail last N lines of a log file. Args: node, path, lines
omniwire_traceDistributed trace for debugging command chains. Args: trace_id, action
omniwire_updateCheck for OmniWire updates + self-update. Args: action
omniwire_scheduleSchedule tasks (cron-style). Args: action, schedule, task
omniwire_dnsDNS lookup and management. Args: node, query, type
omniwire_doctorDiagnose OmniWire setup issues. Args: checks[]

</details>


Performance

OperationSpeed
Command execution~80ms per node
File read (< 1MB)~60ms (SFTP)
File transfer (10MB)~150ms (LZ4 netcat)
Mesh status check~100ms (cached 5s)
COC sync (all 3 targets)~200ms (parallel)
Web scrape (no JS)~300ms
Web scrape (Cloudflare)~800ms
CDP browser action~120ms

Encryption: AES-128-GCM for transport, XChaCha20-Poly1305 for at-rest sync items. Compression: LZ4 for transfers.


Architecture & Platform Support

PlatformArchitectureStatus
Linuxx64Supported
Linuxarm64 (RPi 4/5, AWS Graviton)Supported
Linuxarmv7l (RPi 3, older ARM)Supported
macOSIntel (x64)Supported
macOSApple Silicon (arm64)Supported
Windowsx64Supported

No native compilation. Pure JavaScript + SSH2. npm install -g omniwire works everywhere Node.js 18+ runs.

Transports: stdio (MCP standard), SSE port 3200, REST port 3201, Events/WebSocket port 3202.


Security

LayerImplementation
TransportSSH2 with zlib compression
At-rest (sync items)XChaCha20-Poly1305
Transfer compressionLZ4
Secrets backend1Password, file-based, or env vars
NetworkAll traffic over your own infrastructure (WireGuard, Tailscale, direct SSH)
Key managementMaster key in ~/.omniwire/secret.key — generated locally, never transmitted
Mesh authPer-node WireGuard keypairs, auto-rotated by OmniMesh

Agent Instructions

When to use OmniWire tools

Use OmniWire when the user:

  • Mentions servers, VPS, nodes, mesh, or "my machines"
  • Wants commands run remotely or on all servers
  • Needs files read, written, or transferred between nodes
  • Asks about Docker, services, processes, or system health on remote nodes
  • Wants to switch VPN, manage firewall rules, or handle certs
  • Mentions "scrape", "browser", "CDP", or web automation on a remote node
  • Wants to sync configs, save memory, or COC/save something
  • Uses agent-to-agent workflows (A2A, blackboard, task queues)
  • Needs TOTP codes, cookies, or security audit
  • Mentions "COC", "Save to CyberBase", "Obsidian", or canvas sync

How to pick the right tool

IntentTool
Single node commandomniwire_exec
All nodes at onceomniwire_broadcast
Read remote fileomniwire_read_file
Copy between nodesomniwire_transfer_file
Docker anythingomniwire_docker
Container lifecycleomniwire_container
Mesh health checkomniwire_mesh_status
VPN switchomniwire_vpn
Firewall ruleomniwire_firewall
Web scrapeomniwire_scrape
Browser automationomniwire_cdp
Send agent taskomniwire_agent_task
Shared stateomniwire_blackboard
Event busomniwire_event or omniwire_events
COC save/syncomniwire_coc
Semantic searchomniwire_search_knowledge
Background jobomniwire_bg
Sync AI configscybersync_sync_now

Node selection defaults

If the user doesn't specify a node:

  • File storage, databases, Docker → node with role: "storage"
  • Security/pentest tools → node with tag "kali" or "pentest"
  • GPU / display / browser → node with role: "gpu+browser"
  • Heavy compute → node with role: "compute"
  • Background task dispatch → omniwire_bg with any available node
  • If ambiguous, ask: "Which server should I run this on?"

Background mode

All 88 tools support background: true. Use it for:

  • Any operation expected to take > 5 seconds
  • Builds, installs, deploys, large transfers
  • Scraping and CDP sessions
  • Long-running pipelines
omniwire_exec(node="contabo", command="apt upgrade -y", background=true)
→ returns task_id immediately
→ poll with omniwire_bg(action="poll", task_id="...")
→ get result with omniwire_bg(action="result", task_id="...")

Error handling

  • If a node is offline, report it and offer alternatives
  • If exec fails, show stderr and suggest fixes
  • If transfer fails, retry with a different mode (SFTP → LZ4 → aria2c)
  • If VPN connects but mesh breaks, restore mesh routes automatically (built-in)
  • For persistent shell failures, use omniwire_shell with a new session_id

OpenClaw + PaperClip Integration

OmniWire is the primary infrastructure backend for OpenClaw agents and PaperClip workflows.

OpenClaw

OpenClaw agents use OmniWire for all remote operations. The skill is auto-loaded when OpenClaw detects omniwire in the installed MCP servers. Agents can:

  • Execute tasks across the mesh without user intervention
  • Use the A2A protocol to coordinate multi-agent workflows
  • Persist state via the blackboard and knowledge base
  • Dispatch background jobs and collect results asynchronously

PaperClip

PaperClip workflows integrate with OmniWire via CyberSync. Any workflow that produces knowledge, memory, or config changes can route through omniwire_coc for unified persistence across CyberBase, Obsidian vault, and Canvas.

COC workflow from PaperClip:

1. Workflow completes → calls omniwire_coc(action="save", ...)
2. Saved to CyberBase knowledge table with pgvector embedding
3. Mirrored to Obsidian vault as .md file
4. Canvas node created/updated in CyberBase MindMap.canvas
5. All nodes confirmed in one response

Sync coverage — CyberSync 6 AI tools

ToolSynced Config
Claude Code~/.claude/settings.json, CLAUDE.md, memory, agents/
OpenCode~/.opencode/config.json, rules/
OpenClaw~/.openclaw/config.json, skills/, agents/
Codex~/.codex/config.json
Gemini~/.gemini/settings.json
PaperClip~/.paperclip/config.json, workflows/

Links

  • GitHub: https://github.com/VoidChecksum/omniwire
  • NPM: https://www.npmjs.com/package/omniwire
  • Issues: https://github.com/VoidChecksum/omniwire/issues
  • License: GPL-3.0-only

*OmniWire v3.5.0 — 88 tools. Every machine. One agent.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

71.25%
按下载量换算1,007

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills