Executes skill-quality-reviewer improvement plans on Claude Skills: parses changes by priority/file, resolves conflicts, applies updates with backups, verifies, and reports.
From claude-scholarnpx claudepluginhub galaxy-dawn/claude-scholar --plugin claude-scholarThis skill uses the workspace's default tool permissions.
examples/improvement-plan-example.mdexamples/update-report-example.mdreferences/error-handling.mdreferences/merge-strategies.mdreferences/plan-format.mdreferences/supported-updates.mdscripts/backup-skill.shscripts/verify-update.shSearches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides agent creation for Claude Code plugins with file templates, frontmatter specs (name, description, model), triggering examples, system prompts, and best practices.
Execute improvement plans generated by skill-quality-reviewer to automatically update and fix issues in Claude Skills.
Read improvement-plan-{name}.md
↓
Parse improvement items (High/Medium/Low priority)
↓
Group changes by file
↓
Detect and resolve conflicts
↓
Backup original files
↓
Execute updates (Edit or Write tools)
↓
Verify results
↓
Generate update-report
Trigger phrases:
Use this skill when:
skill-quality-reviewerRead the improvement-plan-{skill-name}.md file generated by skill-quality-reviewer.
# Plan is typically in current directory
ls improvement-plan-*.md
# Or specify full path
read /path/to/improvement-plan-my-skill.md
Validate the plan:
See references/plan-format.md for detailed plan structure.
Extract all improvement suggestions and organize by target file.
Extract from each item:
SKILL.md:line:line or references/file.md)Build update queue:
by_file = {
"SKILL.md": [change1, change2, ...],
"references/guide.md": [change3, ...],
"examples/demo.md": [change4, ...],
}
Check for conflicts when multiple changes affect the same content.
Resolution strategy:
See references/merge-strategies.md for detailed merge logic.
Order changes by priority within each file.
Priority order:
Backup location: ~/.claude/skills/backup/{skill-name}-{timestamp}/
# Use backup script
~/.claude/skills/skill-improver/scripts/backup-skill.sh <skill-path>
Apply changes:
Verification checks:
# Use verify script
~/.claude/skills/skill-improver/scripts/verify-update.sh <skill-path>
Generate update-report-{skill-name}-{timestamp}.md documenting:
See examples/update-report-example.md for report template.
Execute first. These typically address:
Execute after High. These typically address:
Execute last. These typically address:
This skill works seamlessly with skill-quality-reviewer:
Current Skill (67/100 D+)
↓ [skill-quality-reviewer]
Improvement Plan
↓ [skill-improver]
Improved Skill (87/100 B+)
↓ [skill-quality-reviewer]
Quality Report (validation)
Iterate until desired quality level reached.
references/plan-format.md - Improvement plan file structure and formatreferences/merge-strategies.md - Detailed merge algorithms and conflict resolutionreferences/error-handling.md - Error handling strategiesreferences/supported-updates.md - Supported update types with examplesexamples/improvement-plan-example.md - Sample improvement planexamples/update-report-example.md - Sample update reportscripts/backup-skill.sh - Create backup of skill before updatesscripts/verify-update.sh - Verify skill integrity after updatesExample 1: Apply improvements to local skill
User: "Apply improvements from improvement-plan-git-workflow.md"
[Claude executes the workflow:]
1. Reads improvement-plan-git-workflow.md
2. Parses all improvement items
3. Groups changes by file
4. Detects and resolves conflicts
5. Sorts by priority
6. Backs up git-workflow skill
7. Executes updates
8. Verifies results
9. Generates update-report-git-workflow-timestamp.md
Example 2: Update skill from quality review
User: "Update my api-helper skill based on quality report"
[Claude:]
1. Locates improvement-plan-api-helper.md
2. Applies all recommended changes
3. Verifies skill structure
4. Reports quality improvement: 72/100 → 91/100