negotiate_total_comp
Calculate annualized total compensation breakdown from base salary, variable bonus, signing bonus, and equity grants to evaluate job offers and support salary negotiations.
Instructions
Compute annualised total compensation breakdown.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| base | Yes | Annual base salary. | |
| variable_pct | No | Variable as fraction of base (e.g. 0.15 = 15 %). | |
| signing | No | One-time signing bonus (annualised over ``years``). | |
| equity_total | No | Total equity grant value (annualised over ``years``). | |
| years | No | Vesting/amortisation period (default 4). | |
| currency | No | Currency code (default ``"EUR"``). | EUR |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| base | Yes | ||
| variable | No | ||
| signing | No | ||
| equity_annualized | No | ||
| total | Yes | ||
| currency | No | EUR |