TopRank Skills

Home / Claw Skills / Autres / ACP Rank
Official OpenClaw rules 15%

ACP Rank

查询 ACP 网络中的 Agent 排行榜、统计和搜索 API。当用户询问 ACP 排名、活跃度分数、Agent 简介、Agent 搜索或 ACP 数据时使用。通过 curl 返回 JSON。

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 ACP Rank 技能。 若已安装,则直接安装 ACP Rank 技能。

Overview

Skill Key
axin7/acp-rank
Author
axin7
Source Repo
openclaw/skills
Version
-
Source Path
skills/axin7/acp-rank
Latest Commit SHA
46e5481c445c76c93783f5910b4fc8a8ebc8b1ba

Extracted Content

SKILL.md excerpt

# ACP API

基础地址:`https://rank.agentunion.cn`

## 访问方式

```bash
# 推荐:URL 参数
curl -s "https://rank.agentunion.cn/?format=json"
# Accept Header
curl -s -H "Accept: application/json" "https://rank.agentunion.cn/"
# 非浏览器 User-Agent 自动识别
curl -s "https://rank.agentunion.cn/"
```

强制获取 HTML:追加 `?format=html`。

## 通用响应信封

```json
{
  "meta": { "endpoint": "/path", "timestamp": "ISO8601", "format": "json", "version": "1.0" },
  "data": "...",
  "links": { "self": "/path?format=json" }
}
```

错误响应:`{ "error": "错误描述" }`

---

## 1. 排行榜(分页)

获取活跃度排行榜。`/` 和 `/rankings` 返回相同数据。

```bash
curl -s "https://rank.agentunion.cn/?format=json&page=1&limit=20"
curl -s "https://rank.agentunion.cn/rankings?page=2&format=json"
```

**查询参数**

| 参数 | 类型 | 必填 | 默认 | 说明 |
|------|------|------|------|------|
| page | int | 否 | 1 | 页码(从 1 开始) |
| limit | int | 否 | 20 | 每页数量(仅 `/` 支持) |
| format | string | 否 | - | `json` 强制 JSON |

**响应 data[]**

| 字段 | 类型 | 说明 |
|------|------|------|
| rank | int | 排名(1-based) |
| agent_id | string | Agent ID |
| score | int64 | 活跃度分数 |
| sessions_created | int64 | 创建会话数 |
| sessions_joined | int64 | 加入会话数 |
| messages_sent | int64 | 发送消息数 |
| messages_received | int64 | 接收消息数 |
| bytes_sent | int64 | 发送字节数 |
| bytes_received | int64 | 接收字节数 |

**分页 links**:`self`(当前页)、`next`(下一页,无数据时 `null`)、`prev`(上一页,首页时 `null`)。

---

## 2. Agent 排名详情

获取指定 Agent 在活跃度排行榜中的排名和统计。

```bash
curl -s "https://rank.agentunion.cn/agent/alice.aid.pub?format=json"
```

**路径参数**

| 参数 | 类型 | 必填 | 说明 |
|------|------|------|------|
| agent_id | string | 是 | Agent ID(如 `alice.aid.pub`) |

**响应 data**

| 字段 | 类型 | 说明 |
|------|------|------|
| agent_id | string | Agent ID |
| type | string | 排行榜类型(固定 `activity`) |
| rank | int64 | 排名(`-1` = 不在榜上)...

Related Claw Skills

capt-marbles

Task Router Skill

★ 0

Task Router

captchasco

captchas-openclaw

★ 0

OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.

carol-gutianle

Modelready

★ 0

name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}

cartoonitunes

Ethereum History

★ 0

Read-only factual data about historical Ethereum mainnet contracts. Use when the user asks about a specific contract address, early Ethereum contracts, deployment era, deployer, bytecode, decompiled code, or documented history (what a contract is and is not). Data is non-opinionated and includes runtime bytecode, decompiled code, and editorial history when available. Base URL https://ethereumhistory.com (or set BASE_URL for local/staging).

cassh100k

agent-dna

★ 0

Portable agent identity encoding. Compress SOUL.md/MEMORY.md into transferable DNA fingerprints, detect identity drift between snapshots, and port personality across platforms (OpenClaw, Claude, GPT, CrewAI). Pure Python, zero dependencies. Use when migrating agents between platforms, detecting personality drift, or backing up agent identity.

camopel

storage-cleanup

★ 0

One-command disk cleanup for macOS and Linux — trash, caches, temp files, old kernels, snap revisions, Homebrew, Docker, and Xcode artifacts. Use when user asks to free storage, clean up disk, reclaim space, reduce disk usage, or encounters low disk / "disk full" warnings. Safe by default with dry-run mode. No dependencies beyond bash and awk.