Value Tracker
by @sergirostoll-coder
Track hours saved and calculate ROI with category-based rates to measure and prove the value your AI assistant generates over time.
clawhub install value-trackerπ About This Skill
Value Tracker Skill
Track and quantify the value your AI assistant generates. Measure hours saved, calculate ROI with differentiated rates by category, and prove the impact.
Why This Matters
AI assistants save time, but how much? This skill tracks:
Quick Start
# Log a task manually
./tracker.py log tech "Set up Toast API integration" -H 2Auto-detect category from description
./tracker.py log auto "Researched competitor pricing strategies" -H 1.5View summaries
./tracker.py summary today
./tracker.py summary week
./tracker.py summary monthGenerate markdown report
./tracker.py report week > weekly-value-report.mdExport JSON for dashboards
./tracker.py export --format json
Categories & Default Rates
| Category | Default Rate | Use For | |----------|--------------|---------| | strategy | $150/hr | Planning, decisions, high-level thinking | | research | $100/hr | Market research, analysis, deep dives | | finance | $100/hr | Financial analysis, reporting, forecasting | | tech | $85/hr | Integrations, automations, scripts | | sales | $75/hr | CRM, pipeline, outreach | | marketing | $65/hr | Content, social, campaigns | | ops | $50/hr | Email triage, scheduling, routine tasks |
Edit config.json to customize rates for your context.
Auto-Detection Keywords
When using log auto, the skill detects category from keywords:
Configuration
Edit config.json:
{
"currency": "$",
"default_rate": 75,
"rates_by_category": {
"strategy": 150,
"research": 100,
"finance": 100,
"tech": 85,
"sales": 75,
"marketing": 65,
"ops": 50
}
}
Data Storage
Tasks are stored in data.json in the skill directory. Back it up periodically.
Integration with Dashboards
Use tracker.py export to get JSON output suitable for web dashboards or other tools.
Tips
1. Be consistent β Log tasks as you complete them 2. Use auto-detect β Faster than picking categories manually 3. Review weekly β The value adds up faster than you think 4. Customize rates β Match your actual hourly cost/value
Example Output
π Value Summary (This Week)
βββββββββββββββββββββββββββTotal Hours: 12.5h
Total Value: $1,087
Avg Rate: $87/hr
By Category:
π― strategy 2.0h $300
π research 3.5h $350
βοΈ tech 4.0h $340
π§ ops 3.0h $150
Top Tasks:
β’ Competitor analysis deep dive (3.5h)
β’ Toast API integration (2.0h)
β’ Q2 planning session (2.0h)
*Ship value, track value, prove value.*
π‘ Examples
# Log a task manually
./tracker.py log tech "Set up Toast API integration" -H 2Auto-detect category from description
./tracker.py log auto "Researched competitor pricing strategies" -H 1.5View summaries
./tracker.py summary today
./tracker.py summary week
./tracker.py summary monthGenerate markdown report
./tracker.py report week > weekly-value-report.mdExport JSON for dashboards
./tracker.py export --format json
βοΈ Configuration
Edit config.json:
{
"currency": "$",
"default_rate": 75,
"rates_by_category": {
"strategy": 150,
"research": 100,
"finance": 100,
"tech": 85,
"sales": 75,
"marketing": 65,
"ops": 50
}
}
π Tips & Best Practices
1. Be consistent β Log tasks as you complete them 2. Use auto-detect β Faster than picking categories manually 3. Review weekly β The value adds up faster than you think 4. Customize rates β Match your actual hourly cost/value