ThinkTank Skill Finder

v1.0.9

ThinkTank Skill Finder. 面向智库研究场景的技能检索、推荐、比选与技能包安装。用户提到“找 skill”“推荐 skill”“安装 skill”“装一套研究技能”“给我配智库研究工具链”“有没有适合行业研究/学术研究/新闻监测/报告写作/画图/PDF/表格/PPT 的 skill”时使用。

0· 189·1 current·1 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for sapereaude2014/thinktank-skill-finder.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "ThinkTank Skill Finder" (sapereaude2014/thinktank-skill-finder) from ClawHub.
Skill page: https://clawhub.ai/sapereaude2014/thinktank-skill-finder
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install thinktank-skill-finder

ClawHub CLI

Package manager switcher

npx clawhub@latest install thinktank-skill-finder
Security Scan
Capability signals
Requires sensitive credentials
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the included files and behavior: SKILL.md describes searching, recommending and installing ClawdHub skills; scripts/install_bundle.py and skills.csv implement bundle selection and call the clawdhub CLI. No unrelated credentials, binaries, or capabilities are requested.
Instruction Scope
Runtime instructions call clawdhub search/inspect/install and curl the ClawdHub API, and the install script executes the clawdhub CLI and writes into the user's ~/.agents/skills directory. This is in-scope for an installer/finder skill, but it does require executing shell commands and creating files under the user home — the user should expect installers to run and network calls to ClawdHub (and optionally its mirror or official registry).
Install Mechanism
No automatic install spec is present; the skill is instruction-first and ships a Python script. The script uses subprocess to invoke the existing clawdhub CLI rather than fetching arbitrary remote executables itself. There are no obscure download URLs or archive extraction steps in the package.
Credentials
The skill itself requires no environment variables or credentials. However, many of the individual skills listed in skills.csv do depend on API keys or external services. The installer defaults to a 'restricted' mode that avoids installing skills marked as requiring API keys or external (non-China-mirror) resources; switching to 'standard' mode will attempt to install those items. Users should be aware installed skills may later request secrets (API keys) unrelated to this installer.
Persistence & Privilege
always:false and the skill does not request elevated platform privileges. The installer creates/updates directories under the user's home (~/.agents/skills/...), which is expected behavior for a skill manager. It does not modify other skills' configurations or request persistent always-on inclusion.
Assessment
This skill appears to do what it says: it helps discover and install ClawdHub skills and includes a Python installer that runs the local clawdhub CLI and writes under ~/.agents/skills/. Before using it: (1) verify you have a trusted clawdhub CLI installed (the script will call it), (2) run in 'restricted' mode by default to avoid automatically installing skills that need external API keys, (3) inspect skills.csv to see which skills will be installed and whether they request API keys or external services, (4) be prepared that installs will create files under your home directory and perform network calls to the ClawdHub mirror or fallback registry, and (5) if you want extra caution, run the install script in a controlled environment (container or VM) first to observe behavior.

Like a lobster shell, security has layers — review code before you run it.

latestvk970k7yszz9586vj8jthp1pj4185qmne
189downloads
0stars
10versions
Updated 1h ago
v1.0.9
MIT-0

ThinkTank Skill Finder v1.0.9

面向智库研究场景的一站式 Skill 发现与安装工具。支持通过 ClawdHub 镜像进行检索与安装,便于中国网络环境使用;既可按需推荐和安装单个 Skill,也可直接安装智库研究核心包,以及学术研究、动态监测、分析建模等增强包。技能包安装默认使用 restricted 模式,不安装需要 API Key 或依赖中国以外网络的 skill;如需完整能力,可切换到 standard 模式。个别 skill 若中国镜像暂未收录,脚本会自动回退到 ClawdHub 官方源安装。

路径约定:本文所有路径都相对于本 skill 目录。执行前先定位 skills/thinktank-skill-finder/,下文用 <skill_dir> 表示。默认安装目标是用户目录下的 .agents/skills/;也就是安装到 <user_home>/.agents/skills/<skill-name>/,适合 Trae IDE 这类读取 .agents/skills/ 的环境。

功能

当用户问:

  • "有什么 skill 可以做智库研究?"
  • "找一个能做行业研究的 skill"
  • "有没有画图/报告相关 skill"
  • "安装智库研究技能包"

使用方法

1. 搜索 Skills

clawdhub search "<英文检索词>"

2. 查看详情(含统计数据)

clawdhub inspect <skill-name>

或者直接 API 查询 stats:

curl "https://clawhub.ai/api/v1/skills/<skill-name>" | jq '.skill.stats'

3. 安装单个 Skill

clawdhub install <skill-name> --no-input --registry=https://cn.clawhub-mirror.com

# 如果中国镜像里没有这个 skill,再回退到官方源
clawdhub install <skill-name> --no-input

4. 安装智库研究技能包(按 skills.csv)

# 列出可用的技能包
cd <skill_dir> && python scripts/install_bundle.py --list

# 安装核心包(默认 restricted 模式)
cd <skill_dir> && python scripts/install_bundle.py thinktank-core

# 安装多个包(自动去重)
cd <skill_dir> && python scripts/install_bundle.py thinktank-core academic-research-plus

# 完整安装模式
cd <skill_dir> && python scripts/install_bundle.py thinktank-core --mode standard

# 如果要覆盖默认安装目录,可显式指定 clawdhub workdir/dir
cd <skill_dir> && python scripts/install_bundle.py thinktank-core --workdir "D:/demo/.agents" --dir skills

5. 验证安装

clawdhub --workdir ~/.agents --dir skills list
或者查看单个 Skill 详情:
clawdhub --workdir ~/.agents --dir skills inspect <skill-name>

工作流程

场景 A:推荐单个技能
1. 理解用户需求
2. 理解意图并改写为英文检索词
3. 搜索 ClawdHub
4. 列出相关 Skills(含下载量/stars)
5. 推荐最合适的单个 Skill,并提供安装命令
6. 如有需要,补一句引导:如果你后面还会经常做这类任务,我也可以继续帮你配一组相关技能。
7. 用户想配一组相关技能时,转入场景 B;用户只要当前单个 Skill 时,执行安装命令并完成验证

场景 B:安装技能包
1. 识别“安装技能包/全套/bundle”等意图
2. 调用脚本查看可用的技能包
3. 向用户介绍各个 bundle 的用途和适用场景,并确认:是按默认的 restricted 模式安装,还是连同需要 API Key 或依赖中国以外网络的 skill 一起安装(standard 模式)
4. 如果用户指定了一个或多个 bundle,且接受默认模式,就执行“安装智库研究技能包”里的 restricted 命令
5. 如果用户指定了一个或多个 bundle,并明确要把需要 API Key 或依赖中国以外网络的 skill 也一起装上,就执行“安装智库研究技能包”里的 standard 命令
6. 安装完成后执行验证,并简要说明当前使用的是 restricted 还是 standard 模式

输出格式

搜索结果应包含:

  • Skill 名称
  • 简短描述(中文)
  • 下载量
  • Stars 数
  • 是否已安装

示例

用户: "找一个能做行业研究的 skill"

搜索: clawdhub search "market research"

推荐输出:

🔎 "行业研究" 结果:

1. market-research-agent
   描述:行业研究、竞品分析和市场规模拆解
   下载:5,433 | Stars: 17 | ❌ 未安装
   → 推荐安装

安装命令: clawdhub install market-research-agent --no-input --registry=https://cn.clawhub-mirror.com
安装后验证: clawdhub --workdir ~/.agents --dir skills inspect market-research-agent

帮助用户发现需要的智库研究 Skills 🔎

Comments

Loading comments...