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

skills-manager技能经理

Agent Skill

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

总安装

512

周安装

22

GitHub Stars

1

下载量

180
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/fairchild/dotclaude --skill skills-manager

简介

用于统一技能全生命周期管理,支持安装、搜索、验证与审计操作。

  • 适用于需要跨生态系统集成与技能健康度监控的场景。
  • 通过 /skills-manager list 查看已装技能详情,/search 查询可用技能。
  • 安装命令:npx skills add https://github.com/fairchild/dotclaude --skill skills-manager。
  • 建议定期 audit 技能状态,及时移除废弃或失效模块。

SKILL.md

Skills Manager

Unified skill lifecycle management across agents.

Usage

/skills-manager                    # Quick status overview
/skills-manager list               # All skills with origin, description, agent
/skills-manager search <query>     # Search skills.sh ecosystem
/skills-manager install <source>   # Install from ecosystem or GitHub
/skills-manager remove <name>      # Remove a skill
/skills-manager inspect <name>     # Deep-read: frontmatter, scripts, structure
/skills-manager validate [path]    # Validate structure and frontmatter
/skills-manager audit              # System-wide health check
/skills-manager update             # Check and apply ecosystem updates
/skills-manager create             # Guided creation (delegates to skill-creator)

Status (/skills-manager)

Quick overview of all installed skills.

bun ~/.claude/skills/skills-manager/scripts/manage.ts status

Shows: total count, breakdown by origin (local/ecosystem/symlink) and agent, lock file stats, validation issue count.


List (/skills-manager list)

All installed skills across agents with metadata.

Local skills:

bun ~/.claude/skills/skills-manager/scripts/manage.ts list

Ecosystem skills (via npx):

npx skills list -g

Present both outputs together — local list shows origin/agent/description, ecosystem list shows remote registry state.


Search (/skills-manager search)

Search the skills.sh ecosystem for installable skills.

npx skills find <query>

Present results with name, source, and install command. If no results, suggest npx skills find (interactive mode) or creating a custom skill.


Install (/skills-manager install)

Install a skill from the ecosystem or GitHub.

npx skills add <source> -g -y

Source formats:

  • owner/repo@skill-name — from skills.sh registry
  • https://github.com/owner/repo — from GitHub directly
  • Local path — for development

The -g flag installs globally (user-level), -y skips confirmation.

After install, run validate to confirm the skill is well-formed:

bun ~/.claude/skills/skills-manager/scripts/manage.ts validate ~/.agents/skills/<name>

Remove (/skills-manager remove)

Remove an installed skill.

npx skills remove <name> -g -y

Inspect (/skills-manager inspect)

Deep-read a specific skill by name.

bun ~/.claude/skills/skills-manager/scripts/manage.ts inspect <name>

Shows: path, origin, agent, symlink target, frontmatter fields, scripts with size and executable status, references directory listing, SKILL.md heading structure.


Validate (/skills-manager validate [path])

Validate skill structure and frontmatter against the spec.

bun ~/.claude/skills/skills-manager/scripts/manage.ts validate <path>

Path can be:

  • A single skill directory (containing SKILL.md)
  • A directory of skills (e.g., ~/.claude/skills)

Checks performed

Errors (blocking):

  • SKILL.md exists with valid frontmatter
  • Required fields: name, description
  • Name: hyphen-case, max 64 chars, no leading/trailing/consecutive hyphens
  • Description: 50+ chars, max 1024 chars, no angle brackets
  • No forbidden files (README.md, CHANGELOG.md, etc.)

Warnings:

  • Non-spec frontmatter keys (origin, inspired-by, hooks, status) — suggest metadata: migration
  • Unexpected keys beyond spec-allowed set
  • SKILL.md over 500 lines
  • Scripts not executable
  • Broken internal file references

Audit (/skills-manager audit)

System-wide health check across all agents.

bun ~/.claude/skills/skills-manager/scripts/manage.ts audit

Runs:

  1. Validation — every skill checked against spec
  2. Symlink health — dead symlinks flagged
  3. Lock file consistency — lock entries with missing directories
  4. Name overlap — same skill name across agents

Returns exit code 1 if any errors found.


Update (/skills-manager update)

Check for and apply ecosystem skill updates.

Check for updates:

npx skills check

Apply updates:

npx skills update

Create (/skills-manager create)

Delegates to the skill-creator skill for guided 6-step creation.

When user runs /skills-manager create:

  1. Invoke /skill-creator which provides the full guided workflow
  2. After creation, run validate on the new skill: bun ~/.claude/skills/skills-manager/scripts/manage.ts validate <new-skill-path>

Cross-Agent Reference

AgentSkills DirLock File
Claude Code~/.claude/skills/~/.agents/.skill-lock.json
Codex~/.codex/skills/~/.agents/.skill-lock.json
Agents CLI~/.agents/skills/~/.agents/.skill-lock.json

All agents share the same lock file. The npx skills CLI auto-detects which agents are installed and manages skills for all of them.

Skill Conventions

  • Frontmatter: name (hyphen-case), description (50-1024 chars), license (Apache-2.0)
  • Structure: SKILL.md + optional scripts/, references/, assets/
  • Forbidden: README.md, CHANGELOG.md, INSTALLATION.md, QUICK_REFERENCE.md
  • Non-spec keys: origin, inspired-by, status, hooks — should migrate to metadata:
  • Experimental skills: status: experimental in frontmatter (no directory prefix)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.55%
按下载量换算68

Claude

31.18%
按下载量换算56

Cursor

16.81%
按下载量换算30

Gemini CLI

8.1%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills