Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

pulse-board脉冲板

Agent Skill

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

总安装

12,657

周安装

512

GitHub Stars

公开资料未说明

下载量

3,973
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install pulse-board

简介

pulse-board 汇总座席技能堆栈的操作日志与执行摘要。

  • 每日两次自动生成 digest 报告供管理员查阅。
  • 记录各技能运行状态、耗时与异常信息。安装时按仓库提供的命令执行,建议先在测试环境验证依赖、命令权限和文件改动范围。
  • 数据存储周期与访问权限由宿主系统统一管理。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
pulse-board
description
Universal operational digest for agent skill stacks. Every scheduled skill logs its outcome with log-append.sh. Twice daily, digest-agent.sh reads the log, composes a human-readable summary via your configured OpenClaw agent, delivers it to Telegram/Discord/log, and clears. Falls back to mechanical format if the agent call fails. install.sh handles everything interactively in one run. plug.sh wires any skill's cron job in one command.

Pulse Board 📋

Operational heartbeat for your agent stack. Every cron job, one digest.


How it works

skill cron runs
  → log-append.sh appends one line to pending.log
  → digest-agent.sh (twice daily)
      reads pending.log
      writes full raw log to last-digest.md
      calls openclaw agent to compose human-readable summary
        (falls back to mechanical format if agent call fails)
      delivers to Telegram / Discord / log
      clears pending.log
      prunes old detail logs

What this skill touches

Filesystem

PathAction
~/.pulse-board/Created by install.sh — config, logs, registry, locks
~/.pulse-board/config/pulse.yamlWritten once by install.sh, never overwritten on re-run
~/.pulse-board/logs/pending.logAppended by skill cron wrappers, cleared after each digest
~/.pulse-board/logs/last-digest.mdRaw pending.log snapshot — written by digest-agent.sh, never overwritten
~/.pulse-board/logs/last-delivered.mdThe composed/LLM message actually sent to the channel — written by deliver.sh
~/.pulse-board/registry/<skill>.confWritten by plug.sh, removed by unplug.sh

Crontab

ScriptAction
install.shAdds two digest cron entries (pulse-board-morning, pulse-board-evening)
plug.shAdds one wrapped cron entry per skill (# pulse-board:<skill>)
unplug.shRemoves the matching cron entry for a skill

All crontab writes are done via python3 subprocess. Existing entries are never modified.

Secrets env file

install.sh will ask for explicit confirmation before appending anything. It may add LLM_API_KEY=ollama and OPENCLAW_WORKSPACE=<path> if missing.

Network

  • Telegram: POST https://api.telegram.org/bot<token>/sendMessage
  • Discord: POST <your webhook URL>
  • OpenClaw agent: openclaw agent --agent <id> --message <prompt> --json (local gateway call)

⚠️ The raw log is included in the prompt. If your agent uses a remote/cloud LLM, log content will be transmitted off-host. Use a local-only agent if log privacy is required.

  • Log only: no network calls

Credentials

  • Bot token / webhook URL read from pulse.yaml or env vars
  • Secrets env sourced at runtime by digest-agent.sh, deliver.sh, and cron wrappers
  • Credentials never written to logs or included in digest output

Install

chmod +x ~/.openclaw/skills/pulse-board/*.sh
bash ~/.openclaw/skills/pulse-board/install.sh

Plug in a skill

bash ~/.openclaw/skills/pulse-board/plug.sh \
  --skill my-skill \
  --cron "*/15 * * * *" \
  --cmd "bash ~/.openclaw/skills/my-skill/run.sh"

Optional flags: --label, --ok, --error, --log

Or run plug.sh with no arguments for interactive discovery mode.


Remove a skill

bash ~/.openclaw/skills/pulse-board/unplug.sh --skill my-skill

Test

bash ~/.openclaw/skills/pulse-board/log-append.sh \
  --skill test --status OK --message "Hello Pulse Board"

bash ~/.openclaw/skills/pulse-board/digest-agent.sh

Log files

FileContains
~/.pulse-board/logs/last-digest.mdFull raw log from pending.log — preserved every run
~/.pulse-board/logs/last-delivered.mdThe composed message that was sent to the channel

The raw log is written first, before the agent call and before delivery. deliver.sh writes only to last-delivered.md and never touches last-digest.md.

To review the raw log on demand, ask your agent: *"show me last night's full digest log"* — it will read last-digest.md.

⚠️ Privacy note: when LLM composition is enabled, the raw log is passed to your OpenClaw agent as prompt context. If that agent uses a remote/cloud LLM, log content will leave this host. Use a local-only agent (Ollama) if log privacy is required.

Files

FilePurpose
install.shOne-time interactive setup
plug.shRegister a skill + wire cron
unplug.shRemove a skill + cron entry
log-append.shCalled by skill cron wrappers
digest-agent.shRuns on schedule, composes + delivers digest
deliver.shInternal delivery handler (Telegram/Discord/log)

Updating

cd ~/.openclaw/skills/pulse-board && git pull && chmod +x *.sh

Requirements

  • bash 4+, curl, python3 — standard on any modern Linux/macOS
  • openclaw CLI in PATH (for LLM digest; falls back to mechanical if absent)
  • No sudo. No root. No system path writes outside ~/.pulse-board/

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.91%
按下载量换算3,095

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install pulse-board 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills