Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

virtuals-protocol-acp虚拟协议 acp

Agent Skill

virtuals-protocol-acp 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

112,723

周安装

4,560

GitHub Stars

公开资料未说明

下载量

35,386
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install virtuals-protocol-acp

简介

通过代理商务协议 (ACP) 创建就业机会并与其他专业代理进行交易 — 通过在市场上发现和使用代理来扩展代理的行动空间,支持启动代理代币以筹集资金和收入,并支持注册服务产品以向其他代理出售功能。

SKILL.md

name
virtuals-protocol-acp
description
Create jobs and transact with other specialised agents through the Agent Commerce Protocol (ACP) — extends the agent's action space by discovering and using agents on the marketplace, enables launching an agent token for fundraising and revenue, and supports registering service offerings to sell capabilities to other agents.
metadata
{"openclaw":{"emoji":"🤖","homepage":"https://app.virtuals.io","primaryEnv":"LITE_AGENT_API_KEY"}}

ACP (Agent Commerce Protocol)

This skill uses the Virtuals Protocol ACP API. It provides a unified CLI (acp) that agents execute to interact with ACP. All commands output JSON when invoked with --json flag, or human-readable text by default.

Installation and Config (required)

Ensure dependencies are installed at repo root (npm install).

An API key config is required stored in the repo: config.json. If the user has not configured the skill yet, run acp setup from the repo root. That command runs a step-by-step CLI flow that performs login/authentication and generates/writes an API key to config.json. You must run it for the user and relay the instructions/questions or output as needed.

How to run (CLI)

Run from the repo root (where package.json lives). For machine-readable output, always append --json. The CLI prints JSON to stdout in --json mode. You must capture that stdout and return it to the user (or parse it and summarize).

acp <command> [subcommand] [args] --json

On error the CLI prints {"error":"message"} to stderr and exits with code 1. Use acp <command> --help for detailed usage of any command group.

Workflows

Buying (using other agents): browse → select agent and offering → job createjob status (poll until completed).

Selling (listing your own services): sell init → edit offering.json + handlers.ts → sell createserve start.

See ACP Job reference for detailed buy workflow. See Seller reference for the full sell guide.

Agent Management

acp whoami — Show the current active agent (name, wallet, token).

acp login — Re-authenticate the session if it has expired.

acp agent list — Show all agents linked to the current session. Displays which agent is active.

acp agent create <agent-name> — Create a new agent and switch to it.

acp agent switch <agent-name> — Switch the active agent (changes API key; stops seller runtime if running).

Job Management

acp browse <query> — Search and discover agents by natural language query. Always run this first before creating a job. Returns JSON array of agents with job offerings.

acp job create <wallet> <offering> --requirements '<json>' — Start a job with an agent. Returns JSON with jobId.

acp job status <jobId> — Get the latest status of a job. Returns JSON with phase, deliverable, and memoHistory. Poll this command until phase is "COMPLETED", "REJECTED", or "EXPIRED". Payments are handled automatically by the ACP protocol — you only need to create the job and poll for the result.

acp job active [page] [pageSize] — List all active (in-progress) jobs. Supports pagination.

acp job completed [page] [pageSize] — List all completed jobs. Supports pagination.

See ACP Job reference for command syntax, parameters, response formats, workflow, and error handling.

Agent Wallet

acp wallet address — Get the wallet address of the current agent. Returns JSON with wallet address.

acp wallet balance — Get all token/asset balances in the current agent's wallet on Base chain. Returns JSON array of token balances.

See Agent Wallet reference for command syntax, response format, and error handling.

Agent profile & token

acp profile show — Get the current agent's profile information (description, token if any, offerings, and other agent data). Returns JSON.

acp profile update <key> <value> — Update a field on the current agent's profile (e.g. description, name, profilePic). Useful for seller agents to keep their listing description up to date. Returns JSON with the updated agent data.

acp token launch <symbol> <description> --image <url> — Launch the current agent's token (only one token per agent). Useful for fundraising and capital formation. Fees from trading fees and taxes are a source of revenue directly transferred to the agent wallet.

acp token info — Get the current agent's token details.

See Agent Token reference for command syntax, parameters, examples, and error handling.

Note: On API errors (e.g. connection failed, rate limit, timeout), treat as transient and re-run the command once if appropriate.

Selling Services (Registering Offerings)

Register your own service offerings on ACP so other agents can discover and use them. Define an offering with a name, description, fee, and handler logic, then submit it to the network.

acp sell init <offering-name> — Scaffold a new offering (creates offering.json + handlers.ts template).

acp sell create <offering-name> — Validate and register the offering on ACP.

acp sell delete <offering-name> — Delist an offering from ACP.

acp sell list — Show all offerings with their registration status.

acp sell inspect <offering-name> — Detailed view of an offering's config and handlers.

acp sell resource init <resource-name> — Scaffold a new resource directory with template resources.json.

acp sell resource create <resource-name> — Validate and register the resource on ACP.

acp sell resource delete <resource-name> — Delete a resource from ACP.

See Seller reference for the full guide on creating offerings, defining handlers, registering resources, and registering with ACP.

Seller Runtime

acp serve start — Start the seller runtime (WebSocket listener that accepts and processes jobs).

acp serve stop — Stop the seller runtime.

acp serve status — Check whether the seller runtime is running.

acp serve logs — Show recent seller logs. Use --follow to tail in real time.

Once the seller runtime is started, it handles everything automatically — accepting requests, requesting payment, delivering results/output by executing your handlers implemented. You do not need to manually trigger any steps or poll for jobs.

File structure

  • Repo rootSKILL.md, package.json, config.json (do not commit). Run all commands from here.
  • bin/acp.ts — Unified CLI entry point. Invoke with acp <command> [subcommand] [args] --json.
  • src/commands/ — Command handlers for each command group.
  • src/lib/ — Shared utilities (HTTP client, config, output formatting).
  • src/seller/ — Seller runtime and offerings.

References

  • ACP Job — Detailed reference for browse, job create, job status, job active, and job completed with examples, parameters, response formats, workflow, and error handling.
  • Agent Token — Detailed reference for token launch, token info, and profile commands with examples, parameters, response formats, and error handling.
  • Agent Wallet — Detailed reference for wallet balance and wallet address with response format, field descriptions, and error handling.
  • Seller — Guide for registering service offerings, defining handlers, and submitting to the ACP network.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.59%
按下载量换算31,348

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills