manage-skills

仓库创建 2026年2月25日最近提交 24 天前SkillHot 收录 20 天前
▸ 精选理由

集中管理技能仓库与生命周期,提升扩展与复用效率。

这个 Skill 做什么

搜索、安装与管理 SkillsMP 注册表中的技能并创建自定义技能。

帮你在 SkillsMP 注册表里找、装和管理技能,也能按约定格式(比如 SKILL.md)创建自定义技能并处理生命周期。想给代理增加新能力、安装某个 skill、或浏览/发布技能时用它,支持本地或全局安装并能校验安装是否成功。

▸ 展开 SKILL.md 英文原文

Searches the SkillsMP registry, installs skills locally or globally, creates custom skills with SKILL.md frontmatter, and manages the skill lifecycle. Use when the user wants to find skills, add new capabilities, install a skill, browse available skills, create a custom skill, or manage the skills system.

开发编程技能检索安装管理自定义技能生命周期通用
2.9k
Stars
342
Forks
18
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/open-gitagent/opengap/main/examples/gitagent-helper/skills/manage-skills/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/open-gitagent/opengap/main/examples/gitagent-helper/skills/manage-skills/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Manage Skills

## When to Use
When a user wants to find skills, install them, create new ones, or understand the skills system.

## Verify Installation

After installing a skill, confirm it's available:

```bash
opengap skills list -d ./my-agent | grep "code-review"
```

## Search Skills

```bash
# Search SkillsMP registry
opengap skills search "code review"

# Search GitHub
opengap skills search "pdf reader" --provider github

# Limit results
opengap skills search "testing" --limit 5
```

## Install Skills

```bash
# Install from SkillsMP to agent-local skills/
opengap skills install code-review -d ./my-agent

# Install globally to ~/.agents/skills/
opengap skills install code-review --gl
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有