Install
openclaw skills install @ssidharhubble/freelance-rate-calculatorCompute the hourly rate, day rate, and monthly revenue target a freelancer needs to hit a specific take-home income, correctly accounting for unbillable hours, business expenses, self-employment tax, and profit margin — then convert that hourly rate into a fixed-price project quote with a scope-creep risk buffer. Built for freelancers, consultants, and AI agent operators pricing their own or an agent's billable time. Fills a gap next to freelance-proposal and freelance-income-tracking skills, which help you find and log work but don't tell you what to actually charge. Pure Python, no external API or account required.
openclaw skills install @ssidharhubble/freelance-rate-calculatorTwo calculators in one CLI: (1) target income → recommended hourly/day/monthly rate, correctly grossing up for taxes and grossing down for realistic billable hours, and (2) hourly rate + hour estimate → a fixed-price project quote with a risk buffer for scope creep.
python3 scripts/rate_calc.py rate --target-income 100000 \
--work-weeks 48 --billable-hours 25 --expenses 6000 --tax-rate 28 --margin 10
python3 scripts/rate_calc.py project --hourly-rate 95 --hours 40 --buffer 15
python3 scripts/rate_calc.py rate --target-income 100000 --json # machine-readable
--billable-hours: hours you can realistically bill, not total hours worked. Most freelancers bill 50-60% of a working week once admin, sales, and unpaid overhead are excluded — defaulting to 25/week assumes a ~40-50h working week.--tax-rate: effective rate (self-employment + income tax combined) used to gross the post-tax target up to required pre-tax revenue.--margin: buffer/reinvestment on top of break-even, not pure profit — covers slow months, tools, and growth.--buffer (project mode): risk margin for underestimated hours and scope creep on fixed-price work.rate mode: recommended hourly rate, 8-hour day rate, weekly and monthly revenue targets, plus the pre-tax revenue figure the math is built from. project mode: base project price and the buffered recommended quote.