1.7k★by bobot-agent
usage-export – OpenClaw Skill
usage-export is an OpenClaw Skills integration for data analytics workflows. Export OpenClaw usage data to CSV for analytics tools like Power BI. Hourly aggregates by activity type, model, and channel.
Skill Snapshot
| name | usage-export |
| description | Export OpenClaw usage data to CSV for analytics tools like Power BI. Hourly aggregates by activity type, model, and channel. OpenClaw Skills integration. |
| owner | bobot-agent |
| repository | bobot-agent/usage-export |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @bobot-agent/usage-export |
| last updated | Feb 7, 2026 |
Maintainer

name: usage-export version: 1.0.0 description: Export OpenClaw usage data to CSV for analytics tools like Power BI. Hourly aggregates by activity type, model, and channel. homepage: https://clawdhub.com/skills/usage-export metadata: {"openclaw":{"emoji":"📊","category":"analytics","requires":{"bins":["python3"]}}}
Usage Export
Export your OpenClaw usage data to CSV files for analytics in Power BI, Excel, or any BI tool.
What It Does
- Scans session JSONL files for usage data
- Aggregates by hour and activity type
- Outputs one CSV per day
- Tracks tokens, costs, and tool usage
- Includes main session + subagent sessions
Output Format
CSV files are written to ~/.clawdbot/exports/usage/YYYY-MM-DD.csv:
timestamp_hour,date,hour,session_key,channel,model,provider,activity_type,request_count,input_tokens,output_tokens,cache_read_tokens,cache_write_tokens,total_tokens,cost_usd
2026-01-30T05:00:00Z,2026-01-30,5,agent:main:main,signal,claude-opus-4-5,anthropic,chat,3,24,892,14209,500,15625,0.12
2026-01-30T05:00:00Z,2026-01-30,5,agent:main:main,signal,claude-opus-4-5,anthropic,tool:exec,8,80,450,0,0,530,0.02
For detailed column definitions, see SCHEMA.md.
Installation
# Via ClawdHub
clawdhub install usage-export
# Or manually
mkdir -p ~/.openclaw/skills/usage-export
# Copy SKILL.md, SCHEMA.md, and scripts/ folder
Usage
Manual Export
# Export today's data
python3 {baseDir}/scripts/export.py --today
# Export specific date
python3 {baseDir}/scripts/export.py --date 2026-01-29
# Export date range
python3 {baseDir}/scripts/export.py --from 2026-01-01 --to 2026-01-31
Cron Setup (recommended)
Run hourly to keep exports fresh:
# System crontab
0 * * * * python3 ~/.openclaw/skills/usage-export/scripts/export.py --today
Or via OpenClaw config:
{
"cron": {
"jobs": [{
"name": "usage-export",
"schedule": { "kind": "cron", "expr": "0 * * * *" },
"payload": {
"kind": "systemEvent",
"text": "Run usage export: python3 ~/.openclaw/skills/usage-export/scripts/export.py --today --quiet"
},
"sessionTarget": "main"
}]
}
}
Power BI Integration
- Get Data → Text/CSV
- Point to
~/.clawdbot/exports/usage/folder - Combine files using Folder source
- Build your dashboard!
Suggested Visualizations
- Daily cost trend — Line chart by date
- Model breakdown — Pie chart by model
- Activity heatmap — Matrix of hour × activity_type
- Channel comparison — Bar chart by channel
- Tool usage ranking — Top 10 tools by request count
Configuration
Environment variables (optional):
| Variable | Default | Description |
|---|---|---|
USAGE_EXPORT_DIR | ~/.clawdbot/exports/usage | Output directory |
USAGE_EXPORT_SESSIONS | ~/.clawdbot/agents | Sessions directory |
Notes
- All timestamps are UTC
- Cost column is an estimate based on configured pricing (see SCHEMA.md for details)
- Cache tokens are Anthropic-specific; other providers show 0
- New sessions are picked up automatically on next export run
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
Configuration
Environment variables (optional): | Variable | Default | Description | |----------|---------|-------------| | `USAGE_EXPORT_DIR` | `~/.clawdbot/exports/usage` | Output directory | | `USAGE_EXPORT_SESSIONS` | `~/.clawdbot/agents` | Sessions directory |
FAQ
How do I install usage-export?
Run openclaw add @bobot-agent/usage-export in your terminal. This installs usage-export into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/bobot-agent/usage-export. Review commits and README documentation before installing.
