Skip to content

Claude Skill

Bogdan Cristea edited this page Jun 19, 2026 · 8 revisions

PFA Fiscal Skill

pfa-fiscal is an AI assistant skill for estimating annual Romanian PFA taxes for a Persoană Fizică Autorizată working in sistem real.

It calculates:

  • Impozit pe venit: 10%
  • CAS: pension contribution, 25% on the applicable capped base
  • CASS: health contribution, 10% using the fiscal-year-specific model
  • Total taxes
  • Estimated take-home income

The skill is designed for Romanian freelancers, consultants, and self-employed professionals who want a clear breakdown of their annual fiscal obligations.

This skill is informational only. For official tax filing, Declarația Unică, or edge cases, consult an accountant or ANAF.


What The Skill Does

The skill asks for or uses:

  • Fiscal year
  • Gross income, venit brut
  • Deductible expenses, cheltuieli deductibile
  • Confirmed Romanian minimum gross salary for that year

It then computes:

Venit net = Venit brut - Cheltuieli deductibile

Then it calculates:

  1. CAS
  2. CASS
  3. Impozit pe venit
  4. Total taxe
  5. Venit rămas

The output includes formulas, tax brackets, thresholds, and a final summary table.


Supported Scope

Currently supported:

  • PFA taxation in sistem real
  • Fiscal-year-aware CAS/CASS calculation
  • Full Romanian-language fiscal breakdown
  • Net take-home estimation

Not yet supported:

  • Normă de venit
  • VAT / TVA
  • Microcompany comparisons
  • Employee salary comparisons
  • Official form generation for Declarația Unică

Example Prompt

Calculează taxele PFA pentru 2025.

Venit brut: 120.000 RON
Cheltuieli deductibile: 20.000 RON
Salariu minim lunar: 4.050 RON

Example Output

Venit net = 120.000 - 20.000 = 100.000 RON

CAS:
Venit net >= P24
Baza CAS = 97.200 RON
CAS = 25% × 97.200 = 24.300 RON

CASS:
Venit net >= P24
Baza CASS = 97.200 RON
CASS = 10% × 97.200 = 9.720 RON

Impozit pe venit:
Baza = Venit net - CAS
Baza = 100.000 - 24.300 = 75.700 RON
Impozit = 10% × 75.700 = 7.570 RON

Total taxe = 41.590 RON
Venit rămas = 58.410 RON

Screenshot

Add a screenshot here after generating an example result.

![PFA Fiscal Skill example](./images/pfa-fiscal-example.png)

Suggested screenshot content:

  • User prompt with dummy income values
  • Skill response showing CAS, CASS, income tax, total taxes, and take-home income
  • Final summary table

Installation

Install In Anthropic Claude Code

Claude Code supports filesystem-based skills. A skill is a folder containing a SKILL.md file.

1. Copy the skill folder

Copy the pfa_fiscal folder into your Claude skills directory:

mkdir -p ~/.claude/skills
cp -R pfa_fiscal ~/.claude/skills/

The final structure should look like this:

~/.claude/skills/
└── pfa_fiscal/
    └── SKILL.md

2. Restart Claude Code

Restart Claude Code so it can discover the new skill.

3. Use the skill

Ask Claude something like:

Calculează taxele PFA pentru 2025 cu venit brut 120000 RON și cheltuieli deductibile 20000 RON.

Claude should automatically detect that this is a PFA fiscal calculation and load the skill.

You can also explicitly refer to it:

Use the pfa-fiscal skill to calculate Romanian PFA taxes.

Install In Claude.ai

If your Claude.ai plan supports Skills:

  1. Zip the skill folder:
zip -r pfa_fiscal.zip pfa_fiscal
  1. Open Claude.ai.
  2. Go to Settings.
  3. Open Skills.
  4. Upload pfa_fiscal.zip.
  5. Enable the skill.
  6. Start a new chat and ask for a PFA tax calculation.

Example:

Folosind skill-ul PFA Fiscal, calculează taxele pentru un PFA în sistem real.
Venit brut: 120000 RON
Cheltuieli deductibile: 20000 RON
An fiscal: 2025

Install In ChatGPT

ChatGPT also supports Skills in supported workspaces/accounts.

Option 1: Create A Skill In ChatGPT

  1. Open ChatGPT.
  2. Go to Skills.
  3. Choose New skill or Create with editor.
  4. Create a new skill named:
pfa-fiscal
  1. Paste the contents of pfa_fiscal/SKILL.md.
  2. Save and install the skill.
  3. Start a new chat and ask for a PFA tax calculation.

Example prompt:

Calculează taxele PFA pentru 2025:
- venit brut: 120000 RON
- cheltuieli deductibile: 20000 RON

Option 2: Install From A Shared Workspace Skill

If the skill is shared in your ChatGPT workspace:

  1. Go to Skills.
  2. Open Shared with you.
  3. Find pfa-fiscal.
  4. Click the more options menu.
  5. Select Install.

Important Notes

  • Always confirm the fiscal year before computing.
  • Always confirm the Romanian minimum gross wage used for that year.
  • The skill currently focuses on PFA taxation in sistem real.
  • The result is an estimate, not accounting or legal advice.

References

Clone this wiki locally