Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计异常

simple-skills-manager简单技能经理

Agent Skill

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

总安装

192

周安装

8

GitHub Stars

5

下载量

64
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/arcblock/agent-skills --skill simple-skills-manager

简介

simple-skills-manager 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配和来源线索筛选等研究检索场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Simple Skills Manager

Manage skill tips in ~/.claude/skills/ that point to skills from local paths or git repositories, enabling dynamic invocation via /{group}-{skill-name}.

Note: We use hyphen - as separator instead of colon : because Windows paths don't support colons in filenames.

Constants

  • Repos directory: ~/.claude/simple-skills-manager-repos/
  • Skills directory: ~/.claude/skills/
  • Backup directory: ~/.claude/simple-skills-manager-backup-last-skills/

Workflow

Step 1: Ask Operation Type

First, ask the user what operation they want to perform:

{
  "questions": [{
    "question": "What operation would you like to perform?",
    "header": "Operation",
    "options": [
      {"label": "Add (Recommended)", "description": "Add skills from a local path or git repository"},
      {"label": "Update", "description": "Update an existing skill group (re-sync from source)"},
      {"label": "Remove", "description": "Remove an existing skill group"}
    ],
    "multiSelect": false
  }]
}

Step 2: Collect Information Based on Operation

For "Add" Operation

Ask user to directly input the source path or git URL:

{
  "questions": [{
    "question": "Please enter the local path or git URL for the skills:",
    "header": "Source",
    "options": [
      {"label": "Example: /path/to/skills", "description": "Local directory containing SKILL.md files"},
      {"label": "Example: https://github.com/user/repo.git", "description": "Git repository URL (will be cloned)"}
    ],
    "multiSelect": false
  }]
}

The user will select "Other" and type the actual path or URL. The system will auto-detect the source type:

  • Git URL: starts with http://, https://, git@, or ends with .git
  • Local path: everything else (treat as filesystem path)

After getting the source, ask for the group name:

{
  "questions": [{
    "question": "What group name should be used as prefix? (e.g., 'mygroup' creates '/mygroup-skill-name')",
    "header": "Group",
    "options": [
      {"label": "Use folder name", "description": "Use the source folder/repo name as group"},
      {"label": "Custom", "description": "Enter a custom group name"}
    ],
    "multiSelect": false
  }]
}

Group name validation: The group name must:

  • Only contain lowercase letters, numbers, and hyphens (a-z, 0-9, -)
  • Not start or end with a hyphen
  • Not be empty
  • Not contain spaces, slashes, asterisks, or other special characters

If the group name is invalid, ask the user to provide a valid name.

For "Update" or "Remove" Operation

First, list existing groups by checking subdirectories in repos directory:

# List groups from repos directory (source of truth for groups)
ls -d ~/.claude/simple-skills-manager-repos/*/ 2>/dev/null | xargs -I {} basename {}

Important: Groups are determined by subdirectories in ~/.claude/simple-skills-manager-repos/, NOT by folder names in skills directory.

Display the found groups as reference information, then ask the user to input the group name they want to manage:

{
  "questions": [{
    "question": "Which group do you want to update/remove? (Enter the group name)",
    "header": "Group",
    "options": [
      {"label": "Example: mygroup", "description": "Enter the group name you want to manage"},
      {"label": "Example: arcblock", "description": "The group prefix used in skill names like /arcblock-commit"}
    ],
    "multiSelect": false
  }]
}

The user will select "Other" and type the actual group name. Validate that the group exists by checking if ~/.claude/simple-skills-manager-repos/{group}/ directory exists before proceeding.

Step 3: Backup Before Operation (Required)

Before executing any Add, Update, or Remove operation, you MUST backup the current skills directory:

# Remove old backup if exists, then create new backup
rm -rf ~/.claude/simple-skills-manager-backup-last-skills
cp -r ~/.claude/skills ~/.claude/simple-skills-manager-backup-last-skills

This ensures the user can recover their skills if something goes wrong.

Step 4: Execute Operation

Add Operation

  1. Verify and prepare source:

- If local path: Verify the path exists first, then create group directory mkdir -p ~/.claude/simple-skills-manager-repos/{group} echo "{absolute-working-path}" > ~/.claude/simple-skills-manager-repos/{group}/path.txt - If git URL: - If group directory already exists and has .git, run git pull instead: git -C ~/.claude/simple-skills-manager-repos/{group} pull - Otherwise, clone to ~/.claude/simple-skills-manager-repos/{group}/: git clone {git-url} ~/.claude/simple-skills-manager-repos/{group} - If clone/pull fails, stop and report error - do not proceed

  1. Determine working path:

- Local path: use the path from user input - Git URL: use ~/.claude/simple-skills-manager-repos/{group}/

  1. Scan for skills in the working path: find "{working-path}" -name "SKILL.md" -type f 2>/dev/null

- If no SKILL.md found, stop and report error - do not proceed

  1. Clean existing tips for this group (if group already exists):

- Read ~/.claude/simple-skills-manager-repos/{group}/skill-names.txt if it exists - Delete each skill listed in the file: # For each skill-name in skill-names.txt rm -rf ~/.claude/skills/{skill-name}

  1. Create skill tips for each SKILL.md found (see "Creating Skill Tips" section)
  2. Save skill manifest - write all created skill names to skill-names.txt: # Write skill names (one per line) to skill-names.txt echo "{group}-{skill-name-1}" > ~/.claude/simple-skills-manager-repos/{group}/skill-names.txt echo "{group}-{skill-name-2}" >> ~/.claude/simple-skills-manager-repos/{group}/skill-names.txt #... for each skill Example skill-names.txt content: my-commit my-deploy my-test
  3. Report results

Update Operation

  1. Verify group exists:

- Check if ~/.claude/simple-skills-manager-repos/{group}/ directory exists - If not exists, stop and report error - group not found

  1. Determine source type and pull latest:

- Git source: Check if it's a git repo (has .git directory) test -d ~/.claude/simple-skills-manager-repos/{group}/.git && echo "git" || echo "local" - If git repo, run git pull first: git -C ~/.claude/simple-skills-manager-repos/{group} pull - Working path: ~/.claude/simple-skills-manager-repos/{group}/ - Local path source: Check if path.txt exists in the group directory cat ~/.claude/simple-skills-manager-repos/{group}/path.txt - If exists, read the original path from it - If path.txt not found, ask user to provide the source path - Working path: the path from path.txt or user input

  1. Scan for skills in the working path: find "{working-path}" -name "SKILL.md" -type f 2>/dev/null

- If no SKILL.md found, stop and report error - do not proceed

  1. Clean existing tips using skill manifest (if exists):

- Read ~/.claude/simple-skills-manager-repos/{group}/skill-names.txt if it exists - Delete each skill listed in the file: # For each skill-name in skill-names.txt rm -rf ~/.claude/skills/{skill-name}

  1. Recreate skill tips for each SKILL.md found (see "Creating Skill Tips" section)
  2. Update skill manifest - overwrite skill-names.txt with new skill names
  3. Report results (include git pull output if applicable)

Remove Operation

  1. Verify group exists:

- Check if ~/.claude/simple-skills-manager-repos/{group}/ directory exists - If not exists, stop and report error - group not found

  1. Remove skill tips using skill manifest (if exists):

- Read ~/.claude/simple-skills-manager-repos/{group}/skill-names.txt if it exists - Delete each skill listed in the file: # For each skill-name in skill-names.txt rm -rf ~/.claude/skills/{skill-name}

  1. Remove group directory from repos: rm -rf ~/.claude/simple-skills-manager-repos/{group}
  2. Report results

Creating Skill Tips

For each SKILL.md found, extract:

  1. Skill name: From name: field in frontmatter, or from parent directory name
  2. Description: From description: field in frontmatter
  3. Allowed tools: From allowed-tools: field in frontmatter

Create directory and SKILL.md in ~/.claude/skills/{group}-{skill-name}/SKILL.md:

mkdir -p ~/.claude/skills/{group}-{skill-name}

Generated SKILL.md format:

---
name: {group}-{skill-name}
description: {original-description}
allowed-tools:
  - Read
  - Glob
  - Grep
  {... copy remaining allowed-tools from original skill, excluding duplicates}
---

# {group}-{skill-name}

This is a tip pointing to a skill from external source.

## Instructions

**IMPORTANT**: Read and execute the skill from the following path:

{absolute-path-to-original-SKILL.md}

Use the Read tool to load the actual skill content, then follow all instructions in that file.

Note: When copying allowed-tools, always include Read, Glob, Grep first (required for tip to work), then add any additional tools from the original skill that are not already listed.

Example Workflows

Adding from Git

  1. User runs /simple-skills-manager
  2. Agent asks: "What operation?" -> User selects "Add"
  3. Agent asks: "Please enter the local path or git URL" -> User types: https://github.com/example/my-skills.git
  4. Agent auto-detects it's a git URL
  5. Agent asks: "Group name?" -> User selects "Use folder name" (becomes my-skills)
  6. Agent validates group name format
  7. Agent backs up ~/.claude/skills/ to ~/.claude/simple-skills-manager-backup-last-skills/
  8. Agent clones repo to ~/.claude/simple-skills-manager-repos/my-skills/, scans skills, verifies SKILL.md files found
  9. Agent cleans old tips (if skill-names.txt exists), creates new tips
  10. Agent writes skill-names.txt with: my-skills-setup, my-skills-deploy, my-skills-test
  11. Agent reports: "Created 3 skill tips: /my-skills-setup, /my-skills-deploy, /my-skills-test"

Adding from Local Path

  1. User runs /simple-skills-manager
  2. Agent asks: "What operation?" -> User selects "Add"
  3. Agent asks: "Please enter the local path or git URL" -> User types: /home/user/projects/my-plugin
  4. Agent auto-detects it's a local path, verifies path exists
  5. Agent asks: "Group name?" -> User types custom name: myteam
  6. Agent validates group name format
  7. Agent backs up ~/.claude/skills/ to ~/.claude/simple-skills-manager-backup-last-skills/
  8. Agent creates ~/.claude/simple-skills-manager-repos/myteam/ and writes path.txt with the local path
  9. Agent scans skills, verifies SKILL.md files found
  10. Agent cleans old tips (if skill-names.txt exists), creates new tips
  11. Agent writes skill-names.txt with: myteam-build, myteam-release
  12. Agent reports: "Created 2 skill tips: /myteam-build, /myteam-release"

Updating a Group

  1. User runs /simple-skills-manager
  2. Agent asks: "What operation?" -> User selects "Update"
  3. Agent lists existing groups by checking subdirectories in ~/.claude/simple-skills-manager-repos/
  4. User types: my-skills
  5. Agent validates group exists (subdirectory exists in repos)
  6. Agent backs up ~/.claude/skills/ to ~/.claude/simple-skills-manager-backup-last-skills/
  7. Agent checks if it's a git repo (has .git) or local (has path.txt)
  8. If git: runs git pull; if local: reads path from path.txt
  9. Agent scans skills, verifies SKILL.md files found
  10. Agent reads skill-names.txt and deletes listed skills
  11. Agent recreates tips and updates skill-names.txt
  12. Agent reports: "Updated 3 skill tips for group 'my-skills'"

Removing a Group

  1. User runs /simple-skills-manager
  2. Agent asks: "What operation?" -> User selects "Remove"
  3. Agent lists existing groups by checking subdirectories in ~/.claude/simple-skills-manager-repos/
  4. User types: my-skills
  5. Agent validates group exists (subdirectory exists in repos)
  6. Agent backs up ~/.claude/skills/ to ~/.claude/simple-skills-manager-backup-last-skills/
  7. Agent reads skill-names.txt and deletes listed skills
  8. Agent removes group directory from repos
  9. Agent reports: "Removed group 'my-skills' and its repository/metadata"

Notes

  • Backup directory: ~/.claude/simple-skills-manager-backup-last-skills/ - created before each operation
  • Repos directory structure:

- Git sources: ~/.claude/simple-skills-manager-repos/{group}/ (contains .git + skill-names.txt) - Local sources: ~/.claude/simple-skills-manager-repos/{group}/ (contains path.txt + skill-names.txt)

  • Skill manifest: skill-names.txt stores exact skill folder names (one per line), used for precise deletion/update
  • Group detection: Groups are identified by subdirectories in ~/.claude/simple-skills-manager-repos/, NOT by skill folder names
  • Naming convention: Skills use hyphen - as separator (e.g., {group}-{skill-name}) for Windows compatibility
  • Local path sources are referenced directly, not copied
  • Tips dynamically load content, so changes to original skills are reflected immediately
  • Each group's tips are managed independently
  • The original skill files are never modified
  • Skills are loaded at startup - restart Claude Code after adding/updating skills

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenCode

29.61%
按下载量换算19

Claude Code

23.7%
按下载量换算15

Antigravity

17.58%
按下载量换算11

Cursor

14.18%
按下载量换算9

Gemini CLI

7.83%
按下载量换算5

Codex

3.43%
按下载量换算2

安全审计

Gen Agent Trust Hub

未通过

Socket

未通过

Snyk

未通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills