agentsclimarketplace

Update plugin readme

Skill danielrosehill/Claude-Israel-Agent-Skills-Plugin/skills/update-plugin-readme

Use when the user wants to refresh the README of this plugin (or any Claude Code skills plugin) so that its "Skills" section reflects the current set of skills under `skills/*/SKILL.md`. Reads each skill's frontmatter (`name`, `description`, optional `category`), groups by category, sorts alphabetically within each group, and rewrites the README's Skills section between the `<!-- SKILLS:START -->` and `<!-- SKILLS:END -->` markers. Preserves everything else in the README (header, installation, license). A helper script at `scripts/generate-skills-section.py` does the extraction and emits the block on stdout; the skill is responsible for splicing it into the README. Trigger phrases - "update the plugin README", "regenerate the skills table", "refresh skills list on the plugin README", "the plugin README is out of date", "add the new skill to the README".From its SKILL.md

Install
npx -y skills add danielrosehill/Claude-Israel-Agent-Skills-Plugin --skill update-plugin-readme

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

4.2 KB, 790 tokens by cl100k_base, as published. Nobody here has run it

Update Plugin README

Regenerates the "Skills" section of a Claude Code skills plugin README from the actual contents of its skills/ directory.

When to run

  • A new skill has been added to the plugin's skills/ folder.
  • A skill's frontmatter description has been edited.
  • A skill has been removed.
  • The README drifts from reality (e.g. lists planned skills that already ship).

Procedure

  1. Run python3 scripts/generate-skills-section.py <plugin-repo-path> (default: the current plugin repo).
  2. The script emits a block starting with <!-- SKILLS:START --> and ending with <!-- SKILLS:END -->. Capture its stdout.
  3. Open README.md. Replace everything between those two markers with the new block. If the markers don't exist, locate the existing ## Skills heading and replace that section (up to the next ## heading) with the new block wrapped in markers; if there's no ## Skills heading, insert the block after the README's opening paragraph.
  4. Remove any "Planned scope" section that contains items now implemented. Leave genuinely unimplemented items alone but move them into an "Ideas" section if still plausible; drop them otherwise.
  5. Show the user a diff before committing.

Category taxonomy

The helper script uses folder-name inference. Preferred explicit category values (add to a skill's SKILL.md frontmatter if inference gets it wrong):

CategoryScope
Government & CivicPostal service, municipal reports, vehicle licensing, national services
HealthcareHMOs, medicines, medical appointments
Emergency PreparednessShelters, Home Front Command guidelines, alerts
LocalizationHebrew language, fonts, translation
Media & InformationNews feeds, media lookups
Meta / ToolingSkills that manage the plugin itself

Category ordering in the README is fixed (Government & Civic → Healthcare → Emergency Preparedness → Localization → Media & Information → Meta / Tooling → Other).

Fallback category inference rules

If a SKILL.md lacks a category field, the script infers from folder name:

  • *-municipality-*, israel-post-*, *-government-* → Government & Civic
  • maccabi-*, clalit-*, meuhedet-*, leumit-*, *-medicine-*, *-medical-* → Healthcare
  • *-shelter-*, miklat*, home-front-*, pikud-*, *-alert-* → Emergency Preparedness
  • hebrew-*, *-translation, *-fonts-* → Localization
  • *-news-*, *-rss-* → Media & Information
  • add-skill-*, update-plugin-*, install-*-plugin, *-plugin-* → Meta / Tooling
  • Otherwise → Other (prompt the user)

Prefer adding the category field to the skill's frontmatter over relying on inference.

Description sanitisation

The full description frontmatter for a skill is discovery-oriented (contains "Use when..." preamble and trigger phrases). The README version is a plain, user-facing sentence. The helper script strips the Use when the user wants to prefix, truncates at the first sentence boundary, cuts everything from Trigger phrases onward, capitalises the first letter, and drops the trailing period.

Out of scope

  • Regenerating the rest of the README (header, installation, license, related plugins). Those are hand-maintained.
  • Editing individual SKILL.md files. This skill only reads them.

What ships with it: 1 file

3.1 KB alongside SKILL.md, 1 of them executable

scripts/

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.