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

digital-staff-dashboard数字化员工仪表板

Agent Skill

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

总安装

2,497

周安装

102

GitHub Stars

公开资料未说明

下载量

1,132
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install digital-staff-dashboard

简介

基于网络的现代仪表板,用于管理 OpenClaw 代理。

  • 提供实时监控、令牌使用跟踪和技能管理功能。
  • 支持多语言界面和跨团队协作需求。digital-staff-dashboard 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装前应检查网络访问、数据存储和用户权限设置。
  • 适合需要集中管控多个 Agent 实例的场景。

SKILL.md

name
agent-dashboard-v2
description
A modern web-based dashboard for managing OpenClaw agents with real-time monitoring, token usage tracking, skill management, and multi-language support. Provides a visual interface for agent operations, subagent dispatch management, and comprehensive statistics.
metadata
openclaw
emoji
📊

Agent Dashboard V2

A modern, feature-rich web dashboard for OpenClaw agent management with real-time monitoring, token usage tracking, and comprehensive agent operations.

Features

  • 📊 Real-time Monitoring: Monitor agent status, token usage, and session statistics
  • 🎨 Modern UI: Dark theme with beautiful animations and responsive design
  • 🛠️ Skill Management: Enable/disable skills for each agent with blacklist support
  • 🔀 Subagent Dispatch: Visual management of agent delegation and permissions
  • 🤖 Agent Creation: Create new agents with guided configuration
  • 🌐 Multi-language: Automatic language detection (English/Chinese)
  • 🌤️ Weather Widget: Real-time local weather and time display
  • 📱 Responsive Design: Works on desktop and mobile devices

Installation

Quick Install

npx skills add mikezhuyan/agent-dashboard@agent-dashboard-v2

Manual Installation

# Clone the repository
git clone https://github.com/mikezhuyan/agent-dashboard.git ~/.agents/skills/agent-dashboard-v2

# Navigate to the directory
cd ~/.agents/skills/agent-dashboard-v2

# Install (optional - creates systemd service)
./install.sh

Usage

Starting the Dashboard

# Run directly
python3 dashboard_server.py

# Or use the installed service
systemctl --user start agent-dashboard

Access

Open your browser and navigate to:

http://localhost:5181

Dashboard Features

1. Agent Grid View

  • View all agents with status indicators
  • Drag to reorder agent cards
  • Click cards to view details in sidebar
  • Multiple view modes (grid, horizontal, list)

2. Skill Management

  • Click the 🛠️ icon on any agent card
  • Enable/disable skills per agent
  • Automatic blacklist/whitelist management
  • View all available skills

3. Subagent Dispatch

  • Click "调度管理" (Manage Dispatch)
  • Select a dispatcher agent
  • Configure allowed subagents
  • Set max concurrent tasks

4. Create New Agent

  • Click "新建 Agent" (Create Agent)
  • Configure agent ID, name, emoji, color theme
  • Select model provider and model
  • Set system prompt

5. Settings

  • Click "设置" (Settings)
  • Customize dashboard title and subtitle
  • Configure auto-refresh interval
  • Set token cost estimates
  • Show/hide cost information

Configuration

The dashboard reads configuration from:

  • ~/.openclaw/openclaw.json - OpenClaw global config
  • ~/.config/agent-dashboard/config.json - Dashboard settings (auto-created)

Environment Variables

OPENCLAW_HOME=/home/user/.openclaw  # Path to OpenClaw installation
DASHBOARD_PORT=5181                  # Dashboard server port

Architecture

  • Backend: Flask (Python 3)
  • Frontend: Vanilla JavaScript + CSS
  • Data Source: OpenClaw JSON configuration
  • Authentication: Inherits OpenClaw authentication

API Endpoints

The dashboard provides REST API endpoints:

GET  /api/agents              # List all agents
POST /api/agents              # Create new agent
GET  /api/agents/<name>       # Get agent details
DELETE /api/agents/<name>     # Delete agent
GET  /api/skills              # List all skills
GET  /api/agents/<name>/skills # Get agent skills
POST /api/agents/<name>/skills/<id>/enable
POST /api/agents/<name>/skills/<id>/disable
GET  /api/stats               # Get statistics

Requirements

  • Python 3.8+
  • OpenClaw installed and configured
  • Modern web browser

File Structure

agent-dashboard/
├── dashboard_server.py      # Flask backend
├── openclaw_config.py       # OpenClaw config manager
├── openclaw_skills.py       # Skills management
├── openclaw_finder.py       # OpenClaw path finder
├── openclaw_schema.py       # Config validation
├── static/
│   ├── css/style.css        # Styles
│   ├── js/app.js            # Frontend logic
│   └── js/i18n.js           # Internationalization
├── install.sh               # Installation script
└── SKILL.md                 # This file

Troubleshooting

Port Already in Use

# Find and kill process using port 5181
lsof -ti:5181 | xargs kill -9
# Or use a different port
DASHBOARD_PORT=8080 python3 dashboard_server.py

Cannot Find OpenClaw

# Set environment variable
export OPENCLAW_HOME=/path/to/.openclaw

Permission Denied

# Fix permissions
chmod +x install.sh
chmod 644 static/*

Updating

cd ~/.agents/skills/agent-dashboard-v2
git pull origin main
# Restart service if using systemd
systemctl --user restart agent-dashboard

Uninstallation

# Stop service
systemctl --user stop agent-dashboard
systemctl --user disable agent-dashboard

# Remove files
rm -rf ~/.agents/skills/agent-dashboard-v2
rm -f ~/.config/systemd/user/agent-dashboard.service

License

MIT

Author

@mikezhuyan

Support

For issues and feature requests, visit: https://github.com/mikezhuyan/agent-dashboard/issues

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

97.06%
按下载量换算1,099

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills