自架與 Cloud

一道指令。
完整可見性。

免費在本機安裝 ClawMetry,或將一整群 Mac Mini 連接至 ClawMetry Cloud。端對端加密,一個儀表板掌握全部。

免費開始使用 看實際運作

哪個版本適合你?

ClawMetry
OSS / 自架
免費且開源
  • 永久免費
  • 在 GitHub 上開源
  • 完全於本機執行。單一機器。
  • 你的資料永遠不離開你的機器
  • 無須註冊帳號
  • 僅限單一節點
  • 無遠端存取
免費開始使用
LIVE
☁️
ClawMetry Cloud
託管機群
  • 託管且全天候運行
  • 端對端加密
  • 多節點機群(10+ 台 Mac Mini)
  • 隨時隨地存取儀表板
  • 團隊存取與共享
  • 伺服器上零明文資料
  • 一個畫面綜覽所有節點
開始使用

無需代理,無需修改程式碼。

ClawMetry 直接讀取 OpenClaw 的工作區,也就是 OpenClaw 已寫入的相同檔案與日誌。你的代理與模型之間沒有任何中介。

🤖
Your OpenClaw agents
Running normally.
Nothing changes.
reads files
ClawMetry
ClawMetry
Parses logs + sessions.
Serves dashboard.
shows you
📊
Your browser
localhost:8900
Live dashboard
Runs locally on the same machine as OpenClaw. Your data never leaves your box.

透視代理執行階段的全貌

ClawMetry 直接對應 OpenClaw 的三層架構。清楚掌握每一層發生的事,從傳入訊息、LLM 呼叫到工具執行。

Layer 1: Connectors
📲
Telegram
3 groups, 1 DM
💬
WhatsApp
1 group
🎮
Discord
2 channels
⌨️
CLI
main session
🔌
<plugin>
routes messages
Layer 2: Gateway Controller
Main
TG:group1
TG:group2
WA:chat
DC:chan1
Heartbeat
Each channel/group gets its own isolated session with full transcript
Cron Manager
Memory Mgmt
Session DB
builds context + calls LLM
Layer 3: Agent Runtime
Environment
Claude Code
GCP
exe.dev
Providers
Opus 4.6
GPT 5.4
Sonnet 4.6
Tools
web_search
read_file
exec
Skills
weather
gh-issues
tmux
Brain Tab
Channel + Skill Badges
Every event tagged with which channel it came from and which skill triggered it. Filter by Telegram, WhatsApp, Discord, or CLI. Click any turn to see the full execution trace.
Context Tab
LLM Context Inspector
See exactly what context the LLM receives: system prompt breakdown, bootstrap files (SOUL.md, AGENTS.md), tool schemas, conversation history, and compaction events.
Skills Tab
Skills File Browser
IDE-like explorer for all installed skills. Click any skill to browse SKILL.md, scripts, and references. See fidelity stats: which skills are actually being used vs dead weight.
Per-Turn Execution Timeline
18:12:50 USER Telegram "deploy to prod"
5 steps 2 LLM 2 tools 5.6s
18:12:52 EXEC git status
18:12:52 READ deploy.sh
18:12:53 THINK Checking deployment config...
18:12:55 AGENT Deployed successfully to prod
LLM Context Composition
What the model actually sees each turn
## Tooling
3.0K
## Skills headers
1.5K
Bootstrap: SOUL.md
750
Bootstrap: MEMORY.md
1.0K
Tool schemas (JSON)
7.0K
Conversation history
38.5K
Total: 51.7K / 200K tokens (26%) Compaction threshold: ~160K
ClawMetry Cloud

隨時隨地監控你的 Mac Mini 機群

每個節點在傳送前都會於本機加密資料。ClawMetry Cloud 永遠看不到明文。無論你身在何處,都能在單一儀表板看到每一台機器。

🖥️ Mac Mini 1 🔒
🖥️ Mac Mini 2 🔒
🖥️ Mac Mini 3 🔒
🖥️ Mac Mini 4 🔒
🖥️ Mac Mini 5 🔒
🖥️ Mac Mini 10+ 🔒
E2E encrypted
☁️
ClawMetry Cloud
Zero plaintext
on our servers
anywhere
🌐
Your dashboard
Any browser,
anywhere
🔐
E2E Encrypted
Data is encrypted on-device before it leaves your Mac Mini
🚫
Zero plaintext on our servers
ClawMetry Cloud only ever sees ciphertext. Only you can decrypt.
🗺️
Any node, one view
All your Mac Minis in one dashboard. Switch between nodes instantly.

不到一分鐘即可執行

兩個指令,就這麼簡單。

terminal
1

Install with pip

Works wherever Python 3.8+ is installed. Same machine as OpenClaw.

2

Run clawmetry

Auto-discovers your OpenClaw workspace. Opens the dashboard at localhost:8900.

3

That's it

No account. No API key. No config file. Open your browser and start watching.

一切盡在單一儀表板

六個分頁,每一個都解答關於代理運作的不同問題。

🤖

Main Agent

Live feed of every tool call your main OpenClaw agent makes - name, what it did, how long it took. Updates in real time as the agent works.

Live
🔀

Sub Agents

7-day history of every sub-agent run. See what task it was given, when it started, when it finished, and what it did along the way.

7-day history
💰

Token flow

Real-time token usage broken down by model and session. Know exactly which sessions are burning through your budget.

Live

Cron jobs

Every scheduled task in your OpenClaw setup - last run time, status, and run history. Catch a missed cron before it matters.

Live
🩺

System health

Service status for your OpenClaw gateway and connected components at a glance.

Live
📜

Session history

Browse past sessions with a full timeline of what happened - tool calls, costs, duration. Useful for debugging anything that went wrong.

Searchable

Reads from OpenClaw's workspace

ClawMetry doesn't intercept traffic or modify your setup. It reads the files OpenClaw already writes - session transcripts, cron job state, workspace files - and presents them as a live dashboard.

This means zero overhead on your agents and zero risk of ClawMetry breaking anything.

📁
Session transcripts Every tool call, model response, and agent turn, timestamped
Cron job registry Scheduled tasks, run history, and last-fired timestamps
🧠
Workspace files Memory files, SOUL.md, AGENTS.md - whatever your agent reads and writes
🔌
Gateway status OpenClaw gateway health, active sessions, connected channels
~/.openclaw/workspace
📁 sessions/ ← session transcripts
📁 memory/ ← memory files
📄 MEMORY.md ← long-term memory
📄 SOUL.md ← agent persona
📄 HEARTBEAT.md

~/.openclaw/cron
📄 jobs.json ← cron jobs

~/.openclaw/agents
📁 main/ ← main agent sessions
📁 sub-*/ ← sub-agent runs

ClawMetry reads these. Your agents keep writing them. Nothing changes.

看清你的代理究竟在做什麼

免費、開源,不到一分鐘即可執行。無需註冊帳號。

pip install clawmetry

Stay in the loop

Get notified about new features, alerting integrations, the Mac app, and everything else coming to ClawMetry.