Agent skill
manage-skills
Manages Claude Code skills - creates, updates, and maintains skills following established design principles. Use when the user asks to create a skill, update a skill, refactor a skill, or wants to teach Claude a new capability.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/manage-skills
SKILL.md
Skill Management
Skill Design Principles
1. SKILL.md is Self-Contained
- Contains ALL information needed to use the skill
- Should be as minimal as possible while conveying complete information
- No need for separate README, USAGE, INSTALL, or CHANGELOG files
2. Single Script Design
- Optimize for ONE script per skill (not multiple scripts)
- Use command-line parameters for different operations
- Pattern:
./script.sh <command> [arguments]
3. Minimal File Structure
skill-name/
├── SKILL.md # Required - complete documentation
└── script.sh # Optional - single CLI if needed
SKILL.md Structure
Required frontmatter:
---
name: skill-name
description: What it does and when to use it. Use when [triggers].
version: 1
---
Creating a New Skill
- Create directory in
.claude/skills/skill-name/ - Create SKILL.md with frontmatter and documentation
- Optionally add a shell script for automation
- Make scripts executable with
chmod +x
Rendering Custom UI
For rendering interactive HTML interfaces in chat, use the create-interface skill which provides comprehensive documentation on the mcp__noetect-ui__render_ui tool.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?