From israel-agent-skills
Use when the user wants to find upcoming conferences, professional events, summits, expos, or industry meetups happening in Israel — by topic (tech, AI, biomed, finance, marketing, HR, cyber, startup), by city (Tel Aviv, Jerusalem, Haifa), by date window, or in general ("what conferences are coming up in Israel", "any AI events in Tel Aviv next month", "כנסים בישראל", "אירועים מקצועיים", "tech conferences Israel"). Checks a curated whitelist of Israeli event aggregators FIRST (events.co.il, conferenceindex.org, IVC, ICX, dev.events) before falling back to general web search.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin israel-agent-skillsThis skill uses the workspace's default tool permissions.
Find upcoming conferences and professional events in Israel. The skill enforces a **priority order**: hit the curated whitelist of Israel-focused event aggregators before doing any open web search, so results are anchored in known-good sources rather than ad-spam.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
Find upcoming conferences and professional events in Israel. The skill enforces a priority order: hit the curated whitelist of Israel-focused event aggregators before doing any open web search, so results are anchored in known-good sources rather than ad-spam.
| # | URL | Coverage | Language | Notes |
|---|---|---|---|---|
| 1 | https://events.co.il/ | General — business, marketing, HR, tech, professional | Hebrew | Largest Israeli professional event listing site |
| 2 | https://events.co.il/events?locale=he | Same as #1 — direct events feed | Hebrew | Use this URL if the homepage is too marketing-heavy |
| 3 | https://conferenceindex.org/conferences/israel | Academic / scientific conferences in Israel | English | Global academic index, Israel filter |
| 4 | https://www.ivc-online.com/Events | VC, startup, investment, hi-tech | English | IVC Research Center events feed |
| 5 | https://www.icx.co.il/לוח-הכנסים-המקצועיים | Professional conferences (medical, legal, accounting, engineering) | Hebrew | "לוח הכנסים המקצועיים" — Israel's professional conference board |
| 6 | https://dev.events/AS/IL/tech | Developer / tech conferences | English | Clean structured listing, easiest to parse |
Only after these have been consulted should an open web search be used (and only to fill in gaps — e.g. a niche topic the aggregators miss).
For most user queries, the right pattern is:
WebFetch on each whitelist URL in order, asking the model to extract events matching the user's filters (topic, city, date window). Stop early if you have enough relevant results.WebSearch for "upcoming [topic] conference Israel 2026".python3 scripts/fetch_conferences.py # fetch all whitelist URLs, print raw text
python3 scripts/fetch_conferences.py --source dev # only dev.events
python3 scripts/fetch_conferences.py --list-sources # show source keys
python3 scripts/fetch_conferences.py --json # JSON envelope per source
The script is a thin fetch+strip helper — it does not try to parse every aggregator's bespoke HTML. It returns cleaned text/HTML per source, ready to hand to the LLM for extraction. This avoids brittle scrapers breaking when sites redesign.
events → events.co.il homepageevents-feed → events.co.il direct events feedconferenceindex → conferenceindex.org Israel pageivc → ivc-online.com eventsicx → icx.co.il professional conferences boarddev → dev.events Israel/techWhen the user's request is broad ("conferences in Israel"), ask or assume:
events.co.il and icx.co.il are Hebrew-first — translate event titles to English in the final summary unless the user asked in Hebrew.conferenceindex.org is global; many of its "Israel" listings are call-for-papers far in advance — flag dates clearly.ivc-online.com skews to paid VC events — useful for startup/investor scene, less so for general professional development.