find-skills

find-skills is a skill for Claude Code, Codex from countbot-ai/CountBot. It costs 51 tokens per session (1,162 once invoked), scanned A, original, MIT.

A tool for searching, installing, listing, enabling, disabling, and deleting coding-agent skills from Tencent SkillHub, a skill marketplace and registry. It can also install the SkillHub command-line tool itself.

In plain words
What is it for?
Finding skills by keyword, installing a skill, viewing installed skills, turning skills on or off, removing them, and setting up the SkillHub CLI.
Why use it?
It gives developers one command-based way to manage agent extensions and search for a skill when the needed capability is not already installed.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Finding skills by keyword, installing a skill, viewing installed skills, turning skills on or off, removing them, and setting up the SkillHub CLI.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/countbot-ai/countbot/find-skills
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add countbot-ai/CountBot --skill find-skills
Clone the repo
git clone --depth 1 https://github.com/countbot-ai/CountBot

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for find-skills

README.md
[![agentmods](https://agentmods.dev/badge/skills/countbot-ai/countbot/find-skills.svg)](https://agentmods.dev/skills/countbot-ai/countbot/find-skills)
Your own site
<a href="https://agentmods.dev/skills/countbot-ai/countbot/find-skills"><img src="https://agentmods.dev/badge/skills/countbot-ai/countbot/find-skills.svg" alt="Measured on agentmods" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,162 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00051 $0.01162
Opus 5 $0.00026 $0.00581
Sonnet 5 $0.00010 $0.00232
Haiku 4.5 $0.00005 $0.00116

Measured 7d ago against content hash 62828dc845be, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

find-skills scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/skillhub_tool.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

workspace/skills/find-skills/SKILL.md · 183 lines

How it starts

The opening of the file, as written. The whole thing — 183 lines — stays where its author put it; the contents beside it link to each section on GitHub.

技能搜索、安装与管理

入口

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

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

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

python3 skills/find-skills/scripts/skillhub_tool.py list [--json]

参数说明:

  • --json 以 JSON 输出当前 workspace 技能列表,可选。

返回字段:

  • slug
  • path
  • status
  • enabled
  • managed
  • name
  • version
  • source

enable

python3 skills/find-skills/scripts/skillhub_tool.py enable <slug> [--json]

参数说明:

  • slug 要启用的技能 slug,必填。
  • --json 以 JSON 输出结果,可选。

行为说明:

  • 启用状态会写入 workspace/.skills_config.json

disable

python3 skills/find-skills/scripts/skillhub_tool.py disable <slug> [--json]

参数说明:

  • slug 要禁用的技能 slug,必填。
  • --json 以 JSON 输出结果,可选。

行为说明:

  • 禁用状态会写入 workspace/.skills_config.json

delete

python3 skills/find-skills/scripts/skillhub_tool.py delete <slug> [--json]

参数说明:

  • slug 要删除的技能 slug,必填。
  • --json 以 JSON 输出结果,可选。

行为说明:

  • 删除 workspace/skills/<slug>/
  • 同时清理 workspace/skills/.skills_store_lock.json
  • 同时清理 workspace/.skills_config.json 中对应禁用状态

Read the full file on GitHub · 183 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 183 lines · 51 tokens per session scan A 62828dc845be

Subscribe to this mod's changes

find-skills is a skill published in the GitHub repository countbot-ai/CountBot (774 stars, last pushed 3d ago), licensed MIT. It adds 51 tokens to every session and 1,162 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.