Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计提醒

skill-consolidator技能巩固者

Agent Skill

skill-consolidator 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

412

周安装

17

GitHub Stars

公开资料未说明

下载量

135
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:skill-consolidator(技能巩固者)
来源仓库:https://github.com/devinschumacher/skills
仓库路径:skills/skill-consolidator
安装命令:
npx skills add https://github.com/devinschumacher/skills --skill skill-consolidator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/devinschumacher/skills --skill skill-consolidator

简介

skill-consolidator 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 它能自动分析代码兼容性、依赖关系及协作流程,辅助开发决策。
  • 可通过 npx skills add 命令从 GitHub 安装,具体用法请参考原始 README。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Skill Consolidator

Create our own “best version” skills by consolidating globally installed skills into a smaller, linked set inside this repo, without directly editing the global skills directory.

When to Use This Skill

Use this skill when the user:

  • Wants to consolidate overlapping skills into one first-party skill
  • Says “merge skills”, “remove duplicates”, or “organize my skills”
  • Wants to create a custom skill by strategically combining third-party skills
  • Has a cluster of similar skills (e.g. Playwright) and wants one canonical version
  • Needs a safe workflow for reviewing and decommissioning old skill copies

Safety & constraints

  • Treat globally installed skills as read-only (default target: ~/.agents/skills, or $CODEX_HOME/skills, or ~/.codex/skills).
  • Prefer duplication over mutation: copy skills into this repo before editing.
  • Never delete skills as part of consolidation; deprecate via documentation and links instead.

Skill locations (repo vs global)

  • Repo first-party skills (source of truth): ./skills/ (edit here first)
  • Global installed skills (source of truth): ~/.agents/skills/

- ~/.codex/skills/ often contains symlinks pointing into ~/.agents/skills/

Quick start

  1. Generate an overlap report from globally installed skills (read-only):

- python3 skills/skill-consolidator/scripts/scan_installed_skills.py --out-dir tmp/skill-consolidator

  1. Pick the first cluster in tmp/skill-consolidator/overlap_report.md.
  2. Build the canonical result as a first-party skill in skills/<new-skill-name>/.

What “counts” as a good first-party skill (required standard)

Our skills are intentionally docs-driven: SKILL.md + bundled references/ + optional scripts/ are the “product”.

Before considering a consolidation “done”, the first-party skill must meet:

  • The required standard: skills/skill-consolidator/references/first-party-skill-standard.md

Workflow

1) Vendor upstream skills (third-party and/or personal global skills)

Goal: treat upstream skills as read-only; copy locally only if you truly need diffs.

Common sources:

  • Global: ~/.agents/skills/ (recommended global home)
  • Codex links: ~/.codex/skills/ (often symlinks into ~/.agents/skills/)

Recommended default: don’t copy; reference upstream via ~/.agents/skills/.

2) Inventory + overlap report

Run the scanner to produce:

  • inventory.json (machine-readable)
  • overlap_report.md (human-readable clusters)

Examples:

  • Scan globally installed skills directly (read-only):

- python3 skills/skill-consolidator/scripts/scan_installed_skills.py --out-dir tmp/skill-consolidator

  • Scan a custom root:

- python3 skills/skill-consolidator/scripts/scan_installed_skills.py --skills-root /path/to/skills --out-dir tmp/skill-consolidator

2) Pick a consolidation strategy per cluster

For each overlapping cluster, choose one primary pattern:

  • Merge into one canonical skill: best when content is truly duplicative.
  • Hub + leaf skills: best when workflows differ but share concepts (create a hub that routes to specialized skills).
  • Shared references: best when multiple skills share long “best practices” sections (extract into references and link).

Use: skills/skill-consolidator/references/combining-best-practices.md for decision rules and anti-patterns. Use: skills/skill-consolidator/references/opinionated-defaults.md to align the “canonical” result with our preferred tech stack and tooling defaults (when relevant).

3) Build the first-party canonical skill in ./skills/

  • Create skills/<canonical-skill-name>/SKILL.md that:

- Routes common trigger phrases (in description) - Links to leaf skills or reference docs - Keeps detailed content in references/ and reusable code in scripts/ - Meets the required standard in skills/skill-consolidator/references/first-party-skill-standard.md

If you keep old skills around inside this repo:

  • Narrow triggers or remove their SKILL.md so they don’t compete with the canonical skill.

4) Consolidate content with progressive disclosure

  • Keep SKILL.md short and procedural.
  • Move detailed “how-to” / long reference content into references/.
  • When two skills share the same long section, keep it in one canonical location and link to it (do not duplicate).

If you need a shared, cross-skill home for references inside this repo, use a _shared/ folder (see skills/skill-consolidator/references/combining-best-practices.md).

5) Link skills together (without creating deep dependency chains)

  • Add a small “See also” section (a few bullets) at the bottom of related skills.
  • Avoid multi-hop references (Skill A -> Skill B -> Skill C). Keep links one hop from the skill you’re editing.

6) Install the first-party skill globally (Skills CLI)

After the canonical skill lives in this repo, install it like other skills using the Skills CLI:

  • npx skills add <owner/repo@skill-name> -g -y

(This assumes the repo/skill is available from the source you use with npx skills add.)

7) Verify changes

At minimum:

  • Re-run the scanner to ensure consolidated skills still parse cleanly.
  • Run the script tests:

- python3 -m unittest skills/skill-consolidator/scripts/test_scan_installed_skills.py

If packaging scripts exist in the user’s environment, also validate packaging for the new/edited skills.

8) Second-agent review (required)

Before decommissioning any upstream skills, run a second-agent review of the consolidation:

  • Focus: “Did we lose important capability? Are triggers safe? Are links and routing clear?”

Use: skills/skill-consolidator/references/review-and-decommission.md for the review checklist and a copy/paste review prompt.

9) Human check (recommended default)

After the second-agent review passes, do a quick human check to confirm:

  • The canonical skill triggers the right scenarios
  • The old skills won’t compete with it
  • The consolidation is reversible

Use: skills/skill-consolidator/references/review-and-decommission.md.

10) Decommission upstream copies (safe + reversible)

Do not delete upstream skills immediately.

Prefer one of:

  • Remove/rename SKILL.md files in any local copies so they can’t trigger
  • If you keep old first-party copies around, mark them deprecated and narrow triggers

Use: skills/skill-consolidator/references/review-and-decommission.md for rules and acceptance criteria.

Note: when scanning this repo’s skills/, the overlap scanner won’t include global skills unless you explicitly scan them.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.38%
按下载量换算48

Claude

31.93%
按下载量换算43

Cursor

20.29%
按下载量换算27

Gemini CLI

9.32%
按下载量换算13

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills