Install
openclaw skills install @voronindenis5/commute-carbon-counterUse when you want to know the real carbon footprint of your daily commute or travel habits, when deciding between commuting modes (car vs transit vs bike vs carpool vs EV), when tracking a personal emissions goal, or when preparing an environmental impact report — logs every trip (mode, distance, passengers), computes kg CO2 per trip/week/month using per-passenger-km emission factors for 14 transport modes, compares against your car baseline, projects your annual trajectory, and shows what changed your footprint most.
openclaw skills install @voronindenis5/commute-carbon-counterMost people's largest personal emissions source is how they move: commuting alone by car typically produces 2–4 tonnes of CO2 per year — often more than home heating. Yet almost nobody can answer "how much CO2 was my commute this month, and what actually moved the number?" Carbon footprint calculators ask 40 questions once a year and produce a single opaque number that changes nothing.
This skill treats your mobility like a measurable system: log trips (10 seconds), get per-trip/per-week/per-month kg CO2, compare modes honestly (per-passenger-km, carpooling divided by heads), track your trajectory against a personal budget, and see a ranked "what changed" list — the two trips a week that account for half your footprint, the carpool switch that cut 30%.
Emission factors are per-passenger-km averages synthesized from published transport LCA sources (UK DEFRA/BEIS, EPA, EEA — see references). They are planning-grade, not certification-grade: good enough to compare modes and track trends, not to offset certified tons.
# Log a trip (mode, km one-way is auto doubled unless --oneway given)
python3 scripts/commute_carbon.py log --mode car --km 18 --note "office"
python3 scripts/commute_carbon.py log --mode carpool --km 18 --passengers 3 --note "office w/ neighbors"
python3 scripts/commute_carbon.py log --mode metro --km 9 --date 2026-09-05
python3 scripts/commute_carbon.py log --mode bike --km 6
# Quick one-off comparison — no logging
python3 scripts/commute_carbon.py compare --km 18
# Reports
python3 scripts/commute_carbon.py week # last 7 days
python3 scripts/commute_carbon.py month # last 30 days
python3 scripts/commute_carbon.py year # annualized trajectory vs budget
# Emission factors table (what the math uses)
python3 scripts/commute_carbon.py factors
# Manage log
python3 scripts/commute_carbon.py log-list --limit 20
python3 scripts/commute_carbon.py export --csv trips.csv
Trips live in ~/.commute-carbon.json (--file to override).
| Mode | Factor | Notes |
|---|---|---|
| car | 192 | average ICE, solo driver |
| carpool | 192 / passengers | same vehicle, split by heads |
| ev | 53 | average grid mix; ~0 in clean grids |
| motorcycle | 103 | |
| bus | 97 | urban diesel average |
| coach | 27 | intercity/express bus |
| metro | 35 | heavy rail electric |
| tram | 30 | light rail |
| train | 41 | regional rail |
| bike | 0 | |
| e-bike | 5 | charging emissions only |
| walk | 0 | |
| scooter | 8 | shared e-scooter, incl. rebalancing |
| plane | 255 | short-haul per passenger-km |
Week 2026-09-02 → 2026-09-08 9 trips, 214 km
CO2: 14.2 kg (baseline all-car: 41.1 kg → 65% saved)
by mode:
car ██████████████ 9.4 kg (3 trips)
metro ███ 1.2 kg (4 trips)
bike (0.0 kg) (2 trips)
top trips:
1. 2026-09-03 car 36 km → 6.9 kg office
2. 2026-09-06 car 22 km → 4.2 kg ikea
trajectory: 0.74 t/yr — under 1.0 t budget ✅
year annualizes the current log and compares to your budget (default 1000 kg personal transport CO2/yr, roughly aligned with 1.5°C-lifestyle targets for mobility; set your own with --budget).
--passengers for carpools.--oneway for one-ways or you'll double-count.factors reviewed — swap in your local grid/vehicle numbers if you know themweek runs and the baseline comparison looks sane (savings % vs your mode mix)--budget set to something meaningful for you (or accepted the 1 t default consciously)"Subway vs driving to work — does it matter?"
python3 scripts/commute_carbon.py compare --km 14
Track a real week, then decide
for d in mon tue wed thu fri; do python3 scripts/commute_carbon.py log --mode metro --km 9; done
python3 scripts/commute_carbon.py log --mode car --km 24 --note "sat errands"
python3 scripts/commute_carbon.py week
EV purchase, before/after
python3 scripts/commute_carbon.py month # before
# ...switch modes in your log...
python3 scripts/commute_carbon.py month # after