name: agent-kanban description: OpenClaw Agent Dashboard - A Bloomberg Terminal-style web interface for real-time monitoring of all Agent status, session history, and session file sizes. Use this skill when users need to monitor agents, view agent status, or deploy a kanban dashboard.
OpenClaw Agent Dashboard - Bloomberg Terminal Style Interface.
# Copy project to destination
cp -r assets/agent-kanban /path/to/destination/
cd /path/to/destination/agent-kanban
# Install dependencies
npm install
# Ensure Gateway is running
openclaw gateway start
# Start Kanban
npm start
# Access
# http://localhost:3100
Gateway Token is auto-loaded from ~/.openclaw/openclaw.json - no manual configuration required!
cp config.js config.local.js
# Edit config.local.js if needed
Config options:
来源于7w4.net。
module.exports = {
server: { port: 3100, host: '0.0.0.0' },
gateway: {
url: 'http://127.0.0.1:18789',
token: '' // Leave empty to auto-load from openclaw.json
},
openclaw: {
homeDir: '.openclaw',
configFilename: 'openclaw.json',
binPath: '/home/dyh/.nvm/versions/node/v22.18.0/bin/openclaw',
nodePath: '/home/dyh/.nvm/versions/node/v22.18.0/bin'
},
timeout: {
gatewayHealth: 5000,
gatewayInvoke: 30000,
sendMessage: 120
},
frontend: {
refreshInterval: 30000,
highlightThreshold: 60000,
activeThreshold: 300000
},
refreshInterval: 60000,
sessionSizeThresholds: { warning: 500, danger: 1024 }
};
openclaw gateway start)| Action | Description |
|---|---|
| Click agent card | View details (files + messages) |
- / + button |
Adjust font size (10-24px) |
R button |
Reset font size to 13px |
CLOSE button |
Close agent + hide right panel |
HIDE button |
Hide right panel |
| Input box + SEND | Send message to selected agent |
Click on an agent card, then use the input box at the bottom of the right panel to send messages directly to the agent.
openclaw agent --agent <id> --message <msg> CLI command| Error | Code | Solution |
|---|---|---|
| Gateway 未启动 | GATEWAY_NOT_RUNNING |
Run openclaw gateway start |
| Gateway 响应超时 | GATEWAY_TIMEOUT |
Check Gateway health |
| Gateway Token 无效 | TOKEN_INVALID |
Check token in openclaw.json |
| Gateway Token 未配置 | TOKEN_MISSING |
Run openclaw wizard |
| 网络错误 | NETWORK_ERROR |
Check network connection |
# Method 1: From config file
cat ~/.openclaw/openclaw.json | jq '.gateway.auth.token'
# Method 2: From CLI
openclaw gateway status
OpenClaw Agent 状态监控面板 - Bloomberg Terminal 风格界面。
cp -r assets/agent-kanban /path/to/destination/
cd /path/to/destination/agent-kanban
npm install
openclaw gateway start
npm start
# 访问 http://localhost:3100
Gateway Token 自动从 ~/.openclaw/openclaw.json 读取,无需手动配置!
cat ~/.openclaw/openclaw.json | jq '.gateway.auth.token'
/api/config endpoint for frontend configurationSee references/README.md for full documentation.
这个 Skill 质量良好,界面设计独特且功能丰富,能有效监控 Agent 状态和会话信息。文档详细(中英文双语),配置灵活,上手难度低。主要优点是功能完善、界面美观;不足是部分安全配置偏宽松,缺少实时推送机制。总体适合需要监控多个 Agent 运行状态的用户使用。