Install
$ agentstack add skill-countbot-ai-countbot-find-skills ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
技能搜索、安装与管理
入口
python3 skills/find-skills/scripts/skillhub_tool.py search "关键词" --json
python3 skills/find-skills/scripts/skillhub_tool.py install --json
python3 skills/find-skills/scripts/skillhub_tool.py list --json
python3 skills/find-skills/scripts/skillhub_tool.py enable --json
python3 skills/find-skills/scripts/skillhub_tool.py disable --json
python3 skills/find-skills/scripts/skillhub_tool.py delete --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 输出结果,可选。
返回字段:
slugnamedescriptionversion
install
python3 skills/find-skills/scripts/skillhub_tool.py install [--force] [--json]
参数说明:
slug
技能唯一标识,必填。
--force
目标目录已存在时覆盖安装,可选。
--json
以 JSON 输出安装结果,可选。
行为说明:
- 默认安装到当前 workspace 的
workspace/skills// - 安装结果会写入
workspace/skills/.skills_store_lock.json
list
python3 skills/find-skills/scripts/skillhub_tool.py list [--json]
参数说明:
--json
以 JSON 输出当前 workspace 技能列表,可选。
返回字段:
slugpathstatusenabledmanagednameversionsource
enable
python3 skills/find-skills/scripts/skillhub_tool.py enable [--json]
参数说明:
slug
要启用的技能 slug,必填。
--json
以 JSON 输出结果,可选。
行为说明:
- 启用状态会写入
workspace/.skills_config.json
disable
python3 skills/find-skills/scripts/skillhub_tool.py disable [--json]
参数说明:
slug
要禁用的技能 slug,必填。
--json
以 JSON 输出结果,可选。
行为说明:
- 禁用状态会写入
workspace/.skills_config.json
delete
python3 skills/find-skills/scripts/skillhub_tool.py delete [--json]
参数说明:
slug
要删除的技能 slug,必填。
--json
以 JSON 输出结果,可选。
行为说明:
- 删除
workspace/skills// - 同时清理
workspace/skills/.skills_store_lock.json - 同时清理
workspace/.skills_config.json中对应禁用状态
bootstrap
python3 skills/find-skills/scripts/skillhub_tool.py bootstrap [--cli-only | --skill-only | --plugin-only] [--no-skills | --with-skills] [--restart-gateway] [--json]
参数说明:
--cli-only
仅安装 SkillHub CLI。
--skill-only
仅安装 SkillHub 自带技能模板。
--plugin-only
仅安装 SkillHub 插件。
--no-skills
跳过 workspace skill 模板安装。
--with-skills
强制安装 workspace skill 模板。
--restart-gateway
安装完成后尝试重启 gateway。
--json
以 JSON 输出结果,可选。
行为说明:
- CLI 安装到用户目录
- skill 模板默认写入当前 CountBot workspace
- 不覆盖已存在的本地 skill
工作流
- 用户询问有没有某类技能时,先执行
search - 返回 1 到 3 个最相关结果
- 用户确认后执行
install - 用户明确要求管理已安装技能时,再执行
list、enable、disable、delete - 用户明确要求安装 SkillHub CLI 时,再执行
bootstrap
规则
- 搜索和安装依托
https://skillhub.tencent.com/的公开接口与下载地址 - 用户已经给出明确
slug时,可以直接安装 - 用户只是在问“有没有某类技能”时,先搜索,不要直接安装
- 输出保持简洁,不补充无关说明
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: countbot-ai
- Source: countbot-ai/CountBot
- License: MIT
- Homepage: https://654321.ai
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.