CherryHQ/cherry-studio/resources/builtin-agents/cherry-assistant/.claude/skills/skills-manager/SKILL.md
skills-manager
Use it for engineering tasks; the detail page covers purpose, installation, and practical steps.
- Source repository stars
- 49,062
- Declared platforms
- 1
- Static risk flags
- 0
- Last source update
- 2026-07-28
- Source checked
- 2026-07-28
Decision brief
What it does—and where it fits
搜索、安装和创建 Claude Code Agent Skills。当用户想要搜索技能、安装工具、创建自定义 Skill,或者说"find a skill"、"搜索技能"、"帮我做个 skill"、"create a skill"时触发。也适用于用户说"有没有做 X 的工具"、"我想扩展 Agent 能力"的场景。
Not for
- Tasks that require unconfirmed production actions or broad system permissions.
- Environments where the pinned source and install steps cannot be inspected.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Declared | Source record | Install path and trigger |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/CherryHQ/cherry-studio --skill "resources/builtin-agents/cherry-assistant/.claude/skills/skills-manager"Inspect the Agent Skill "skills-manager" from https://github.com/CherryHQ/cherry-studio/blob/dda7cc99d730c36bde685bec586dafe458722a4d/resources/builtin-agents/cherry-assistant/.claude/skills/skills-manager/SKILL.md at commit dda7cc99d730c36bde685bec586dafe458722a4d. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
搜索和安装
运行时检测: 优先 npx skills,备选 $CHERRYSTUDIOBUNPATH x skills,都没有则提示安装 Node.js
运行时检测: 优先 npx skills,备选 $CHERRYSTUDIOBUNPATH x skills,都没有则提示安装 Node.js搜索: 理解需求→提取关键词→npx skills find [query]→展示名称/功能/来源安装: Skills 是第三方代码有完整权限,必须: 展示安全警告→提供源码链接→用户确认→npx skills add -y。位置: 项目级 .claude/skills/ 或用户级 /.claude/skills/ - 02
创建 Skills
目录结构: skill-name/ 下 SKILL.md(必需) + scripts/(可选) + references/(可选) + assets/(可选)
需求捕获: Skill做什么?触发场景?输出格式?"把刚才的流程做成Skill"→从对话提取编写 SKILL.md: frontmatter(name+description写具体触发场景) + 正文(祈使句, ≤500行, 含1-2示例, 大文件拆references/)测试: 2-3个用例,subagent并行跑 with-skill vs baseline 对比
Permission review
Static risk signals and limitations
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 58/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 49,062 | Source | Repository attention, not individual Skill quality |
| Compatibility | 1 platforms | Source | Declared in the catalog source record |
| Usage guide | catalog record | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- CherryHQ/cherry-studio
- Skill path
- resources/builtin-agents/cherry-assistant/.claude/skills/skills-manager/SKILL.md
- Commit
- dda7cc99d730c36bde685bec586dafe458722a4d
- License
- AGPL-3.0
- Collected
- 2026-07-28
- Default branch
- main
View the original SKILL.md
Skills Manager
搜索和安装
运行时检测: 优先 npx skills,备选 $CHERRY_STUDIO_BUN_PATH x skills,都没有则提示安装 Node.js
搜索: 理解需求→提取关键词→npx skills find [query]→展示名称/功能/来源
安装: Skills 是第三方代码有完整权限,必须: 展示安全警告→提供源码链接→用户确认→npx skills add <owner/repo@skill> -y。位置: 项目级 .claude/skills/ 或用户级 ~/.claude/skills/
无结果: 告知→提议直接完成→建议创建自定义Skill
创建 Skills
目录结构: skill-name/ 下 SKILL.md(必需) + scripts/(可选) + references/(可选) + assets/(可选)
流程:
- 需求捕获: Skill做什么?触发场景?输出格式?"把刚才的流程做成Skill"→从对话提取
- 编写 SKILL.md: frontmatter(name+description写具体触发场景) + 正文(祈使句, ≤500行, 含1-2示例, 大文件拆references/)
- 测试: 2-3个用例,subagent并行跑 with-skill vs baseline 对比
- 迭代: 根据测试和反馈修改,确保触发准确
原则: 解释why不堆MUST, 通用指令不绑特定示例, 多领域按variant组织references/
参考: https://skills.sh/ | npx skills find/add/init
Alternatives
Compare before choosing
jackchuka/skills
claude-skill-spec-audit
Audit skill SKILL.md files for compliance with the agentskills.io specification and house conventions. Checks frontmatter fields (name, description, compatibility, metadata, argument-hint), metadata sub-fields (author, scope, layer, confirms), and layer/suffix consistency. Use when adding new skills, reviewing skill quality, or ensuring all skills follow the spec. Triggers: "audit skills", "check skill spec", "skill compliance", "are my skills up to spec", "/claude-skill-spec-audit".
affaan-m/ECC
autonomous-loops
Patterns and architectures for autonomous Claude Code loops — from simple sequential pipelines to RFC-driven multi-agent DAG systems.
affaan-m/ECC
gan-style-harness
GAN-inspired Generator-Evaluator agent harness for building high-quality applications autonomously. Based on Anthropic's March 2026 harness design paper.
affaan-m/ECC
plankton-code-quality
Write-time code quality enforcement using Plankton — auto-formatting, linting, and Claude-powered fixes on every file edit via hooks.