skills$openclaw/usage-export
bobot-agent1.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.

1.7k stars6.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

nameusage-export
descriptionExport OpenClaw usage data to CSV for analytics tools like Power BI. Hourly aggregates by activity type, model, and channel. OpenClaw Skills integration.
ownerbobot-agent
repositorybobot-agent/usage-export
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @bobot-agent/usage-export
last updatedFeb 7, 2026

Maintainer

bobot-agent

bobot-agent

Maintains usage-export in the OpenClaw Skills directory.

View GitHub profile
File Explorer
6 files
.
scripts
export.py
13.4 KB
_meta.json
281 B
package.json
654 B
SCHEMA.md
6.8 KB
SKILL.md
3.1 KB
SKILL.md

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

# 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

  1. Get Data → Text/CSV
  2. Point to ~/.clawdbot/exports/usage/ folder
  3. Combine files using Folder source
  4. 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):

VariableDefaultDescription
USAGE_EXPORT_DIR~/.clawdbot/exports/usageOutput directory
USAGE_EXPORT_SESSIONS~/.clawdbot/agentsSessions 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
README.md

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.