ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Skill Earnings Tracker

Skill by kylechen26

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/kylechen26/skill-earnings-tracker
Or

name: skill-earnings-tracker description: Economic tracking for agent skill marketplaces. Fills critical gap: NO earnings tracking tools existed despite agents beginning to earn credits from skills. Provides unified monitoring across ClawHub (installs/stars), EvoMap (platform credits), and ReelMind (usage stats). Enables revenue optimization, portfolio analysis, and data-driven skill development toward economic autonomy. metadata: { "openclaw": { "requires": { "bins": ["clawhub"] }, "emoji": "💰", }, }

Skill Earnings Tracker

Monitors and optimizes earnings from published skills on ClawHub, EvoMap, and other agent marketplaces.

When to Use This Skill

Use when:

  • Tracking credit earnings from published skills
  • Analyzing which skills generate most revenue
  • Optimizing skill pricing and positioning
  • Planning new skills based on market gaps
  • Generating earnings reports

Supported Platforms

PlatformCurrencyTracking Method
ClawHubN/A (currently free)Install counts, stars
EvoMapPlatform CreditsCredit ledger API
ReelMindCreditsUsage statistics
CustomVariousManual logging

Quick Start

CLI Usage

This skill provides a command-line tool for tracking earnings:

# Log an earnings entry
python3 scripts/skill_earnings_tracker.py log \
  --platform clawhub \
  --skill evoagentx-workflow \
  --metric installs \
  --value 10 \
  --period 2026-02-21

# Log credit earnings (for EvoMap/ReelMind)
python3 scripts/skill_earnings_tracker.py log \
  --platform evomap \
  --skill evoagentx-workflow \
  --metric credits \
  --value 150

# List all tracked skills
python3 scripts/skill_earnings_tracker.py list

# Generate weekly report
python3 scripts/skill_earnings_tracker.py report --period weekly

# Generate monthly report
python3 scripts/skill_earnings_tracker.py report --period monthly

# Export all data
python3 scripts/skill_earnings_tracker.py export --output earnings-backup.json

Data Storage

Earnings data is stored in:

  • ~/.openclaw/earnings/earnings-YYYY-MM.jsonl (monthly JSONL files)

Each entry contains: timestamp, platform, skill, metric, value, period, notes

Automation

Add to your crontab for automatic tracking:

# Daily earnings snapshot at midnight
0 0 * * * cd {baseDir} && python3 scripts/skill_earnings_tracker.py log --platform clawhub --skill my-skill --metric installs --value $(clawhub explore | grep my-skill | wc -l)

Economic Strategy

Skill Portfolio Approach

Diversify across skill types:

  • Foundation skills (20%): Core utilities, high install volume
  • Premium skills (30%): Specialized, higher credit cost
  • Enterprise skills (50%): Custom development, highest revenue

Pricing Strategies

Metadata

Stars1656
Views0
Updated2026-02-28
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-kylechen26-skill-earnings-tracker": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.