Not tax advice. Computation tools only. Have a professional check your work before filing.

Use this skill with your AI agent

View on GitHub

Paste this skill into your AI agent's context, or save the file to your project. Works with any AI agent that reads markdown.

gr-efka.md265 lines9.1 KB
v20Greece
Not yet verified by an accountantContact accountant
1---
2name: gr-efka
3description: Use this skill whenever asked about Greek EFKA (e-EFKA / Ενιαίος Φορέας Κοινωνικής Ασφάλισης) social insurance contributions for self-employed individuals. Trigger on phrases like "EFKA contributions", "Greek social insurance", "ελεύθερος επαγγελματίας ασφάλιση", "EFKA categories", "self-employed Greece insurance", or any question about social insurance obligations for a self-employed client in Greece. Covers the 6-category system for main pension, healthcare, and supplementary pension. ALWAYS read this skill before touching any Greece social contributions work.
4version: 2.0
5---
6 
7# Greece EFKA Contributions -- Self-Employed Skill v2.0
8 
9## Section 1 -- Quick reference
10 
11| Field | Value |
12|---|---|
13| Country | Greece (Hellenic Republic) |
14| Authority | e-EFKA (Ενιαίος Φορέας Κοινωνικής Ασφάλισης) |
15| Primary legislation | N.4670/2020 (EFKA reform); N.4387/2016 |
16| Supporting legislation | N.4756/2020; ministerial decisions on categories |
17| System | 6-category fixed monthly amounts (NOT income-based) |
18| Category 1 monthly total | EUR 307 |
19| Category 6 monthly total | EUR 830 |
20| OAED (unemployment) | EUR 10/month additional |
21| Payment frequency | Monthly |
22| Payment deadline | Last business day of each month |
23| Currency | EUR only |
24| Contributor | Open Accountants |
25| Validated by | Pending -- requires validation by Greek λογιστής |
26| Validation date | Pending |
27 
28**Monthly amounts per category (2025):**
29 
30| Cat | Main pension | Health | Supplementary | Total |
31|---|---|---|---|---|
32| 1 | EUR 210 | EUR 55 | EUR 42 | EUR 307 |
33| 2 | EUR 252 | EUR 66 | EUR 51 | EUR 369 |
34| 3 | EUR 315 | EUR 83 | EUR 63 | EUR 461 |
35| 4 | EUR 378 | EUR 100 | EUR 76 | EUR 554 |
36| 5 | EUR 473 | EUR 125 | EUR 95 | EUR 693 |
37| 6 | EUR 567 | EUR 150 | EUR 113 | EUR 830 |
38 
39---
40 
41## Section 2 -- Required inputs and refusal catalogue
42 
43### Required inputs
44 
45Before computing, you MUST obtain:
46 
471. **Professional category** -- freelancer, sole proprietor, or liberal profession?
482. **Years of activity** -- determines minimum category
493. **Chosen category** -- new entrants start at 1; may choose higher
504. **Is the client also employed?** -- parallel insurance rules
515. **Registered with which professional body?** -- engineers, lawyers, doctors may have additional rules
52 
53**If professional category is unknown, STOP.**
54 
55### Refusal catalogue
56 
57**R-GR-EFKA-1 -- Farmer transition.** Trigger: client transitioning from OGA (agricultural) to freelance. Message: "OGA-to-EFKA transitional rules require specialist review. Escalate."
58 
59**R-GR-EFKA-2 -- Professional body contributions.** Trigger: question about bar/TEE/medical chamber rates. Message: "Professional body contributions are separate from EFKA and set independently. Confirm with the relevant chamber."
60 
61### Prohibitions
62 
63- NEVER compute EFKA based on income -- the category system uses FIXED monthly amounts
64- NEVER allow a client to choose a category below their minimum based on years
65- NEVER ignore OAED (EUR 10/month) -- applies to all self-employed
66- NEVER confuse EFKA contributions with professional-body contributions
67- NEVER state parallel insurance allows an offset -- contributions are additive
68- NEVER advise on category optimization without flagging for reviewer
69- NEVER present contributions as income-dependent -- they are fixed per category
70- NEVER forget late payment surcharges -- 3% per month
71 
72---
73 
74## Section 3 -- The 6-category system
75 
76**Legislation:** N.4670/2020, art. 35-39
77 
78### Mandatory minimum category by years of activity
79 
80| Years since registration | Minimum category |
81|---|---|
82| 0-5 years | Category 1 |
83| 6-10 years | Category 2 |
84| 11-15 years | Category 3 |
85| 16-20 years | Category 4 |
86| 21-25 years | Category 5 |
87| 26+ years | Category 6 |
88 
89A professional can always choose a HIGHER category than their minimum, but never a lower one. Choice is made annually by February and is irreversible for the year.
90 
91---
92 
93## Section 4 -- Additional contributions and category selection
94 
95### OAED (unemployment)
96 
97All self-employed: EUR 10/month in addition to category amounts.
98 
99### ETEAEP (lump-sum benefit fund)
100 
101Some professions (lawyers, engineers, doctors) have additional professional-body contributions separate from EFKA.
102 
103### Category selection strategy
104 
105Higher category = higher pension entitlement in retirement but higher current cost. Advising on optimal choice requires retirement benefit modelling. Flag for reviewer.
106 
107---
108 
109## Section 5 -- Computation steps
110 
111### Step 5.1 -- Determine minimum category
112 
113```
114years_active = current_year - year_of_registration
115 
116IF years_active <= 5: min_category = 1
117ELIF years_active <= 10: min_category = 2
118ELIF years_active <= 15: min_category = 3
119ELIF years_active <= 20: min_category = 4
120ELIF years_active <= 25: min_category = 5
121ELSE: min_category = 6
122```
123 
124### Step 5.2 -- Determine chosen category
125 
126```
127chosen_category = max(client_choice, min_category)
128```
129 
130### Step 5.3 -- Calculate contributions
131 
132```
133monthly_total = pension[chosen] + health[chosen] + supplementary[chosen] + OAED (10)
134annual_total = monthly_total x 12
135```
136 
137---
138 
139## Section 6 -- Payment schedule and tax deductibility
140 
141### Payment schedule
142 
143| Obligation | Due date |
144|---|---|
145| Monthly EFKA | Last business day of each month |
146| Payment method | e-EFKA portal or direct debit |
147 
148Late payment: 3% surcharge per month (capped at 100% of principal). Non-payment: KEAO debt collection.
149 
150### Tax deductibility
151 
152| Question | Answer |
153|---|---|
154| Are EFKA contributions deductible? | YES -- from gross income for income tax |
155| Classification | Personal deduction |
156| Which components? | All: pension, health, supplementary, OAED |
157 
158---
159 
160## Section 7 -- Parallel insurance and suspension
161 
162### Concurrent employment and self-employment
163 
164Parallel insurance applies. Client pays EFKA on BOTH activities. No offset.
165 
166### Suspension of activity
167 
168Must formally notify e-EFKA. No contributions during suspension. Health coverage continues up to 12 months after last contribution, then lapses.
169 
170### Very low income
171 
172Income level does NOT affect the contribution amount. Category minimums apply regardless.
173 
174---
175 
176## Section 8 -- Edge case registry
177 
178### EC1 -- New professional, first year
179**Situation:** Registered in October 2025.
180**Resolution:** Category 1. Monthly EUR 317 (EUR 307 + EUR 10 OAED). Pro-rated from registration.
181 
182### EC2 -- Professional with 12 years
183**Situation:** Registered since 2013.
184**Resolution:** Minimum category 3. Monthly EUR 471. May choose 4, 5, or 6.
185 
186### EC3 -- Senior professional, 22 years
187**Situation:** Registered 22 years ago.
188**Resolution:** Minimum category 5. Monthly EUR 703. Annual EUR 8,436.
189 
190### EC4 -- Choosing higher category
191**Situation:** 3 years registered, chooses Category 4.
192**Resolution:** Category 4 (above minimum). Monthly EUR 564. Annual EUR 6,768.
193 
194### EC5 -- 30-year veteran
195**Situation:** 30 years registered.
196**Resolution:** Category 6 mandatory. Monthly EUR 840. Annual EUR 10,080.
197 
198### EC6 -- Non-resident EU freelancer
199**Situation:** EU citizen providing services in Greece.
200**Resolution:** EU Regulation 883/2004. A1 certificate required. Escalate.
201 
202---
203 
204## Section 9 -- Reviewer escalation protocol
205 
206When a situation requires reviewer judgement:
207 
208```
209REVIEWER FLAG
210Tier: T2
211Client: [name]
212Situation: [description]
213Issue: [what is ambiguous]
214Options: [possible treatments]
215Recommended: [most likely correct treatment and why]
216Action Required: Qualified λογιστής must confirm before advising client.
217```
218 
219When a situation is outside skill scope:
220 
221```
222ESCALATION REQUIRED
223Tier: T3
224Client: [name]
225Situation: [description]
226Issue: [outside skill scope]
227Action Required: Do not advise. Refer to qualified λογιστής. Document gap.
228```
229 
230---
231 
232## Section 10 -- Test suite
233 
234### Test 1 -- New freelancer, Category 1
235**Input:** First year, age 28.
236**Expected output:** Category 1. Monthly EUR 317. Annual EUR 3,804.
237 
238### Test 2 -- 8 years, minimum category
239**Input:** 8 years registered.
240**Expected output:** Category 2. Monthly EUR 379. Annual EUR 4,548.
241 
242### Test 3 -- 22 years, minimum
243**Input:** 22 years registered.
244**Expected output:** Category 5. Monthly EUR 703. Annual EUR 8,436.
245 
246### Test 4 -- Choosing higher
247**Input:** 3 years, chooses Category 4.
248**Expected output:** Monthly EUR 564. Annual EUR 6,768.
249 
250### Test 5 -- 30-year veteran
251**Input:** 30 years.
252**Expected output:** Category 6. Monthly EUR 840. Annual EUR 10,080.
253 
254### Test 6 -- Concurrent employment
255**Input:** Employed + freelancing, 5 years.
256**Expected output:** Self-employed EFKA Category 1 EUR 317/month in addition to employment EFKA.
257 
258---
259 
260## Disclaimer
261 
262This skill and its outputs are provided for informational and computational purposes only and do not constitute tax, legal, or financial advice. Open Accountants and its contributors accept no liability for any errors, omissions, or outcomes arising from the use of this skill. All outputs must be reviewed and signed off by a qualified professional (such as a CPA, EA, tax attorney, or equivalent licensed practitioner in your jurisdiction) before filing or acting upon.
263 
264The most up-to-date, verified version of this skill is maintained at [openaccountants.com](https://openaccountants.com). Log in to access the latest version, request a professional review from a licensed accountant, and track updates as tax law changes.
265 

Run this skill, then get an accountant to check it

After running the full skill pack in your AI agent, sign up and upload your worksheet. We'll connect you with a trusted accountant in our network who can review your numbers before you file.

Quality

Q3: AI-drafted

AI-generated with structure and citations. Not independently verified.

Needs deep research against tax authority websites to reach Q2.

Accountant Review

Not yet reviewed
0/32

About

Use this skill whenever asked about Greek EFKA (e-EFKA / Ενιαίος Φορέας Κοινωνικής Ασφάλισης) social insurance contributions for self-employed individuals. Trigger on phrases like "EFKA contributions", "Greek social insurance", "ελεύθερος επαγγελματίας ασφάλιση", "EFKA categories", "self-employed Greece insurance", or any question about social insurance obligations for a self-employed client in Greece. Covers the 6-category system for main pension, healthcare, and supplementary pension. ALWAYS read this skill before touching any Greece social contributions work.

GRty-2025

Use this skill

This skill is open source and free to use in any AI agent. Copy it, download it, or clone the repo. If you find an error, flag it — a licensed accountant will review.

4 of 4 in the GR workflow: