skill-manager
GitHub管理技能的全生命周期操作,包括创建、安装(支持URL和npx)、修改及删除。指导用户将对话转化为可复用技能,并明确文件存储于~/.openbridge/skills/目录下的custom或imported文件夹中。
Trigger Scenarios
Install
npx skills add AFK-surf/OpenBridge --skill skill-manager -g -y
SKILL.md
Frontmatter
{
"name": "skill-manager",
"metadata": {
"icon": "folder.badge.plus",
"color": "red",
"visibility": "toggled",
"displayName": "Skill Manager",
"placeholder": "Describe the skill to create, install, or manage"
},
"description": "Manage skills: create, install, modify, or delete skills.\nTrigger when user asks to: \"create a skill\", \"save this as a skill\", \"install this skill\" (from URL\/link), \"edit\/modify a skill\", \"delete a skill\".\nUser skills live under ~\/.openbridge\/skills\/.\n"
}
Skill Manager
This skill provides guidance for all skill-related operations: creating, installing, modifying, and deleting skills.
About Skills
Skills are modular, self-contained packages that extend the agent by providing specialized workflows and bundled resources. Think of them as an "onboarding guide" for a specific task category.
Skill Directories
User skills live under ~/.openbridge/skills/:
| Directory | Purpose |
|---|---|
custom/ |
User-created skills |
imported/ |
Skills imported from the OpenBridge skill library |
Synced local skills may also appear through configured sync folders. Those stay at their original locations and are not installed into ~/.openbridge/skills/.
IMPORTANT: When creating or installing managed local skills, always use ~/.openbridge/skills/custom/<skill-slug>/ unless the flow explicitly targets imported/.
Operation: Install Skill from URL
When the user provides a URL to a skill (e.g., https://example.com/dot_claude/skills/xxx/SKILL.md) and asks to "install this skill".
Read the detailed guide: references/install-from-url.md
Operation: Install Skill via npx skills CLI
When the user asks to install a skill using npx skills add.
Read the detailed guide: references/install-from-npx-skills.md
Operation: Create Skill from Current Conversation
Convert the current multi-turn chat solution into a reusable custom skill.
Read the detailed guide: references/create-from-conversation.md
Operation: Modify Existing Skill
When the user asks to modify, edit, or update an existing skill:
- Locate the SKILL.md in
~/.openbridge/skills/(check custom/ and imported/) or in a configured sync folder - Read current content
- Apply changes as requested
- Validate if possible
- Report what was changed
Note: System skills are read-only. To customize behavior, create a new skill under ~/.openbridge/skills/custom/.
Operation: Delete Skill
When the user asks to delete or remove a skill:
- Confirm location: Only
~/.openbridge/skills/custom/or~/.openbridge/skills/imported/skills can be deleted - Confirm with user (list what will be removed)
- Delete:
rm -rf ~/.openbridge/skills/custom/<skill-slug>/ - Report deletion
Cannot delete: system skills, synced skills (manage at original location)
Version History
- a9ca905 Current 2026-07-24 11:35


