by @skills-il
Guide Israeli startup operations including company formation, Innovation Authority grants, investment agreements, R&D tax benefits, and employee stock options (Option 102). Use when user asks about starting a company in Israel, IIA grants, "Innovation Authority", SAFE agreements (Israeli), convertible notes, Option 102, employee stock options in Israel, R&D tax benefits, preferred enterprise, or Israeli startup legal/financial setup. Do NOT use for non-Israeli company formation or international tax advice. Always recommend consulting with Israeli lawyer and accountant for binding decisions.
npx skills-il add skills-il/developer-tools --skill israeli-startup-toolkitIMPORTANT DISCLAIMER: This skill provides general guidance only. Israeli corporate law, tax law, and securities regulation are complex. Always consult with a licensed Israeli lawyer and accountant before making binding decisions.
| Stage | Typical Needs | Key Actions |
|---|---|---|
| Idea / Pre-seed | Company formation, initial funding | Register Ltd, apply to Tnufa |
| Seed | First investment, team building | SAFE/convertible note, Option 102 plan |
| Series A | Growth funding, scaling | Priced round, preferred enterprise status |
| Growth | Expansion, international | IP regime, binational grants |
Register an Israeli Ltd:
Step-by-step registration:
1. Choose company name
- Check availability: ica.justice.gov.il
- Must be unique, Hebrew or English
- Suffix: Ltd
2. Prepare Articles of Association (takanon)
- Standard template available from Companies Registrar
- Customize: share classes, board composition, transfer restrictions
- Recommended: Use lawyer-drafted articles for startups
3. Appoint initial directors
- Minimum: 1 director
- Israeli residency not required (but practical for banking)
- Director ID (teudat zehut) or passport for foreign directors
4. Register online
- Portal: ica.justice.gov.il
- Fee: ~2,600 NIS
- Timeline: 3-7 business days
- Documents: Articles, director appointments, registered address
5. Post-registration
- Open corporate bank account (Bank Leumi, Hapoalim, Discount)
- Register for tax at local tax office (pakid shuma)
- Register for VAT if expected revenue exceeds threshold
- Register for National Insurance (Bituach Leumi) as employerFounder share allocation example:
def calculate_founder_allocation(founders, vesting_months=48, cliff_months=12):
"""Calculate founder share allocation with vesting."""
total_shares = 10_000_000 # Common Israeli startup starting point
allocation = []
for founder in founders:
shares = int(total_shares * founder["percentage"] / 100)
allocation.append({
"name": founder["name"],
"shares": shares,
"percentage": founder["percentage"],
"vesting_months": vesting_months,
"cliff_months": cliff_months,
"shares_at_cliff": shares * cliff_months // vesting_months,
"monthly_vesting_after_cliff": shares // vesting_months,
"share_class": "Ordinary",
})
return {
"total_authorized": total_shares,
"allocations": allocation,
"unallocated": total_shares - sum(a["shares"] for a in allocation),
"note": "Reserve 10-15% for employee option pool (ESOP)"
}IIA program selection:
| Program | Stage | Funding | Max Amount | Repayment |
|---|---|---|---|---|
| Tnufa | Pre-seed | Up to 85% | 800K NIS | Royalties 3-5% |
| R&D Fund | Seed-Growth | Up to 50% | Per budget | Royalties 3-5% |
| Incubator | Early stage | Up to 85% | Per program | Royalties |
| BIRD (US-Israel) | Any | Up to 50% | $1M | Royalties |
| Horizon Europe | Any | Varies | Varies | Depends on track |
Grant application checklist:
IIA R&D Fund Application:
- Company registered in Israel
- R&D conducted primarily in Israel
- IP owned by the company (not founders personally)
- Technological innovation (not just business model)
- Detailed R&D plan (12-24 months)
- Budget breakdown (salaries, subcontractors, materials, equipment)
- Team qualifications (CVs of key R&D personnel)
- Market analysis and business potential
- No parallel funding for same R&D from other government sources
- Commitment to report progress and financials
Application portal: innovationisrael.org.il
Review period: 2-4 months typically
Approval rate: ~40-50% for R&D FundKey IIA restrictions:
Israeli SAFE template structure:
Israeli SAFE -- Key Terms:
1. Investment Amount: [Amount] NIS or USD
2. Valuation Cap: [Cap] (pre-money)
3. Discount Rate: [15-25%] typical
4. Governing Law: Laws of the State of Israel
5. Dispute Resolution: Tel Aviv courts / arbitration
6. Conversion Trigger: Equity Financing of at least [Amount]
7. MFN Clause: [Yes/No] -- Most Favored Nation
8. Pro-rata Rights: [Yes/No] -- right to participate in next round
9. Israeli Tax: Subject to Israeli tax withholding on conversion
Important Israeli-specific clauses:
- IIA notification (if company received grants)
- Section 102 interaction (for employee investors)
- Israeli securities law exemptions (private placement)
- Anti-money laundering complianceConvertible note vs SAFE comparison:
SAFE Convertible Note
Interest rate: None 5-8% annually
Maturity date: None 12-24 months
Repayment: No Yes (at maturity if no conversion)
Israeli tax: On conversion Interest taxed annually
Complexity: Simple More complex
Investor protection: Lower Higher (debt status)
Common in Israel: Pre-seed/seed Seed/bridge roundsSet up employee stock option plan:
Option 102 Capital Gains Track -- Setup Steps:
1. Draft ESOP (Employee Stock Option Plan)
- Hire Israeli employment/tax lawyer
- Define: pool size, vesting schedule, exercise price, trustee
2. Select ITA-approved trustee
- Major trustees: Bank Leumi Trust, Bank Hapoalim Trust,
IBI Trust, Altshuler Shaham
- Fee: Setup fee + annual per-participant fee
3. File plan with Israel Tax Authority (ITA)
- Submit plan document to local pakid shuma
- 30-day objection period (ITA can object or modify)
- Plan effective after 30 days if no objection
4. Grant options to employees
- Board resolution for each grant
- Option agreement signed by employee
- Trustee notified and manages deposit
5. Vesting and holding period
- Standard: 4-year vesting, 1-year cliff
- 24-month holding period from grant date (for capital gains treatment)
- Shares held by trustee during holding period
6. Exercise and sale
- Employee exercises options (pays exercise price)
- After holding period: capital gains tax (25%)
- Trustee handles withholding and reportingOption 102 tax comparison:
def compare_option_102_tracks(grant_value, exercise_price, sale_price):
"""Compare tax outcomes for Option 102 tracks."""
gain = sale_price - exercise_price
capital_gains_track = {
"track": "Capital Gains (Trustee)",
"holding_period": "24 months",
"tax_rate": 0.25,
"tax_amount": gain * 0.25,
"net_to_employee": gain * 0.75,
"employer_deduction": False,
}
income_track = {
"track": "Income (Trustee)",
"holding_period": "12 months",
"tax_rate": 0.50,
"tax_amount": gain * 0.50,
"net_to_employee": gain * 0.50,
"employer_deduction": True,
}
non_trustee = {
"track": "Non-Trustee (102)",
"holding_period": "None",
"tax_rate": 0.50,
"tax_amount": gain * 0.50,
"net_to_employee": gain * 0.50,
"employer_deduction": True,
}
return [capital_gains_track, income_track, non_trustee]Tax benefit eligibility check:
Preferred Enterprise:
- Conditions: 25%+ revenue from exports
- Tax rate: 7.5% (Area A) or 16% (elsewhere)
- Applies to: Industrial or tech companies
Preferred Technological Enterprise:
- Conditions: Significant R&D activity, IP ownership
- Tax rate: 6% on qualifying IP income (Area A), 12% (elsewhere)
- Additional: Reduced withholding on dividends (4-20%)
R&D Expense Deduction (Section 20a):
- Full deduction of R&D expenses in the year incurred
- Applies to: All R&D conducted in Israel
- No need for IIA approval (separate from grants)
Angel Law (Section 20c):
- Individual investors can deduct up to 5M NIS investment
- Company must be qualifying R&D company
- Investment in first 4 years of company life
- Deduction spread over 3 yearsUser says: "I want to register a new tech startup in Israel with my co-founder" Actions:
User says: "We want to apply for Innovation Authority funding for our AI product" Actions:
User says: "I need to set up stock options for my first 5 employees" Actions:
references/iia-programs-guide.md — Detailed guide to Israel Innovation Authority grant programs including R&D Fund, Tnufa (early stage), incubator programs, BIRD (US-Israel binational), and Horizon Europe tracks. Covers funding percentages, maximum amounts, repayment terms, eligibility requirements, application process, and approval rates. Consult when helping users select the right IIA program or prepare grant applications.references/investment-term-sheets.md — Israeli investment agreement templates including SAFE and convertible note structures with Israeli-specific clauses (IIA notification, Section 102 interaction, Israeli securities law exemptions, anti-money laundering). Consult when drafting or reviewing early-stage investment terms under Israeli law.references/option-102-reference.md — Complete reference for Section 102 of the Israeli Income Tax Ordinance covering all three tracks (Capital Gains Trustee, Income Trustee, Non-Trustee), holding periods, tax rates, employer deduction rules, ITA-approved trustees, filing procedures, and common pitfalls. Consult when setting up an ESOP or advising on employee equity compensation tax implications.Cause: Insufficient technological innovation, weak R&D plan, or budget issues Solution: Request feedback from IIA reviewer, strengthen innovation component, consider reapplying in next cycle. IIA allows resubmission.
Cause: Employee left or shares sold before 24-month holding period Solution: Tax difference applies -- gains taxed as income (up to 50%) instead of capital gains (25%). Trustee will withhold at higher rate. Plan for this in employment agreements.
Cause: IIA-funded IP has transfer restrictions Solution: Apply to IIA for transfer approval. Be prepared to pay transfer fee (up to 6x grant amount). Consider structuring with Israeli subsidiary retaining IP.
Supported Agents
Trust Score
This skill can execute scripts and commands on your system.
This skill can make network requests to external services.
by @skills-il
Manage JFrog Artifactory repositories, artifacts, Docker registry, build info, and Xray security scanning for DevOps workflows. Use when user asks about JFrog, Artifactory, Xray, artifact management, "deploy artifact", Docker registry with Artifactory, build promotion, vulnerability scanning with Xray, or DevOps artifact pipeline. Covers REST API operations, JFrog CLI usage, Docker registry configuration, and security scanning patterns. Do NOT use for general Docker or CI/CD questions unrelated to JFrog.
by @skills-il
Manage media assets through Cloudinary's REST API -- upload, transform, optimize, and deliver images and videos. Use when user asks about image upload, media optimization, image transformations, responsive images, video management, CDN delivery, or mentions Cloudinary specifically. Covers Upload API, Admin API, URL-based transformations, and delivery optimization. Israeli-founded platform (Tel Aviv, 2012). Do NOT use for non-Cloudinary media hosting or local image processing without cloud upload.
by @skills-il
Validate, format, and convert Israeli phone numbers between local and international (+972) formats. Use when user asks to validate Israeli phone number, format phone for SMS, convert to +972, check phone prefix, or implement Israeli phone input validation in code. Handles mobile (050-058), landline (02-09), VoIP (072-077), toll-free (1-800), and star-service numbers. Do NOT use for non-Israeli phone systems or general telecom questions.