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

openclaw-reporterOpenClaw reporter 开发

Agent Skill

openclaw-reporter 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,930

周安装

460

GitHub Stars

公开资料未说明

下载量

3,827
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openclaw-reporter

简介

加入 OpenClaw 全球爪热图观察员计划,提供开发相关能力扩展。

  • 首次使用需获得用户明确授权,用于收集平台与设备基础信息进行统计分析。
  • 通过定期发送心跳数据帮助了解 OpenClaw 生态分布与使用趋势。
  • 安装后可在设置中管理授权范围,可随时关闭或卸载此技能。
  • 仅整理匿名化平台型号数据,不涉及个人身份或敏感内容信息。

SKILL.md

name
openclaw-reporter
description
|
Credentials
the server returns an apiKey on registration, which is stored locally
requirements
network
true
writeFiles
binaries
env
required
false
description
Current Claude model identifier. Used to report which model is active. Falls back to 'unknown' if not set.

OpenClaw Reporter

This skill lets you participate in the OpenClaw global claw activity heatmap. It reports minimal, non-code activity data to visualize worldwide AI agent usage. Note: as with any HTTPS request, the server can observe your IP address.

Prerequisites

This skill requires the claw-market CLI tool. Install it globally:

npm install -g @ricardweii/claw-market

How It Works

  • Heartbeat: Sent once per session, but only if ~/.openclaw/config.json already exists (meaning the user previously consented and registered). There are no automatic hooks — the agent checks for prior consent before sending. No PostToolUse or Stop hooks are used.
  • Task report: Sent only when the user explicitly mentions completing a task or asks for a report. The agent calls the task API directly — no automated scripts.
  • Registration: One-time setup requiring explicit user consent (see below).

Session Start (Consent-Gated)

When this skill is loaded, follow these steps in order:

  1. Check if ~/.openclaw/config.json exists:
   test -f ~/.openclaw/config.json && echo "REGISTERED" || echo "NOT_REGISTERED"
  1. If REGISTERED (user previously consented): send a heartbeat:
   claw-market heartbeat 2>/dev/null || true
  1. If NOT_REGISTERED: do nothing automatically. Only proceed with the First-Time Setup below if the user initiates registration or the agent needs to ask.

Data Disclosure

This skill sends the following data to https://kymr.top/ (the OpenClaw Market production server; server-side source code is in this repository under app/api/v1/):

Data FieldExamplePurpose
Claw NameCoolClaw42 (user-chosen)Your display name on the heatmap
Platformdarwin, linuxOS type for heatmap stats
Modelclaude-sonnet-4-6Model usage stats
Task summary"Completed a task"Generic activity indicator

Stored locally: Registration returns an apiKey from the server, saved in ~/.openclaw/config.json with chmod 600 (owner-only access). The endpoint URL (https://kymr.top/) is hardcoded — not read from the config file — so a modified config cannot redirect telemetry.

Visible to the server: Your IP address is visible on every HTTPS request (inherent to any network call). The server uses IP for approximate geolocation on the heatmap — no more precise than city-level.

Never sent: system usernames, file paths, code snippets, project names, tool names, tool arguments, tool results, or secrets.

Configuration

Config is stored at ~/.openclaw/config.json (permissions 600). Managed by the claw-market CLI tool.

First-Time Setup (Requires User Consent)

If ~/.openclaw/config.json does not exist, follow these steps:

Step 1: Check CLI availability

First, verify claw-market is installed:

which claw-market || echo "NOT_INSTALLED"

If not installed, inform the user: "The openclaw-reporter skill requires the claw-market CLI. Install with: npm install -g @ricardweii/claw-market"

Step 2: Ask for consent

Use the AskUserQuestion tool:

  • Question: "OpenClaw Reporter wants to register a claw name and send a heartbeat (platform + model only) to https://kymr.top/ when the skill loads. Task reports are only sent when you explicitly mention completing a task. The server will issue an API key stored locally at ~/.openclaw/config.json. No file paths, code, tool names, or project data is sent. Allow?"
  • Options: "Yes, register" / "No, skip"

If the user selects "No, skip": do NOT register and do NOT ask again in this session. Stop here.

Step 3: Ask for a claw name

If the user consented, use AskUserQuestion again:

  • Question: "Pick a name for your claw on the heatmap! (1-30 chars, letters/numbers/hyphens/underscores only, e.g. CoolClaw, NightCrawler, CodeClaw)"
  • Let the user type a custom name via the "Other" option (no preset options needed, but provide a few fun suggestions as options)
  • Options: "CoolClaw" / "CodeClaw" / "NightCrawler"

Use whatever the user provides as the claw name.

Step 4: Register using CLI

After receiving the name, validate and register:

# Validate claw name: only allow alphanumeric, hyphens, underscores (1-30 chars).
CLAW_NAME="USER_CHOSEN_NAME_HERE"

if ! echo "$CLAW_NAME" | grep -qE '^[A-Za-z0-9_-]{1,30}$'; then
  echo "Error: Claw name must be 1-30 characters, alphanumeric/hyphens/underscores only."
  exit 1
fi

# Register using CLI
claw-market register "$CLAW_NAME"

Task Reporting (Manual Only)

Task reports are never sent automatically. Only send a task report when the user explicitly mentions completing a task, finishing work, or asks to report activity.

When triggered, run:

# Estimate task duration (ask user or use a default)
DURATION_MS=60000  # Default 1 minute, adjust based on actual task time

claw-market task "Completed a task" --duration "$DURATION_MS" || echo "Task report failed (non-blocking)."

Opt-Out / Unregister

To stop all OpenClaw reporting:

claw-market config clear

After deletion, no heartbeats or task reports will be sent. The skill will ask for consent again if re-enabled.

Behavior Rules

  1. User consent is REQUIRED before first registration — never register silently
  2. If the user declines registration, respect the decision and do not ask again in the same session
  3. Heartbeat is consent-gated — only sent if ~/.openclaw/config.json exists (proof of prior consent). There are NO automatic hooks; the agent checks for prior consent before any network call
  4. Task reports are manual only — only send when the user explicitly mentions completing a task or asks to report
  5. If any OpenClaw request fails, continue normally — never interrupt the user's workflow
  6. Never include identifying information in task summaries
  7. No system-level modifications: never write to ~/.claude/settings.json or any file outside ~/.openclaw/

CLI Reference

The claw-market CLI provides these commands:

CommandDescription
claw-market register <name>Register a new claw
claw-market heartbeatSend a heartbeat
claw-market task <summary> -d <ms>Report a completed task
claw-market token <input> <output>Report token usage
claw-market statsShow your token usage statistics
claw-market config showShow current configuration
claw-market config pathShow config file path
claw-market config clearDelete configuration (unregister)

Global options: --lang <en\|zh>, --json, --endpoint <url>

Token Usage Reporting

Agents can report their token usage to contribute to the global leaderboard.

When to Report

Report token usage when:

  1. The user explicitly asks to report tokens
  2. At the end of a significant session (optional, if user has consented)

How to Get Token Usage

As an AI agent, you can track token usage from the API responses. The usage data includes:

  • input_tokens: Tokens in your prompts and context (including previous turns)
  • output_tokens: Tokens in your responses

You can estimate or track cumulative token usage throughout a session.

CLI Commands

# Report today's token usage
claw-market token <inputTokens> <outputTokens>

# Report for a specific date
claw-market token <inputTokens> <outputTokens> --date YYYY-MM-DD

# View your token statistics
claw-market stats

Example

If you've used 50,000 input tokens and 12,000 output tokens today:

claw-market token 50000 12000

Session-End Reporting (Optional)

At the end of a session, you may offer to report token usage:

  1. Ask the user: "Would you like me to report today's token usage to the OpenClaw leaderboard?"
  2. If yes, report using the token command with your estimated usage
  3. If no, continue normally

Note: Token reporting is always optional and requires user consent. Never report tokens without asking.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.23%
按下载量换算2,726

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills