discover-israel-skills

discover-israel-skills is a skill for Claude Code from danielrosehill/Claude-Israel-Agent-Skills-Plugin. It costs 247 tokens per session (1,154 once invoked), scanned B, original, MIT.

A curated index and installer guide for third-party Claude Code skills focused on services and everyday tasks in Israel. Claude Code is a coding agent that can use instruction packages called skills.

In plain words
What is it for?
Use it to browse the curated list by category, identify the correct repository or subfolder, and install a selected skill.
Why use it?
Finding relevant Israel-focused skills across separate repositories is time-consuming, and some listed projects are full applications rather than skills.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths; mentions Claude Code.

Part of the israel-agent-skills plugin — 22 skills shipped together

Good fit Use it to browse the curated list by category, identify the correct repository or subfolder, and install a selected skill.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/danielrosehill/claude-israel-agent-skills-plugin/discover-israel-skills
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add danielrosehill/Claude-Israel-Agent-Skills-Plugin --skill discover-israel-skills
Clone the repo
git clone --depth 1 https://github.com/danielrosehill/Claude-Israel-Agent-Skills-Plugin

Made for: Claude Code.

Or install israel-agent-skills, the plugin that ships this one along with the rest of its 22 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for discover-israel-skills

README.md
[![agentmods](https://agentmods.dev/badge/skills/danielrosehill/claude-israel-agent-skills-plugin/discover-israel-skills/github.svg)](https://agentmods.dev/skills/danielrosehill/claude-israel-agent-skills-plugin/discover-israel-skills)
Your own site
<a href="https://agentmods.dev/skills/danielrosehill/claude-israel-agent-skills-plugin/discover-israel-skills"><img src="https://agentmods.dev/badge/skills/danielrosehill/claude-israel-agent-skills-plugin/discover-israel-skills/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for discover-israel-skills

Your own site · 80×15
<a href="https://agentmods.dev/skills/danielrosehill/claude-israel-agent-skills-plugin/discover-israel-skills"><img src="https://agentmods.dev/badge/skills/danielrosehill/claude-israel-agent-skills-plugin/discover-israel-skills.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 247 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,154 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00247 $0.01154
Opus 5 $0.00123 $0.00577
Sonnet 5 $0.00049 $0.00231
Haiku 4.5 $0.00025 $0.00115

Measured 12d ago against content hash 707b65608e64, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade B, and why

discover-israel-skills scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Recursive force deletemediumDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf "$tmp"

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

skills/discover-israel-skills/SKILL.md · 70 lines

How it starts

The opening of the file, as written. The whole thing — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Discover Israel Agent Skills

Curated index of third-party Claude Code agent skills for life in Israel, with one-command install. The list lives in data/third-party-skills.yaml and is the authoritative source — do not enumerate entries in the README; direct users to invoke this skill.

What's indexed

Three shapes of upstream source:

  1. Monorepo collectionsgithub.com/skills-il/* organises several skills per repo, one per subfolder (each with its own SKILL.md). Install the specific subfolder, not the whole repo.
  2. Standalone skill repos — one skill per repo, SKILL.md at the top level (or under a stated subpath).
  3. Awesome listalexpolonsky/awesome-agent-skills-israel is a human-readable index only; point the user there for browsing beyond the curated shortlist.

Projects that are not Claude Code skills (e.g. full web apps like shneorAziza/MyLaw) are intentionally excluded even if the user named them — mention that when asked.

Procedure

  1. Read data/third-party-skills.yaml.
  2. Group the entries by category and show a numbered menu — one line per skill: <name> — <blurb> (<owner>/<repo>[/<subpath>]).
  3. For each entry, check whether it's already installed:
    test -d "$HOME/.claude/skills/<install_name>" && echo installed || echo missing
    
  4. Ask which to install (all, none, or a comma-separated list of names).
  5. For each selected entry:
    • Standalone repo, whole repo:
      git clone --depth 1 https://github.com/<owner>/<repo>.git "$HOME/.claude/skills/<install_name>"
      
    • Monorepo subpath (sparse):
      tmp=$(mktemp -d)
      git clone --depth 1 --filter=blob:none --sparse https://github.com/<owner>/<repo>.git "$tmp"
      git -C "$tmp" sparse-checkout set <subpath>
      mv "$tmp/<subpath>" "$HOME/.claude/skills/<install_name>"
      rm -rf "$tmp"
      
  6. Verify the installed folder contains a SKILL.md; if not, warn the user and leave the folder in place for inspection.
  7. Remind the user to restart Claude Code (or reload skills) so the new skill is picked up.

Read the full file on GitHub · 70 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 70 lines · 247 tokens per session scan B 707b65608e64

Subscribe to this mod's changes

discover-israel-skills is a skill published in the GitHub repository danielrosehill/Claude-Israel-Agent-Skills-Plugin (2 stars, last pushed 4mo ago), licensed MIT. It adds 247 tokens to every session and 1,154 once invoked, about $0.0012 per session on Opus 5. A static security scan graded it B with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

exploratory-data-analysis

Perform bounded, local exploratory analysis of explicitly supported scientific files. Use for redacted CSV/TSV/JSON profiles; optional NumPy, HDF5, FASTA/FASTQ, and basic image metadata inspection; missingness/leakage audits; outlier and transformation sensitivity; and rigorous EDA report scaffolds. Other domain…

K-Dense-AI/scientific-agent-skills · 83 tokens

google-ads-audit

Google Ads account audit and business context setup. Use for account-health audits and business-context setup. Trigger on "audit my ads", "ads audit", "set up my ads", "onboard", "account overview", "how's my account", "ads health check", "what should I fix in my ads", or when the user is new to NotFair and hasn't run…

nowork-studio/notfair-plugin · 86 tokens

data-charts-tako

Search and visualize the world's data - get charts, insights, and embeddable knowledge cards for finance, economics, demographics, sports, and more.

gooseworks-ai/goose-skills · 35 tokens

webhook-management

Configure and validate CCAM webhook targets across supported chat, incident, automation, and generic providers. Use when listing provider requirements, creating or updating a target, scoping it to alert rules, sending a test notification, reviewing delivery history, or deleting a target.

hoangsonww/Claude-Code-Agent-Monitor · 56 tokens

gesellschaftsrechtliche-satzungen-agb

Für Gesellschaftsrechtliche Satzungen AGB Abgrenzung: ordnet Norm, Beweislast und Gegenargument; Ergebnis: Prüfprodukt mit Risiko und nächstem Schritt. Fachgebiet: AGB-Recht-Prüfer. Route: gesellschaftsrechtliche-satzungen-agb.

Klotzkette/claude-fuer-deutsches-recht · 69 tokens

master-yinguang

A reference-based assistant for questions about Yinguang and Pure Land Buddhism, a Buddhist tradition focused on faith, ethical living, and practice connected with rebirth in the Pure Land. It can answer in Yinguang’s historical teaching style.

xr843/Master-skill · 274 tokens