reajuste-impact-calculator

reajuste-impact-calculator is a skill for Claude Code from trycomp-io/comp-skills. It costs 119 tokens per session (1,381 once invoked), scanned A, original, MIT.

A calculator for estimating the cost of salary increases, including employer charges, from employee roster data and an increase rule.

In plain words
What is it for?
Use it to model flat percentage increases or rules by level or department, then review total cost, payroll impact, and group breakdowns.
Why use it?
It shows the monthly and yearly payroll effect of a raise plan instead of leaving the financial impact to manual spreadsheet work.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code.

Part of the comp-skills plugin — 37 skills shipped together

Good fit Use it to model flat percentage increases or rules by level or department, then review total cost, payroll impact, and group breakdowns.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/trycomp-io/comp-skills/reajuste-impact-calculator
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.

Any agent
npx skills add trycomp-io/comp-skills --skill reajuste-impact-calculator
Clone the repo
git clone --depth 1 https://github.com/trycomp-io/comp-skills

Made for: Claude Code.

Or install comp-skills, the plugin that ships this one along with the rest of its 37 skills.

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 reajuste-impact-calculator

README.md
[![agentmods](https://agentmods.dev/badge/skills/trycomp-io/comp-skills/reajuste-impact-calculator/github.svg)](https://agentmods.dev/skills/trycomp-io/comp-skills/reajuste-impact-calculator)
Your own site
<a href="https://agentmods.dev/skills/trycomp-io/comp-skills/reajuste-impact-calculator"><img src="https://agentmods.dev/badge/skills/trycomp-io/comp-skills/reajuste-impact-calculator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for reajuste-impact-calculator

Your own site · 80×15
<a href="https://agentmods.dev/skills/trycomp-io/comp-skills/reajuste-impact-calculator"><img src="https://agentmods.dev/badge/skills/trycomp-io/comp-skills/reajuste-impact-calculator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 119 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,381 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00119 $0.01381
Opus 5 $0.00060 $0.00691
Sonnet 5 $0.00024 $0.00276
Haiku 4.5 $0.00012 $0.00138

Measured 10d ago against content hash 10c04ac776f9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

reajuste-impact-calculator 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 10d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (eam_client.py, scripts/reajuste_impact.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.

skills/reajuste-impact-calculator/SKILL.md · 132 lines

How it starts

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

Reajuste Impact Calculator

Calcula o impacto financeiro completo (incluindo encargos) de um reajuste salarial: dissídio, ciclo de mérito, ajustes pontuais. Diferencia regras por nível, área ou flat.

Dual-mode operation (Code + Cowork)

  • Claude Code: python3 scripts/reajuste_impact.py ... (CSV roster).
  • Claude Cowork: cálculo inline com regras passadas conversacionalmente OU com CSV pequeno colado.

Inline calculation logic (Cowork)

Constante chave

Full load factor: 1,555 (encargos patronais ~35,8% + provisões ~19,7%)

Reajuste de R$ 1 em salário custa R$ 1,555 pro empregador.

Modo Flat

Todos os colaboradores ganham X%.

  1. delta_salário_total_mensal = folha_atual × (X/100)
  2. delta_com_encargos_mensal = delta_salário × 1,555
  3. delta_anual = delta_com_encargos_mensal × 12
  4. % impacto na folha = X% (em salário) ou X% × 1,555 (em custo total)

Modo Por nível (ou por área)

CHRO informa regra: {"Junior": 8, "Pleno": 5, "Senior": 4, "Manager": 3} (% por nível).

Pra cada colaborador:

  1. aumento_individual = salário × (regra[nível] / 100)
  2. Soma todos: delta_salário_mensal_total
  3. Aplica encargos: × 1,555
  4. Anualiza: × 12

Output markdown (Cowork)

## Impacto de reajuste: [Flat X% | Por nível | Por área]

**Headcount**: N · **Folha atual**: R$ X

### Delta
- ∆ salários mensal: R$ X (Y%)
- ∆ com encargos (×1,555): R$ X /mês
- **∆ anual com encargos: R$ X**

### Por grupo
| Grupo | HC | % | ∆ mensal (com encargos) |
|---|---|---|---|
| Junior | N | 8% | R$ X |
| Senior | N | 4% | R$ X |
| ... | ... | ... | ... |

Princípio crítico pra defender ao CFO: sempre comunique anualizado com encargos. CHRO esquece o ×1,555, CFO não.

Quando usar

Ativa em frases como:

  • "impacto de reajuste"
  • "custo de dissídio"
  • "simular mérito"
  • "quanto custa dar X% de aumento"
  • "impacto na folha"
  • "ciclo de mérito"
  • "negociação sindical, quanto sai"

NÃO ativa para: equidade salarial (usar paygap-analysis-generator); custo total de folha (usar custo-folha-simulator); rescisão (usar custo-demissao-calculator).

Read the full file on GitHub · 132 lines

Files

What ships with it

3 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. 10d ago First seen · 132 lines · 119 tokens per session scan A 10c04ac776f9

Subscribe to this mod's changes

reajuste-impact-calculator is a skill published in the GitHub repository trycomp-io/comp-skills (2 stars, last pushed 3mo ago), licensed MIT. It adds 119 tokens to every session and 1,381 once invoked, about $0.0006 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-31.

Related

Other skills, from other repositories

cwicr-report-generator

Generate professional cost estimation reports from CWICR calculations. HTML, PDF, Excel outputs with charts and breakdowns.

datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction · 29 tokens

xlsx-financials

Produce formatted .xlsx financial statement workbooks from XBRL statement data. Uses Bash + openpyxl (Python) following Anthropic FSI xlsx-author conventions for professional Excel output with calculation arc cross-validation.

agentii-ai/agentii-investment-intelligence · 48 tokens

audit-xls

Audit spreadsheet, formula error detection, hardcoded cell finder, cross-sheet reference audit, workbook auditor, Excel model audit, financial model QA, spreadsheet review, cell dependency trace, formula integrity check.

agentii-ai/agentii-investment-intelligence · 42 tokens

issue-invoice

Fill a monthly hourly invoice on Google Sheets from GitHub PRs and Jira tickets, one tab per month per client. Use when the user mentions an invoice, timesheet, billable hours, logging monthly work, rolling over an invoice month, or reconciling PRs and tickets to hours.

vanducng/skills · 64 tokens

wps-salary

A Chinese payroll calculator and salary-slip generator. It calculates employee deductions for social insurance, housing funds, and personal income tax, then creates Excel salary slips.

Bwkyd/wps-skills · 67 tokens

wps-budget

A spreadsheet generator for planning and tracking budgets, with categories, subtotals, totals, and comparison calculations. It supports department, project, event, household, and marketing budgets.

Bwkyd/wps-skills · 82 tokens