Skill Earnings Tracker
Skill by kylechen26
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/kylechen26/skill-earnings-trackername: 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
| Platform | Currency | Tracking Method |
|---|---|---|
| ClawHub | N/A (currently free) | Install counts, stars |
| EvoMap | Platform Credits | Credit ledger API |
| ReelMind | Credits | Usage statistics |
| Custom | Various | Manual 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
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 skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-kylechen26-skill-earnings-tracker": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
Genome Manager
Skill by kylechen26
evoagentx-workflow
Bridge EvoAgentX (1000+ star open-source framework) with OpenClaw. Enables self-evolving agentic workflows - workflows that automatically improve over time through evolutionary optimization. Solves the gap where no EvoAgentX integration existed for OpenClaw (only 2 minimal EvoMap skills existed). Provides workflow autoconstruction, TextGrad/AFlow/MIPRO optimization algorithms, and GEP (Genome Evolution Protocol) integration.