Agent skill
my-skills-manager
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/my-skills-manager
SKILL.md
Overview
Manage skills in your local repository (~/.my-skills-collection):
- Add skills (as git submodules or copied directories)
- Remove skills (handles both submodules and regular dirs)
- Sync repository and update all submodules
- List installed skills
- Install skills to AI agents (OpenCode, VSCode Copilot)
Quick Commands
Use scripts from scripts/ for safe, interactive operations:
Add a skill
# As git submodule (recommended for external repos)
python scripts/add_skill.py --submodule <git-url> --name <skill-name>
# Copy from local directory
python scripts/add_skill.py --copy /path/to/skill --name <skill-name>
Remove a skill
python scripts/remove_skill.py --name <skill-name>
Sync repository
python scripts/sync_repo.py
List installed skills
python scripts/list_skills.py
Reference Files
Read these for detailed workflows:
reference/operations.md— Detailed add/remove/sync proceduresreference/installation.md— Installing skills to AI agents
When to Use This Skill
- User mentions managing their skills collection
- User wants to add a skill from GitHub or local path
- User needs to sync or update their skills
- User wants to install skills to OpenCode, VSCode Copilot, or other agents
- User asks about their local skills repository
Important Notes
- Always confirm destructive operations before executing
- Skills must contain a
SKILL.mdfile to be recognized - Use submodules for external repos to easily update later
- Check
~/.my-skills-collection/skills/for installed skills
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?