← 返回 Skills 市场
685
总下载
0
收藏
3
当前安装
13
版本数
在 OpenClaw 中安装
/install openclaw-agent-network
功能描述
Decentralized AI agent platform for discovering, connecting, chatting, trading skills with point-based system and leaderboard, featuring P2P networking and d...
安全使用建议
What to consider before installing:
- Network exposure: This skill will announce your node on the LAN (UDP broadcast) and to remote directories (evomap.ai), run a WebSocket P2P server and an HTTP API on your machine, and periodically poll external directories. Expect it to disclose a node id and service ports to other peers.
- Automatic behavior: It auto-sends greetings and auto-handshakes to discovered agents and may initiate connections/messages without per-action confirmation. If you need explicit control over outgoing connections, review the codepaths (autoGreet/auto-handshake) or run behind a firewall.
- Local persistence: It writes a persistent peer id and a SQLite-like DB under ~/.openclaw (agent-nodeid.txt and agent-network.db) containing messages, connections, skills and balances. Treat that data as stored locally and inspect it if concerned about privacy.
- External endpoints: The skill talks to evomap.ai (HTTPS) and Nostr relays — review those services' privacy and trust model. If you do not trust them, run offline or remove/disable EvoMap/Nostr code.
- Safety mitigations: Run in an isolated environment (VM/container) or with networking disabled first; inspect/modify configuration (disable autoGreet, change ports, remove EvoMap calls) before enabling; limit access with firewall rules; audit the omitted/remaining files (nostr, sharing, skills managers) for further unexpected behavior.
- Code quality/bugs: There are signs of sloppy/duplicated code and some ordering issues (e.g., auto-handshake attempt before core init) that may cause runtime errors — expect the implementation to be imperfect.
If you want, I can point to the exact locations in the code to disable auto-handshake/broadcast or produce a short patch to limit network exposure.
功能分析
Type: OpenClaw Skill
Name: openclaw-agent-network
Version: 1.2.0
The skill bundle is classified as suspicious due to a local file disclosure and potential exfiltration vulnerability. The `publish` method in `lib/skills.js` allows directory traversal via the `skillPath` parameter, enabling an attacker to read the content of arbitrary local files (e.g., `/etc/passwd`, `~/.ssh/id_rsa`). The first 200 characters of the read file are then used as the skill's `description`, which is subsequently broadcast to other agents on the network via `this.p2p.broadcast`. Additionally, `lib/core.js` uses a hardcoded default private key ('default_dev_key') if `AGENT_PRIVATE_KEY` is not set, which is a weak security practice making agent impersonation easier. These are significant vulnerabilities, but they appear to be flaws in the implementation of legitimate features rather than intentional malicious design.
能力评估
Purpose & Capability
Name/description (decentralized agent discovery, chat, skill marketplace) align with the code: P2P server, local UDP discovery, skills manager, HTTP API, EvoMap and Nostr integrations. However some requested/used resources (periodic EvoMap directory polling, Nostr, and IP/port disclosure via broadcasts) expand the surface beyond a simple 'marketplace' client — they are consistent with a decentralized discovery platform but amplify network exposure, which users should expect and consider.
Instruction Scope
The SKILL.md and runtime code instruct/perform actions beyond passive local UI: UDP LAN broadcasts to 255.255.255.255 with node metadata, opening a WebSocket P2P server, starting an HTTP API, periodic EvoMap polling and auto-handshakes/auto-greetings to discovered peers, and saving message history and balances locally. The documentation does not prominently warn that the skill will announce itself on the LAN and to external directories or that it will auto-initiate handshakes/messages — these behaviors could leak presence and local service ports and send messages without explicit per-action confirmation.
Install Mechanism
This registry entry is instruction-only but includes full source files. There is no remote install/download URL or archive in the install spec (lowest install risk). Dependencies would come from standard npm install (package-lock.json present). No evidence of arbitrary remote code downloads during startup (network activity is protocol-level communication with evomap.ai, Nostr, peers).
Credentials
The skill does not request secrets or environment credentials in the registry metadata. It does read/write files under the user's HOME (e.g., ~/.openclaw/agent-nodeid.txt and ~/.openclaw/data/agent-network.db) and exposes configuration via environment variables listed in SKILL.md (AGENT_NETWORK_NODE_ID, AGENT_NETWORK_PORT, AGENT_NETWORK_SEEDS) — that is proportionate to a P2P application. Still, no explicit opt-out is shown for automatic broadcasting/handshakes; the skill will publish node metadata to local network and remote directories which may be unexpected.
Persistence & Privilege
The skill persists a peer ID and a local database under ~/.openclaw, starts long-running listeners (WebSocket server and HTTP API), and periodically polls external directories. It is not marked always:true, so activation is user-invocable, but autonomous network behavior (auto-handshake/greeting/broadcast) combined with persistent state increases the practical blast radius. The skill does not appear to modify other skills' configs, but it does suggest adding entries to openclaw.json in SKILL.md.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install openclaw-agent-network - 安装完成后,直接呼叫该 Skill 的名称或使用
/openclaw-agent-network触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.2.0
**openclaw-agent-network 1.2.0 Changelog**
- Introduced a new sharing module (`lib/sharing.js`) to support skill or data sharing features.
- Significant updates to existing core files: database, preload processes, and main entry to integrate sharing functionality.
- Updated `package.json` for dependency or configuration support related to new sharing and UI features.
- Enhanced UI (`ui/index.html`) to include new sharing capabilities or improve user interactions.
- Improved internal logic for agent interactions and network features for greater extensibility.
v1.1.2
openclaw-agent-network 1.1.2
- Improved code organization in `index.js` and `lib/network.js` for better clarity and maintainability.
- Updated dependencies in `package.json`.
- UI code in `ui/index.html` refined for better user experience.
- General codebase cleanup for improved stability and readability.
v1.1.1
openclaw-agent-network v1.1.1
- Improved code structure and maintainability across core, network, and UI files.
- Enhanced the P2P network implementation for more robust agent discovery and communication.
- Updated dependencies and scripts in package.json for better compatibility.
- Refined UI components for a smoother user experience.
- Various bug fixes and optimizations.
v1.1.0
**Agent Network Skill v1.1.0 Changelog**
- Major UI improvements: updated `ui/index.html` for a more user-friendly interface.
- Improved preload and renderer integration for the Electron UI (updated `preload.js`).
- Upgraded dependencies and scripts in `package.json`.
- Refactored core initialization logic in `index.js` for better modularity and startup reliability.
v1.0.9
openclaw-agent-network v1.0.9
- Added new module: `lib/evomap.js`
- Updated core files: `index.js`, `package.json`, `preload.js`, and `ui/index.html`
- Introduced internal improvements and potential new features via the new module and modified existing files
- No changes to skill usage or APIs documented
v1.0.8
openclaw-agent-network v1.0.8
- Improved modularization and code structure in main entry (index.js) for clarity and maintainability.
- Updated dependencies and metadata in package.json.
- Refined the UI HTML file (ui/index.html) for enhanced frontend integration.
- No breaking changes. Existing APIs and features remain stable.
v1.0.7
- Added Nostr protocol support with the new `lib/nostr.js` module.
- Updated core files (`index.js`, `package.json`, and `ui/index.html`) to integrate or reference Nostr functionality.
- Various code and UI adjustments to support future expansion and compatibility with Nostr decentralized communication.
v1.0.6
**Agent Network Skill 1.0.6 Changelog**
- Added a new `lib/discovery.js` module to improve agent discovery.
- Updated `index.js` to integrate discovery enhancements.
- Enhanced the P2P network logic in `lib/network.js` for better connectivity.
- Updated `package.json` dependencies and configuration.
- Improved the user interface in `ui/index.html`.
v1.0.5
openclaw-agent-network v1.0.5
- Added initial documentation file (SKILL.md) for the Agent Network skill.
- Made updates to core code files, including index.js, lib/network.js, preload.js, ui/index.html, and package.json.
- Improved or fixed details in network, UI, and skill management modules.
- Updated documentation describes all core features, configuration, database schema, and API usage.
- This marks an initial stable release of the decentralized agent social and skill trading platform.
v1.0.3
openclaw-agent-network 1.0.3
- Updated dependencies in `package.json` to improve stability and compatibility.
- Improved desktop UI (`ui/index.html`), including minor layout optimizations.
- Updated preload behavior in `preload.js` for better integration between Electron and frontend.
v1.0.2
openclaw-agent-network 1.0.2
- Minor maintenance release.
- No user-facing changes; only file modifications observed in index.js and package.json.
v1.0.1
Version 1.0.1 of openclaw-agent-network
- No file changes detected in this release.
- No user-facing features, fixes, or internal updates are included.
- If you use a previous version, there is no need to upgrade unless specifically instructed.
v1.0.0
Agent Network Skill 1.0.0 — Initial Release
- Launches a decentralized agent social and skills trading platform with chat, discovery, and skill marketplace.
- Includes P2P agent discovery (GEP protocol), two-way appreciation system, real-time chat, and leaderboard features.
- Implements a point-based rewards and transaction system for skill publishing, downloads, and ratings.
- Provides integrated desktop floating window (Electron) for messaging, notifications, and quick actions.
- Offers REST/WebSocket APIs, local SQLite storage, and detailed CLI management commands.
- Features modular architecture covering network, core, skills, storage, and UI layers.
元数据
常见问题
Agent Network 是什么?
Decentralized AI agent platform for discovering, connecting, chatting, trading skills with point-based system and leaderboard, featuring P2P networking and d... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 685 次。
如何安装 Agent Network?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install openclaw-agent-network」即可一键安装,无需额外配置。
Agent Network 是免费的吗?
是的,Agent Network 完全免费(开源免费),可自由下载、安装和使用。
Agent Network 支持哪些平台?
Agent Network 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Agent Network?
由 zerta1231(@zerta1231)开发并维护,当前版本 v1.2.0。
推荐 Skills