manage-skills — for Claude Code manage-skills, VRP-Toolkit, community, for Claude Code, ide skills, skill management, audit and compliance, VRP Toolkit, Python scripting, compliance checking

v1.0.0

About this Skill

Perfect for AI Agent Developers needing advanced skill management and auditing capabilities for Claude Code, Cursor, and Windsurf. manage-skills is a meta-skill for managing, auditing, and maintaining all VRP Toolkit skills, ensuring seamless integration and compliance.

Features

Audit skills directory using Python script
Check skill compliance against VRP Toolkit standards
Update SKILLS.md index for synchronized documentation
Record changes in SKILLS_LOG.md for tracking and history

# Core Topics

dudusoar dudusoar
[1]
[0]
Updated: 2/9/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
8/11
Quality Score
36
Canonical Locale
en
Detected Body Locale
en

Perfect for AI Agent Developers needing advanced skill management and auditing capabilities for Claude Code, Cursor, and Windsurf. manage-skills is a meta-skill for managing, auditing, and maintaining all VRP Toolkit skills, ensuring seamless integration and compliance.

Core Value

Empowers agents to efficiently manage skills through auditing, compliance checks, and documentation synchronization using Python scripts and YAML frontmatter, ensuring seamless integration with SKILLS.md and SKILLS_LOG.md.

Ideal Agent Persona

Perfect for AI Agent Developers needing advanced skill management and auditing capabilities for Claude Code, Cursor, and Windsurf.

Capabilities Granted for manage-skills

Auditing skills directories for compliance and documentation accuracy
Validating skill independence and structure against VRP Toolkit standards
Automating updates to SKILLS.md index and logging changes in SKILLS_LOG.md

! Prerequisites & Limits

  • Requires Python environment
  • Limited to managing skills for Claude Code, Cursor, and Windsurf
  • Dependent on SKILLS.md and SKILLS_LOG.md file structure

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is manage-skills?

Perfect for AI Agent Developers needing advanced skill management and auditing capabilities for Claude Code, Cursor, and Windsurf. manage-skills is a meta-skill for managing, auditing, and maintaining all VRP Toolkit skills, ensuring seamless integration and compliance.

How do I install manage-skills?

Run the command: npx killer-skills add dudusoar/VRP-Toolkit/manage-skills. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for manage-skills?

Key use cases include: Auditing skills directories for compliance and documentation accuracy, Validating skill independence and structure against VRP Toolkit standards, Automating updates to SKILLS.md index and logging changes in SKILLS_LOG.md.

Which IDEs are compatible with manage-skills?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for manage-skills?

Requires Python environment. Limited to managing skills for Claude Code, Cursor, and Windsurf. Dependent on SKILLS.md and SKILLS_LOG.md file structure.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add dudusoar/VRP-Toolkit/manage-skills. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use manage-skills immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

manage-skills

Install manage-skills, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Manage Skills

Meta-skill for managing, auditing, and maintaining all VRP Toolkit skills.

Core Functions

1. Audit Skills Directory

Compare actual skills in .claude/skills/ with SKILLS.md documentation.

Usage:

bash
1python .claude/skills/manage-skills/scripts/audit_skills.py

Reports:

  • Skills in directory vs SKILLS.md
  • Missing from documentation
  • Missing from directory
  • Sync status

2. Check Skill Compliance

Validate skills against VRP Toolkit standards.

Usage:

bash
1# Check specific skill 2python .claude/skills/manage-skills/scripts/check_compliance.py skill-name 3 4# Check all skills 5python .claude/skills/manage-skills/scripts/check_compliance.py --all

Checks:

  • Independence: Skill doesn't embed other skills' content
  • Size: SKILL.md ≤ 500 lines (body, excluding frontmatter)
  • Structure: Required files present, no prohibited files
  • Frontmatter: Valid YAML with name and description
  • References: All reference files mentioned in SKILL.md

See compliance_checklist.md for detailed standards.

3. Update SKILLS.md Index

Sync skills documentation in SKILLS.md with actual skills.

When:

  • After adding new skill
  • After removing skill
  • After significantly modifying skill description

See: update_procedures.md → Section 1

4. Record Changes in SKILLS_LOG.md

Log all skill modifications for tracking and history.

When:

  • After any skill change (add/update/remove/rename/split/merge)

Template:

markdown
1## YYYY-MM-DD - [Action]: [skill-name] 2**Action:** [Added/Updated/Removed/Renamed/Split/Merged] 3**Reason:** [Why this change was made] 4**Changes:** 5- [Specific change 1] 6- [Specific change 2] 7**Compliance Notes:** [Any compliance issues addressed] 8**Impact:** [How this affects other skills or workflows]

See: update_procedures.md → Section 2

Workflow Patterns

Pattern A: Add New Skill

1. Create skill using skill-creator
2. Run: audit_skills.py
   → Check if new skill appears in directory
3. Update SKILLS.md skills index (Section 1)
4. Record in SKILLS_LOG.md
5. Run: check_compliance.py skill-name
   → Verify new skill is compliant

Pattern B: Modify Existing Skill

1. Make changes to skill
2. Run: check_compliance.py skill-name
   → Check for violations (size, independence, etc.)
3. If issues found, fix them
4. Update SKILLS.md description if needed
5. Record changes in SKILLS_LOG.md

Pattern C: Periodic Audit

1. Run: audit_skills.py
   → Check directory vs SKILLS.md sync
2. Run: check_compliance.py --all
   → Check all skills for compliance
3. Review warnings and errors
4. Plan fixes or improvements
5. Update SKILLS_LOG.md with findings

Pattern D: Fix Compliance Issues

Size Violation (>500 lines):

1. Identify extractable sections
2. Move to references/ or create new skill
3. Update SKILL.md references
4. Re-run check_compliance.py
5. Record in SKILLS_LOG.md

Independence Violation:

1. Find embedded content from other skills
2. Replace with reference: "See [skill-name] for..."
3. Re-run check_compliance.py
4. Record in SKILLS_LOG.md

See update_procedures.md for detailed procedures on:

  • Renaming skills
  • Splitting large skills
  • Merging similar skills
  • Archiving deprecated skills

Integration with Other Skills

Works with:

  • skill-creator - Use to create new skills before managing them
  • update-migration-log - Similar logging pattern for migrations
  • update-task-board - Similar documentation sync pattern

DO NOT embed workflows from these skills - Reference them instead.

Compliance Standards Quick Reference

yaml
1Independence: 2 ✓ Can reference other skills: "See [skill-name] for..." 3 ✗ Cannot embed workflows from other skills 4 5Size: 6 ✓ SKILL.md ≤ 500 lines (excluding frontmatter) 7 ⚠ Warning at 400 lines 8 ✗ Error at 500 lines 9 10Structure: 11 ✓ Required: SKILL.md with valid frontmatter 12 ✓ Optional: scripts/, references/, assets/ 13 ✗ Prohibited: README.md, CHANGELOG.md, etc. 14 15Frontmatter: 16 ✓ Required fields: name, description 17 ✓ Description: 50-200 words with use cases 18 ✗ Extra fields discouraged 19 20References: 21 ✓ All refs linked from SKILL.md 22 ✓ Max 1 level deep (no nested dirs) 23 ⚠ Warning if ref >500 lines

Full details: compliance_checklist.md

Files in This Skill

manage-skills/
├── SKILL.md                          # This file
├── scripts/
│   ├── audit_skills.py              # Directory vs CLAUDE.md audit
│   └── check_compliance.py          # Compliance validation
├── references/
│   ├── compliance_checklist.md      # Detailed compliance standards
│   └── update_procedures.md         # Step-by-step update procedures
└── assets/
    └── SKILLS_LOG_template.md       # Template for SKILLS_LOG.md

Tips

  1. Run audit after adding skills - Catches missing documentation immediately
  2. Check compliance before packaging - Prevents distribution of non-compliant skills
  3. Keep SKILLS_LOG.md updated - Provides history for troubleshooting
  4. Review warnings seriously - They often indicate real issues
  5. Split before 500 lines - Easier to split at 400 than fix at 600

Limitations

  • Does not automatically fix compliance issues (manual fixes required)
  • Cannot detect semantic overlap between skills (manual review needed)
  • Windows encoding issues with emoji in scripts (uses ASCII fallback)

Related Skills

Looking for an alternative to manage-skills or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer