-
Notifications
You must be signed in to change notification settings - Fork 0
Skill Lifecycle
Connor edited this page Jul 3, 2026
·
2 revisions
A useful skill environment needs maintenance. Too many stale, overlapping, or noisy skills reduce agent quality.
Audit installed skills for Codex:
python scripts/audit_skills.py audit --dest "$HOME/.agents/skills"Audit installed skills for Claude Code:
python scripts/audit_skills.py audit --dest "$HOME/.claude/skills"Disable a noisy or unused skill without deleting it:
python scripts/audit_skills.py disable <skill-name> --dest "$HOME/.agents/skills"Quarantine suspicious skills:
python scripts/audit_skills.py quarantine <skill-name> --dest "$HOME/.agents/skills"Restore a disabled skill:
python scripts/audit_skills.py restore <skill-name> --dest "$HOME/.agents/skills"Dry-run first:
python scripts/audit_skills.py prune --older-than-days 180 --dry-run --dest "$HOME/.agents/skills"Then prune only when the removal set is clearly correct.
Review each skill's description.
Good descriptions:
- name specific trigger words;
- define a narrow scope;
- explain boundaries.
Risky descriptions:
- "use for all tasks";
- "always run";
- "do everything";
- broad wording that overlaps with many workflows.
If a skill is useful but too broad, narrow its description. If two skills overlap, prefer one and disable the weaker one.
Skill 环境需要维护。太多过期、重叠或触发过宽的 skill 会降低 agent 质量。
常见维护动作:
| 动作 | 用途 |
|---|---|
| Audit | 检查已安装 skill 的结构、描述、风险和重复。 |
| Disable | 暂时禁用噪音大或不常用的 skill。 |
| Quarantine | 隔离可疑 skill。 |
| Restore | 恢复之前禁用的 skill。 |
| Prune | 清理长期不用的 skill,先 dry-run。 |
重点检查 description。好的描述应该有明确触发词、窄范围和边界;风险描述通常写着“use for all tasks”、“always run”、“do everything”。
如果两个 skill 重叠,保留更精确、更安全、更常用的那个。
- Home / 首页
- Installation / 安装
- Platform Install Paths / 安装路径区别
- Cross Platform Usage / 跨平台使用
- Discovery and Routing / 发现与路由
- Scoring and Risk Scan / 评分与风险扫描
- Skill Scoring Rubric / Skill 评分标准
- Prompt Injection Risk Examples / 风险例子
- Install Governance / 安装治理
- Safe Installation Workflow / 安全安装流程
- Skill Lifecycle / 生命周期管理
- Why Not Auto Install High Star Skills / 为什么不自动安装高 star skill
- FAQ / 常见问题