carta-compensation-benchmarks

carta-compensation-benchmarks is a skill for Claude Code, Codex from carta/plugins. It costs 207 tokens per session (16,624 once invoked), scanned A, original, Apache-2.0.

A tool for retrieving Carta Total Compensation market benchmarks for a job role at a specified company. The results can include salary, equity, and total cash, and can be returned in chat or a CSV file.

In plain words
What is it for?
Looking up pay benchmarks by job area, focus, level, and track, then displaying the results or exporting them to CSV.
Why use it?
It provides market comparison data when deciding whether compensation for a role is aligned with comparable benchmarks.

Skill for Claude CodeCodex

Installs and runs on its own, but its text points at files inside its plugin — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed. Installing the plugin gets both.

Part of the carta-cap-table plugin — 22 skills, 5 hooks shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/carta/plugins/carta-compensation-benchmarks
Any agent
npx skills add carta/plugins --skill carta-compensation-benchmarks
Clone the repo
git clone --depth 1 https://github.com/carta/plugins

Made for: Claude Code, Codex.

Or install carta-cap-table, the plugin that ships this one along with the rest of its 22 skills, 5 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for carta-compensation-benchmarks

README.md
[![agentmods](https://agentmods.dev/badge/skills/carta/plugins/carta-compensation-benchmarks.svg)](https://agentmods.dev/skills/carta/plugins/carta-compensation-benchmarks)
Your own site
<a href="https://agentmods.dev/skills/carta/plugins/carta-compensation-benchmarks"><img src="https://agentmods.dev/badge/skills/carta/plugins/carta-compensation-benchmarks.svg" alt="Measured on agentmods" height="20"></a>
Per session 207 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 16,624 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00207 $0.16624
Opus 5 $0.00103 $0.08312
Sonnet 5 $0.00041 $0.03325
Haiku 4.5 $0.00021 $0.01662

Measured 5d ago against content hash 51be3dc3a392, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

carta-compensation-benchmarks scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/export_benchmarks.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/carta-cap-table/skills/carta-compensation-benchmarks/SKILL.md · 819 lines

How it starts

The opening of the file, as written. The whole thing — 819 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Benchmark Query

Look up Carta Total Compensation (CTC) market salary and equity benchmarks for a role at a specific corporation.

CRITICAL — Casing rule for ALL user-facing CTC values.

In every part of your response that the user reads — chat narration, status updates, table headers, table cells, chart titles, CSV column values, file summaries, follow-up suggestions — render CTC taxonomy values in Title Case display form, never the UPPER_SNAKE_CASE API enums. This matches the carta-compensation-rolematcher output convention so the plugin's voice is consistent.

Field Use in user-facing text Never
Job area Engineering, Sales, Customer Success, Project Management, Human Resources ENGINEER, SALES, CUSTOMER_SUCCESS, PROJECT_MANAGEMENT, HR
Focus DevOps and Site Reliability, Account Executive, FP&A devops and site reliability, account executive, fp&a
Level Entry, Mid 1, Senior 1, Staff 2, VP 1, C-Level, CEO, Unknown ENTRY, MID1, SENIOR1, STAFF2, VP1, C_LEVEL, UNKNOWN
Track IC, Manager, Executive, Unknown ic, manager, executive, UNKNOWN

The UPPER_SNAKE_CASE enums are only for machine handoff — i.e. the job, level, focus, is_leader parameters you pass to compensation:get:benchmark. Inside the JSON payload for the API call, keep the enum form. Outside the API call, switch to Title Case before any value reaches the user. Even in narration like "Engineering maps to ENGINEER", drop the API enum — say "Pulling Engineering benchmarks for corp 7" instead.

See carta-compensation-rolematcher → "Display → API enum tables" for the full mapping.

Use MCP, not CLI. Every API call in this skill goes through the carta MCP server's mcp__carta__call_tool tool, with compensation:* commands. Do NOT shell out to the carta CLI (carta compensation ..., carta web ..., etc.) — that bypasses the formatters, the 403 handler, and the attribution requirement. The Bash tool is allowed only for writing CSV/JSON files locally, never for calling Carta APIs.

Examples below use shorthand call_tool({"name": "compensation__get__plan", "arguments": {...}}) — read this as mcp__carta__call_tool({"name": "compensation__get__plan", "arguments": {...}}).

CRITICAL — Show only PERCENTILE columns (p25/p50/p75/p90) for all three rating types.

The compensation:get:benchmark response includes both low/mid/high bands AND p25/p50/p75/p90 percentiles. Surface only the percentiles — they are the raw market data. Skip the band fields entirely (they're a derived corp-specific target band that adds noise without adding information for benchmark queries).

Every output (chat reply, CSV, JSON) MUST include all three rating types: salary, equity, AND total cash. Don't stop at salary.

Cowork vs everywhere else — pick ONE chat surface, not both

Where the benchmark numbers actually appear depends on the client:

Client Chat reply Live artifact panel
Artifact callable One-line acknowledgement + the data-source attribution line. NO markdown percentile tables. ✅ Renders the percentile tables
Claude Code, Claude Desktop, claude.ai ✅ Renders the markdown tables (the "Chat reply format" below) + the attribution line Not available — skip the artifact path

Anti-patterns:

  • ❌ In Cowork, rendering the markdown percentile tables AND the artifact panel — the data appears twice, the chat reply is noise.
  • ❌ In Claude Code / Desktop / claude.ai, skipping the markdown tables on the assumption an artifact will pick up the slack — the artifact doesn't render there, so the user gets nothing.

The Excel / CSV export paths are unchanged — both clients can request a file export and it works the same way regardless.

Chat reply format (single role) — Claude Code / Desktop / claude.ai only

Skip this entire section when running in Cowork — the artifact panel renders the same percentile data and a markdown duplicate is noise. Use the one-line acknowledgement format from the "Live artifact" section below instead.

Three small tables, one per rating type. Each has 4 columns: P25, P50, P75, P90.

## Market Benchmark: [Role] at [Company]

**Salary**
| P25 | P50 | P75 | P90 |
|-----|-----|-----|-----|
| $145,000 | $164,000 | $186,000 | $210,000 |

**Total Cash Compensation (TCC)**
| P25 | P50 | P75 | P90 |
|-----|-----|-----|-----|
| $164,000 | $185,000 | $210,000 | $237,000 |

**Equity (4-Year Grant)**
| Metric | P25 | P50 | P75 | P90 |
|--------|-----|-----|-----|-----|
| FD % | 0.030% | 0.040% | 0.050% | 0.144% |
| Shares | 18,620 | 24,745 | 30,870 | 88,444 |
| Notional value | $100,000 | $133,000 | $165,000 | $474,000 |

(For peer groups ≥ $500M post money — `peer_group.notional_available: true` — put **Notional value** as the first row instead.)

**Geo Adjustment:** [location] (X.XX× salary, X.XX× equity)

---
*Data source: Companies with [peer_group_dimension_phrase] [peer_group_label]. Benchmarks released [Month YYYY].*

The [peer_group_dimension_phrase] varies by peer_group.dimension — see "Required attribution" below for the three exact phrasings. Do NOT hardcode post money valuations between.

CSV format (bulk)

One row per (job, ladder, level). Default column order (peer group < $500M post money):

job, ladder, level, currency,
salary_p25, salary_p50, salary_p75, salary_p90,
tcc_p25, tcc_p50, tcc_p75, tcc_p90,
equity_fd_pct_p25, equity_fd_pct_p50, equity_fd_pct_p75, equity_fd_pct_p90,
equity_shares_p25, equity_shares_p50, equity_shares_p75, equity_shares_p90,
equity_notional_p25, equity_notional_p50, equity_notional_p75, equity_notional_p90

For peer groups ≥ $500M post money (peer_group.notional_available: true), notional comes first:

..., equity_notional_p25..p90, equity_fd_pct_p25..p90, equity_shares_p25..p90

Field source map (from each benchmarks[i] entry):

  • salary_p*salary_benchmarks.percentiles.{p25,p50,p75,p90}
  • tcc_p*tcc_benchmarks.percentiles.{p25,p50,p75,p90}
  • equity_shares_p*equity_benchmarks.percentiles.{p25,p50,p75,p90}.as_shares
  • equity_fd_pct_p*equity_benchmarks.percentiles.{p25,p50,p75,p90}.as_fd_percentage
  • equity_notional_p*equity_benchmarks.percentiles.{p25,p50,p75,p90}.as_notional_value
  • currencysalary_benchmarks.currency_code

Note: equity percentiles are nested objects (percentiles.p25.as_shares, etc.), not flat values like salary/tcc.

If a column's source field is missing for a particular row (e.g. some roles have no equity), leave that cell blank — do not invent zeros and do not drop the column.

Anti-patterns:

  • ❌ Showing the user a low/mid/high table. Those are the corp's pay-band target, not market data — skip them.
  • ❌ CSV with salary_low / salary_mid / salary_high columns instead of percentile columns.
  • ❌ Salary-only output. The user asked for "benchmarks" — show all three rating types.
  • ❌ Skipping TCC because "the user said sales benchmarks" — TCC IS a benchmark.

Read the full file on GitHub · 819 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 819 lines · 207 tokens per session scan A 51be3dc3a392

Subscribe to this mod's changes

carta-compensation-benchmarks is a skill published in the GitHub repository carta/plugins (12 stars, last pushed today), licensed Apache-2.0. It adds 207 tokens to every session and 16,624 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

surf

Use this skill — NOT browser or webfetch — for ALL Surf crypto-data calls. 83 endpoints at localhost:8402/v1/surf/ covering CEX/DEX markets, on-chain SQL over 80+ ClickHouse tables (Ethereum, Base, Arbitrum, BSC, TRON, HyperEVM, Tempo), 100M+ labeled wallets, prediction markets (Polymarket + Kalshi), social/CT…

BlockRunAI/ClawRouter · 130 tokens

polymarket-trading

Use when the user wants to actually PLACE, manage, or redeem bets on Polymarket (not just read odds — that's the blockrunpredexon data tools). Covers setup (deposit wallet, funding, approvals), buy/sell with confirm gating, positions, redeeming winnings, geoblock handling, and the end-to-end flow.

BlockRunAI/ClawRouter · 76 tokens

grocery-prices

A skill to calculate grocery prices with country-specific taxes.

google/adk-go · 16 tokens

skill-council

Run a configurable multi-LLM council with personas, budget caps, synthesis, veto gates, and optional implementation handoff.

nyldn/claude-octopus · 30 tokens

predexon

Use this skill — NOT browser or webfetch — for ALL Polymarket, Kalshi, Limitless, Opinion, Predict.Fun, dFlow, UMA oracle, and prediction market data. Provides structured API at localhost:8402/v1/pm/ for markets, cross-venue search, leaderboard, smart money, wallet analytics, wallet identity & clustering, UMA…

BlockRunAI/ClawRouter · 84 tokens

release

Release a new version of the DevoxxGenie IntelliJ plugin — prompt for the target version, bump it in the build files, write a curated CHANGELOG.md entry and plugin.xml change-notes from the git/PR history since the last tag, build to verify, then commit, tag, and publish a matching GitHub release. Use this whenever…

devoxx/DevoxxGenieIDEAPlugin · 121 tokens