From israel-agent-skills
Use when the user wants the latest Israeli news headlines from major outlets via RSS, in English or Hebrew. Aggregates Jerusalem Post, Times of Israel, and JNS (English) or Ynet, Maariv, Walla, Haaretz, and Globes (Hebrew), merges them by publication time, and returns a compact summary suitable for orchestrator context. Trigger phrases include "latest Israeli news", "what's happening in Israel right now", "Israeli headlines", "Hebrew news", "מה חדש בחדשות", "check Ynet / Jpost / ToI", "news from Israel in the last X hours".
npx claudepluginhub danielrosehill/claude-code-plugins --plugin israel-agent-skillsThis skill uses the workspace's default tool permissions.
Fetches and merges RSS feeds from major Israeli news outlets. Returns headlines, publication times, links, and short summaries sorted newest-first. No browser, no API keys, no geo-restriction issues.
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.
Fetches and merges RSS feeds from major Israeli news outlets. Returns headlines, publication times, links, and short summaries sorted newest-first. No browser, no API keys, no geo-restriction issues.
English (--lang en)
jpost — Jerusalem Post front pagetoi — Times of Israeljns — Jewish News SyndicateHebrew (--lang he)
ynet — Ynet main feedmaariv — Maariv latest newswalla — Walla main feedhaaretz — Haaretzglobes — Globes businesspython3 scripts/fetch_news.py --lang en # 50 English items, text output
python3 scripts/fetch_news.py --lang he --limit 100 # 100 Hebrew items
python3 scripts/fetch_news.py --lang en --since 6h # only last 6 hours
python3 scripts/fetch_news.py --lang he --source ynet # one source only
python3 scripts/fetch_news.py --lang en --json # JSON for orchestration
--lang {en,he} — language set to fetch. Default en.--limit N — max items returned after merge+sort. Default 50.--source KEY — restrict to a single source key (see lists above).--since WINDOW — drop items older than the window. Accepts 30m, 6h, 2d.--json — emit JSON instead of the text digest.Text mode prints a numbered list:
1. [jpost] Headline...
2026-04-23T20:26:51+00:00
https://...
Short summary snippet...
JSON mode returns { lang, count, items: [{source, title, link, published, summary}, ...] } — ready to pipe into an LLM for summarization, clustering, or translation.
The --json output is the intended handoff format. Typical pattern:
python3 scripts/fetch_news.py --lang he --limit 40 --since 12h --json > /tmp/news.json
Then hand /tmp/news.json to Claude with a prompt like "summarize the top 5 stories, translate Hebrew headlines, and flag anything security-related."
feedparser dependency).[warn] on stderr; the rest still return.