Token导航 LogoToken导航TokenDH.com
效率操作浏览器clawhub未标认证来源可访问clear审计提醒

sessions-dashboard会话仪表板

Agent Skill

sessions-dashboard 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,470

周安装

464

GitHub Stars

公开资料未说明

下载量

3,601
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install sessions-dashboard

简介

提供 OpenClaw 会话的实时 CLI 和 Web 仪表板,展示状态、令牌消耗与共享 HTML 面板。

  • 适用于监控会话运行状态、成本统计与结果可视化分享等效率管理需求。
  • 通过 openclaw skills install sessions-dashboard 安装,需确认本地端口和网络访问权限。
  • 依赖本地服务启动与 Web 界面渲染,建议检查防火墙与浏览器兼容性。
  • 使用前请核实是否允许启动服务、绑定端口及访问外部资源,避免安全策略拦截。

SKILL.md

name
sessions-dashboard
description
Live dashboard viewer for OpenClaw sessions (CLI + web) that shows color-coded states, token/cost totals, and shareable HTML panels. Requires local OpenClaw CLI access (openclaw sessions and optional openclaw logs). Created by Nate Teshome (stellarsitesai.com).

Sessions Dashboard ("Live Dashboard Viewer")

Creator: Nate Teshome — <https://stellarsitesai.com>

What this skill delivers

  • Color-coded CLI monitor (scripts/agents_cli_monitor.py): RUN/IDLE/STALE/EXIT states, runtime, last update, token + USD estimates, model/kind, plus a live KPI banner (state counts, Σ tokens/cost, longest run, avg lag).
  • Shareable HTML dashboard (scripts/agents_canvas_snapshot.py): dark-mode cards + table, status pills, runtime/lag columns, and auto-refresh browser view for leadership/client reviews.
  • Looping web generator (--loop <seconds>): continuously rewrites the HTML so you don’t need separate watch commands. Pair with the built-in <meta refresh> (default 5 s) for a true live panel.

Use this when you need a polished, always-on view of every OpenClaw session—perfect for ops rooms, agency war rooms, or lightweight audits.

Requirements & security

  • OpenClaw CLI (openclaw >= 2025.x) must be installed and authenticated so openclaw sessions --json works.
  • Optional log tail: the CLI monitor subscribes to openclaw logs --json --follow for instant RUN/IDLE bumps. Those logs can contain prompts, tool arguments, secrets, or PII. Nothing is printed or stored, but if you don’t want to expose log contents, pass --no-subscribe (poll-only) or run on a machine without log access.

- Set AGENT_MONITOR_NO_SUBSCRIBE=1 to default to poll-only everywhere; pass --subscribe to override per run.

  • Gateway scope: run the dashboard only on hosts that are already allowed to query your OpenClaw gateway; everything stays local/in-memory.

Directory

skills/sessions-dashboard/
├── SKILL.md
├── scripts/
│   ├── agents_cli_monitor.py        # Live terminal UI (color + KPI banner)
│   └── agents_canvas_snapshot.py    # HTML generator (+ --loop for continuous refresh)
└── assets/
    └── agents_canvas.html           # Default output target for the web panel

CLI monitor quick start

cd ~/.openclaw/workspace/skills/sessions-dashboard
./scripts/agents_cli_monitor.py --interval 2 --cost-per-1k 0.015

Key flags:

  • --interval SECONDS (default 3, min 0.5)
  • --active-minutes MINS (default 720) to widen the lookback
  • --agent <id> / --all-agents to filter
  • --retention SECONDS (default 120) to control how long EXITED rows linger
  • --cost-per-1k USD or env AGENT_MONITOR_COST_PER_1K
  • --once for a single snapshot, --no-subscribe to disable the log tailer

What the CLI shows

  • State (RUN green, IDLE amber, STALE magenta, EXIT gray)
  • Runtime + start time for quick “how long has this been around?” checks
  • Last update lag (00:12 ago) to spot stuck sessions
  • Tokens & projected cost per session
  • Model / kind (channel) for context
  • KPI banner (top line) summarizing RUN/IDLE/STALE/EXIT counts, Σ tokens/cost, the longest-running session, and mean lag — ideal for screenshots or lightweight reporting.

Web dashboard (Canvas / browser)

Generate the HTML and keep it running in one command:

cd ~/.openclaw/workspace/skills/sessions-dashboard
./scripts/agents_canvas_snapshot.py \
  --loop 5 \
  --refresh 5 \
  --cost-per-1k 0.015 \
  --output assets/agents_canvas.html

What the script does:

  • Hits openclaw sessions --json on each loop.
  • Rebuilds assets/agents_canvas.html with cards (state counts, Σ tokens/cost, longest run, avg lag) plus the detailed table.
  • Inserts a <meta refresh> so the browser (or Canvas tab) reloads itself every --refresh seconds.
  • When --loop > 0, the script stays alive forever and rewrites the file at that cadence (Ctrl+C to stop). No extra watch command needed.

Presenting the dashboard

  • Open locally: open assets/agents_canvas.html
  • Canvas: openclaw canvas present --path skills/sessions-dashboard/assets/agents_canvas.html
  • Remote share: host the HTML anywhere static files are allowed; it has no external dependencies.

Troubleshooting

  • command not found: chmod +x scripts/*.py and run from the skill directory (or use absolute paths).
  • Gateway errors: verify openclaw gateway status; the scripts just print the stderr and retry.
  • No color in CLI: set NO_COLOR=1 to disable, otherwise the monitor auto-detects TTY support.
  • Browser not updating: make sure --loop is running so the HTML file actually changes; --refresh only reloads the page.
  • Cost column blank: pass --cost-per-1k or export AGENT_MONITOR_COST_PER_1K to enable projections.

Release notes (current version)

  • Added colorized states + KPI banner to the CLI monitor.
  • Added looping mode and a polished dark-mode layout for the HTML dashboard.
  • Default assets are optimized for screenshots / executive readouts.

That’s it—launch the CLI, fire up the live HTML panel, and give your team a real-time Sessions Dashboard without cobbling together spreadsheets.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

73.73%
按下载量换算2,655

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills