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

statbstatb 开发

Agent Skill

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

总安装

2,093

周安装

89

GitHub Stars

公开资料未说明

下载量

733
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install statb

简介

statb 将长时间任务的实时进度推送至 statb.io 监控仪表板。

  • 适用于自动化脚本、数据处理流水线等过程的透明化管理。
  • 需注册 statb.io 账户并获取 API key 用于身份认证。
  • 推送频率受限于服务商配额,高并发场景可能出现延迟。
  • 日志内容包含任务状态但不记录敏感参数,可自行选择脱敏级别。

SKILL.md

name
statb-dashboard
description
>-
version
1.0.0
metadata
openclaw
requires
bins
emoji
📊
homepage
https://statb.io

statb.io — Live Dashboard for Agent Runs

Push numeric key-value pairs to a statb.io board with a single curl call. The user opens the board URL in a browser and sees live-updating cards — no signup, no API key, no SDK required.

Quick Reference

curl -s 'https://statb.io/b/{board_id}/push?key1=value1&key2=+1&key3=-0.5'

Board viewer: https://statb.io/board.html?board={board_id}

Board ID Rules

  • Use only lowercase letters and hyphens (a-z, 0-9, -).
  • Make it long and unique to avoid collisions (e.g. acme-deploy-x7k9m, agent-training-4feb).
  • The board is created automatically on first push.

Value Syntax

SyntaxMeaningExample
42Set to this value?cpu=72.5
+NIncrement by N (starts at 0 if key missing)?steps=+1
-NDecrement by N?errors=-1

Only numeric values (int or float). Non-numeric values are silently skipped. Multiple keys in one request are fine.

Workflow

When the user asks you to run a multi-step or long-running task:

  1. Generate a board ID. Combine a short project/task label with a random

suffix: e.g. migrate-db-k8r2q or scrape-run-20260414. Tell the user: > You can monitor progress live at: > https://statb.io/board.html?board={board_id}

  1. Push an initial snapshot before starting work:
   curl -s 'https://statb.io/b/{board_id}/push?status=1&total_steps=10&completed=0&errors=0'

Use status=1 for running, status=0 for finished.

  1. Push updates during work. After each meaningful step or batch:
   curl -s 'https://statb.io/b/{board_id}/push?completed=+1'

Push changed values only — no need to resend unchanged keys.

  1. Push final state when done:
   curl -s 'https://statb.io/b/{board_id}/push?status=0&completed=10&duration_sec=47'

What to Push

Choose keys that let the user understand progress at a glance:

  • Progress counters: completed, total, remaining, percent
  • Rates / speed: items_per_sec, tokens_per_sec
  • Quality signals: errors, warnings, success_rate
  • Resource usage: cpu, mem_mb, gpu_temp
  • Timing: elapsed_sec, eta_sec, duration_sec
  • Domain-specific: loss, accuracy, rows_processed, files_converted

Keep key names short, lowercase, underscore-separated.

⚠ Common Pitfall — Push Must Be Continuous

The #1 mistake is pushing once at the start and never again. The board then shows stale numbers for the entire run, which defeats the purpose.

Push calls must be placed inside the actual work — not just before it:

  • Loops: Put the push call inside the for / while body, not above it.
  • Batch callbacks: Push after each batch completes, not only before the

first batch.

  • Long scripts: If you generate a script or code for the user, embed a

push call after each major stage, not just at the top.

  • Timer / interval: For continuous processes with no natural loop

boundary, register a recurring timer (e.g. every 15–30 seconds) that pushes the latest metrics.

Self-check before executing: Look at your plan. If there is only one curl …/push call at the beginning, you are doing it wrong. There must be at least one push inside the loop or between stages, plus a final push at the end.

Bad:

curl -s 'https://statb.io/b/board/push?total=100&done=0'   # ← only push
for f in *.csv; do process "$f"; done                       # board stays at 0

Good:

curl -s 'https://statb.io/b/board/push?total=100&done=0'
for f in *.csv; do
  process "$f"
  curl -s 'https://statb.io/b/board/push?done=+1'          # ← push inside loop
done
curl -s 'https://statb.io/b/board/push?status=0'           # ← final push

Rules

  • Always tell the user the board URL at the start so they can open it.
  • Push at meaningful intervals, not every line of code. Once per logical

step, batch, or every 10–30 seconds for continuous work.

  • Use increment (+N) for counters so concurrent pushes don't clobber.
  • Use set (plain number) for gauges like percentages, temperatures, rates.
  • Do not push sensitive data. Board IDs are unguessable but boards are

not access-controlled. Never push passwords, tokens, PII, or secrets.

  • Silent push. Use curl -s to suppress output. Push failures are

non-fatal — do not let a failed push stop the actual work.

  • Free tier limits: max 16 keys per board. Keep it focused.

Examples

Multi-file processing

# Start
curl -s 'https://statb.io/b/convert-imgs-a9x2/push?total=200&done=0&errors=0&status=1'

# After each file
curl -s 'https://statb.io/b/convert-imgs-a9x2/push?done=+1'

# On error
curl -s 'https://statb.io/b/convert-imgs-a9x2/push?errors=+1'

# Finish
curl -s 'https://statb.io/b/convert-imgs-a9x2/push?status=0'

Code migration with metrics

curl -s 'https://statb.io/b/migrate-v3-kq82/push?files_total=48&files_done=+1&tests_pass=142&tests_fail=3'

Training loop

curl -s "https://statb.io/b/train-bert-e4p1/push?epoch=+1&loss=${LOSS}&acc=${ACC}&lr=${LR}"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.8%
按下载量换算607

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills