find-skills
基于腾讯 SkillHub 搜索、安装和管理技能。用户提到“找技能”“安装 skill”“扩展功能”“启用/禁用 skill”“删除 skill”“安装 SkillHub CLI”时优先使用。
npx skills add countbot-ai/CountBot --skill find-skills --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 技能搜索、安装与管理 ## 入口 ```bash python3 skills/find-skills/scripts/skillhub_tool.py search "关键词" --json python3 skills/find-skills/scripts/skillhub_tool.py install <slug> --json python3 skills/find-skills/scripts/skillhub_tool.py list --json python3 skills/find-skills/scripts/skillhub_tool.py enable <slug> --json python3 skills/find-skills/scripts/skillhub_tool.py disable <slug> --json python3 skills/find-skills/scripts/skillhub_tool.py delete <slug> --json python3 skills/find-skills/scripts/skillhub_tool.py bootstrap --cli-only --json ``` ## 命令与参数 ### `search` ```bash python3 skills/find-skills/scripts/skillhub_tool.py search "关键词" [--limit N] [--json] ``` 参数说明: - `query` 搜索关键词,必填。建议使用 1 个简洁词组。 - `--limit` 返回数量,可选。范围 `1-50`,默认 `10`。 - `--json` 以 JSON 输出结果,可选。 返回字段: - `slug` - `name` - `description` - `version` ### `install` ```bash python3 skills/find-skills/scripts/skillhub_tool.py install <slug> [--force] [--json] ``` 参数说明: - `slug` 技能唯一标识,必填。 - `--force` 目标目录已存在时覆盖安装,可选。 - `--json` 以 JSON 输出安装结果,可选。 行为说明: - 默认安装到当前 workspace 的 `workspace/skills/<slug>/` - 安装结果会写入 `workspace/skills/.skills_store_lock.json` ### `list` ```bash python3 skills/find-skills/scripts/skillhub_tool.py list [-
- 入口
- 命令与参数
- search
- install
- list
- enable
- disable
- delete
- bootstrap
- 工作流
- 规则
python3 skills/find-skills/scripts/skillhub_tool.py search "关键词" --json python3 skills/find-skills/scripts/skillhub_tool.py install <slug> --json python3 skills/find-skills/scripts/skillhub_tool.py list --json python3 skills/find-skills/scripts/skillhub_tool.py enable <slug> --json python3 skills/find-skills/scripts/skillhub_tool.py disable <slug> --json python3 skills/find-skills/scripts/skillhub_tool.py delete <slug> --json python3 skills/find-skills/scripts/skillhub_tool.py bootstrap --cli-only --json python3 skills/find-skills/scripts/skillhub_tool.py search "关键词" [--limit N] [--json] python3 skills/find-skills/scripts/skillhub_tool.py install <slug> [--force] [--json] python3 skills/find-skills/scripts/skillhub_tool.py list [--json]
What does the find-skills skill do?
基于腾讯 SkillHub 搜索、安装和管理技能。用户提到“找技能”“安装 skill”“扩展功能”“启用/禁用 skill”“删除 skill”“安装 SkillHub CLI”时优先使用。
How do I install it?
Run `npx skills add countbot-ai/CountBot --skill find-skills --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From countbot-ai/CountBot, a repository with 760 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
