Developers building apps for Jewish or Israeli audiences often need Shabbat times and Jewish calendar data. Manually calculating these from astronomical tables or maintaining your own calendar logic is error-prone and complex.
Author: @hoodini
Access Shabbat candle lighting times, Havdalah times, Jewish holidays, and Hebrew date conversion via the Hebcal API. Use when building apps that need Jewish calendar data for any location worldwide.
npx skills-il add hoodini/ai-agents-skills/skills/shabbat-timesAccess Shabbat times and Jewish calendar data via the Hebcal API.
const response = await fetch(
'https://www.hebcal.com/shabbat?cfg=json&geonameid=5128581&M=on'
);
const data = await response.json();const url = new URL('https://www.hebcal.com/shabbat');
url.searchParams.set('cfg', 'json');
url.searchParams.set('geonameid', '5128581'); // New York
url.searchParams.set('M', 'on'); // Include Havdalahconst url = new URL('https://www.hebcal.com/shabbat');
url.searchParams.set('latitude', '32.0853');
url.searchParams.set('longitude', '34.7818');
url.searchParams.set('tzid', 'Asia/Jerusalem');Fetch holidays, parsha, Rosh Chodesh, and special Shabbatot for any year.
Convert between Gregorian and Hebrew dates.
Includes a useShabbatTimes React hook for easy integration.
| City | ID |
|---|---|
| Jerusalem | 281184 |
| Tel Aviv | 293397 |
| New York | 5128581 |
| Los Angeles | 5368361 |
| London | 2643743 |
Supported Agents
Fetch this week's Shabbat candle lighting and Havdalah times for Tel Aviv using the Hebcal API
Create a React component that displays Shabbat times for Jerusalem, including candle lighting, Havdalah, and this week's parsha
Convert today's date to the Hebrew calendar date using the Hebcal converter API
Fetch all major and minor Jewish holidays for 2026 using the Hebcal calendar API
Trust Score
Implement Israeli web accessibility compliance per IS 5568 standard and WCAG 2.1 AA for Hebrew RTL applications. Use when user asks about Israeli accessibility law, "negishot" (accessibility), IS 5568, "teken negishot" (accessibility standard), "nachim" (disabilities), Hebrew screen reader support, RTL ARIA patterns, or accessibility audit for Israeli websites. Covers mandatory legal requirements under the Equal Rights for Persons with Disabilities Act, Hebrew screen reader compatibility, RTL-specific ARIA patterns, and penalties for non-compliance. Do NOT use for general WCAG guidance without Israeli context (use standard a11y resources instead).
Generate professional Hebrew documents including PDF, DOCX, and PPTX with full RTL support and proper Hebrew typography. Use when user asks to create Hebrew PDF, generate Israeli business documents, "lehafik heshbonit", "litstor hozeh", build Hebrew Word document, create Hebrew PowerPoint, or produce Israeli templates such as Heshbonit Mas (tax invoice), Hozeh (contract), Hatza'at Mechir (proposal), or Protokol (meeting minutes). Covers reportlab, WeasyPrint, python-docx, and pptxgenjs with bidi paragraph support. Do NOT use for OCR or reading existing documents (use hebrew-ocr-forms instead).
Process and extract data from scanned Israeli government forms using OCR. Supports Tabu (land registry), Tax Authority forms, Bituach Leumi documents, and other official Israeli paperwork. Use when user asks to OCR Hebrew documents, extract data from Israeli forms, "lesarek tofes", parse Tabu extract, read scanned tax form, or process Israeli government documents. Includes Hebrew OCR configuration, field extraction patterns, and RTL text handling. Do NOT use for handwritten Hebrew recognition (requires specialized models) or non-Israeli form processing.
Want to build your own skill? Try the Skill Creator · Submit a Skill