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:
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 風格介面。
來源於7w4.net。
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 執行狀態的使用者使用。