Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

synthesis-skills-manager综合技能经理

Agent Skill

synthesis-skills-manager 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

192

周安装

8

GitHub Stars

3

下载量

64
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/rajivpant/synthesis-skills --skill synthesis-skills-manager

简介

synthesis-skills-manager 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于技能管理与信息聚合场景,可结合来源仓库进一步核验具体用法。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和维护状态。
  • 安装前建议确认是否会触发联网、命令执行或文件读写等操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Synthesis Skills Manager

You are an AI agent managing synthesis skills across a three-repo architecture. Skills are executable methodology for AI agents — not configuration files, not packages. This distinction matters for how you handle drift and conflicts.

Architecture

Three skill repositories, each with a different access level:

RepoTypeAccessPurpose
synthesis-skillspublicOpen sourceGeneral-purpose methodology skills
synthesis-skills-rajiv (or user's private repo)privateOwner onlyPersonal and proprietary skills
synthesis-skills-mcclatchy (or team shared repo)sharedTeam membersCross-project team skills

Installation targets (in priority order):

  1. ~/.claude/skills/ — Claude Code
  2. ~/.agents/skills/ — Cross-platform convention
  3. ~/.cursor/skills/ — Cursor (if present)
  4. /path/to/project/.claude/skills/ — Project-level (shared repo only)

Provenance Tracking

Every installed skill has a .source.json file (gitignored in source repos):

{
  "source_repo": "github.com/rajivpant/synthesis-skills",
  "source_type": "public",
  "source_path": "synthesis-thinking-framework/SKILL.md",
  "source_commit": "abc123...",
  "installed_at": "2026-03-23T14:30:00Z",
  "installed_by": "synthesis-skills-manager"
}

Commands

When the user asks you to manage skills, execute the appropriate command:

install [repo] [skill-name]

Install a skill from a source repo to the target location.

  1. Read the skill's SKILL.md from the source repo
  2. Check if a skill with the same name already exists at the target
  3. If it exists: a. Compare checksums (SHA-256 of SKILL.md content) b. If identical, skip (already up to date) c. If different, perform drift resolution (see below)
  4. Copy the skill directory to the target
  5. Write .source.json with current commit hash and timestamp
  6. Check dependencies (read depends_on from frontmatter, verify each is installed)
  7. Report result

update [repo]

Update all skills from a source repo.

  1. For each skill in the source repo, run the install flow
  2. Report: updated, skipped (unchanged), merged (drift resolved)

status

Show the state of all installed skills.

  1. Scan all target directories for skill directories (contain SKILL.md)
  2. Group by source_repo (from.source.json)
  3. For each skill:

- Read .source.json for provenance - Compare installed SKILL.md checksum against source (if source repo is available locally) - Report: OK, DRIFT (local changes), MISSING (in source but not installed), ORPHAN (installed but not in any known source)

  1. Check all dependencies
  2. Validate access hierarchy

drift [skill-name]

Show what changed between installed and source versions.

  1. Read both SKILL.md files
  2. Show a diff summary (sections added, removed, modified)
  3. Recommend: accept source, keep local, or merge

merge [skill-name]

Perform synthesis merge when drift is detected.

This is the key differentiator from package managers. Skills are methodology — when the installed copy and source both have legitimate changes, the right answer is synthesis merge, not "pick a version."

Merge protocol:

  1. Read the source version (from repo)
  2. Read the installed version (from target)
  3. Read .source.json to find the common ancestor commit
  4. Identify what changed in each:

- Source changes: new sections, updated instructions, bug fixes - Local changes: customizations, environment-specific tweaks, improvements

  1. Synthesize:

- Keep all source structural changes (new sections, reordered steps) - Keep all local customizations that don't conflict with source intent - For true conflicts (both changed the same instruction differently), present both versions and ask the user

  1. Write the merged result to the installed location
  2. Update .source.json with new commit hash

What makes this different from git merge: Git merges text. This merges methodology. An AI agent understands that moving a step from section 3 to section 2 is not a conflict with adding a new substep to section 3 — even though a text-based merge would flag it.

Dependency Access Hierarchy

Strict rules — enforced on every install and status check:

Skill TypeCan Depend On
publicpublic only
privatepublic + private
sharedpublic + shared

No cross-collection private dependencies. If a private skill needs functionality from a shared skill (or vice versa), the dependency must be promoted to public first.

Checking Dependencies

Read depends_on from SKILL.md frontmatter:

depends_on: ["synthesis-thinking-framework", "synthesis-content-quality"]

For each dependency:

  1. Check if it's installed in the target directory
  2. Read its .source.json to get its source_type
  3. Validate against the hierarchy table
  4. Report warnings (missing) or violations (hierarchy breach)

Configuration Separation

Skills with user-specific values have a ## Configuration section with a table:

## Configuration

| Setting | Value | Description |
|---------|-------|-------------|
| `daily_plans_path` | `ai-knowledge-{workspace}/projects/_daily-plans/` | Where to save daily plans |

When installing a skill that has a Configuration section:

  1. Note the configuration table to the user
  2. If the user has previously configured values for this skill (in a prior installation), preserve them
  3. Never overwrite Configuration values during update — merge them

Workflow Examples

First-time setup

User: "Install all my synthesis skills"

1. Clone/update synthesis-skills (public) → install 22 skills to ~/.claude/skills/
2. Clone/update synthesis-skills-rajiv (private) → install 13 skills to ~/.claude/skills/
3. For project-level: install synthesis-skills-mcclatchy skills to project .claude/skills/
4. Write .source.json for each
5. Check all dependencies
6. Report summary

Drift detected during update

User: "Update my skills"

1. Pull latest from each repo
2. For synthesis-daily-rituals: installed checksum ≠ source checksum
3. Read both versions
4. Installed has: added clickable link instruction (local improvement)
5. Source has: no changes since last install
6. Decision: local is ahead of source → keep local, update .source.json timestamp
7. Report: "synthesis-daily-rituals: local changes preserved (source unchanged)"

Both sides changed

User: "Update my skills"

1. Pull latest from each repo
2. For synthesis-article-writing: installed checksum ≠ source checksum
3. Source has: new Phase 3 critical review section
4. Installed has: custom anonymization examples added
5. Decision: synthesis merge needed
6. Merge: keep new Phase 3 from source + keep custom examples from local
7. Report: "synthesis-article-writing: merged (source added Phase 3, kept local customizations)"

Error Handling

  • Source repo not available locally: Report which repo is missing, suggest cloning it
  • Circular dependencies: Detect and report (should never happen with the hierarchy)
  • Corrupted.source.json: Regenerate from SKILL.md frontmatter (source_repo, source_type) and current state
  • Skill with no frontmatter: Warn — skill doesn't follow the standard. Install anyway but flag for review.

Implementation Notes

This skill is designed to be executed by an AI agent (Claude Code, Cursor, etc.), not as a shell script. The agent reads files, compares content, understands methodology structure, and makes merge decisions that a text-based tool cannot.

The install.sh scripts in each repo serve as bootstrap/fallback installers for environments without an AI agent. They handle the mechanical parts (copy, provenance, checksums) but cannot do synthesis merge — they overwrite on conflict with a drift warning.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.87%
按下载量换算23

Claude

28.17%
按下载量换算18

Cursor

20.29%
按下载量换算13

Gemini CLI

8.35%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/rajivpant/synthesis-skills --skill synthesis-skills-manager 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills