From israel-agent-skills
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".
npx claudepluginhub danielrosehill/claude-code-plugins --plugin israel-agent-skillsThis skill uses the workspace's default tool permissions.
Regenerates the "Skills" section of a Claude Code skills plugin README from the actual contents of its `skills/` directory.
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.
Regenerates the "Skills" section of a Claude Code skills plugin README from the actual contents of its skills/ directory.
skills/ folder.description has been edited.python3 scripts/generate-skills-section.py <plugin-repo-path> (default: the current plugin repo).<!-- SKILLS:START --> and ending with <!-- SKILLS:END -->. Capture its stdout.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.The helper script uses folder-name inference. Preferred explicit category values (add to a skill's SKILL.md frontmatter if inference gets it wrong):
| Category | Scope |
|---|---|
Government & Civic | Postal service, municipal reports, vehicle licensing, national services |
Healthcare | HMOs, medicines, medical appointments |
Emergency Preparedness | Shelters, Home Front Command guidelines, alerts |
Localization | Hebrew language, fonts, translation |
Media & Information | News feeds, media lookups |
Meta / Tooling | Skills that manage the plugin itself |
Category ordering in the README is fixed (Government & Civic → Healthcare → Emergency Preparedness → Localization → Media & Information → Meta / Tooling → Other).
If a SKILL.md lacks a category field, the script infers from folder name:
*-municipality-*, israel-post-*, *-government-* → Government & Civicmaccabi-*, clalit-*, meuhedet-*, leumit-*, *-medicine-*, *-medical-* → Healthcare*-shelter-*, miklat*, home-front-*, pikud-*, *-alert-* → Emergency Preparednesshebrew-*, *-translation, *-fonts-* → Localization*-news-*, *-rss-* → Media & Informationadd-skill-*, update-plugin-*, install-*-plugin, *-plugin-* → Meta / ToolingPrefer adding the category field to the skill's frontmatter over relying on inference.
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.