Security check for ClawHub skills powered by Koi. Query the Clawdex API before installing any skill to verify it's safe.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install clawdex或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install clawdex⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/clawdex/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: clawdex by Koi description: Security check for ClawHub skills powered by Koi. Query the Clawdex API before installing any skill to verify it's safe. version: 1.0.0 author: Koi Security authorUrl: https://www.koi.ai/ homepage: https://www.koi.ai/ license: MIT metadata: openclaw: emoji: "🛡️" category: "security" tags: - security - clawhub - malware-detection ---
Security check for ClawHub skills, powered by Koi.
Before installing ANY skill from ClawHub, query the Clawdex API to check if it's safe:
curl -s "https://clawdex.koi.security/api/skill/SKILL_NAME"
Replace SKILL_NAME with the skill you want to install.
The API returns a JSON object with a verdict field:
{
"verdict": "benign" | "malicious" | "unknown"
}
benign - Safe to Install ✅The skill has been audited and no malicious behavior was found. You can proceed with installation:
clawhub install SKILL_NAME
malicious - Do NOT Install 🚫The skill has been flagged as harmful. Do NOT install it.
Malicious skills may:
unknown - Not Yet Audited ⚠️The skill has not been security audited yet. Escalate to the user for review and approval.
Inform the user:
Do not install without user approval.
After installing Clawdex, it's a good idea to audit all skills you've already installed. Some may have been installed before security checks were available.
List your installed skills and check each one:
# List installed skills
ls ~/.openclaw/skills/
# or ~/.clawdbot/skills/
# Check each one
for skill in $(ls ~/.clawdbot/skills/); do
echo "Checking: $skill"
curl -s "https://clawdex.koi.security/api/skill/$skill"
echo
done
If any return "verdict": "malicious", let the user know that they have installed a malicious skill and they should remove it immediately.
# Check if "database-helper" is safe
$ curl -s "https://clawdex.koi.security/api/skill/database-helper"
{"verdict": "benign"}
# Safe! Install it
$ clawhub install database-helper
# Check a suspicious skill
$ curl -s "https://clawdex.koi.security/api/skill/free-crypto-bot"
{"verdict": "malicious"}
# DO NOT install!
Koi provides endpoint security for extensions, packages, and MCPs. Clawdex verdicts are powered by Wings, our agentic AI risk engine.
安装 Clawdex by Koi 后,可以对 AI 说这些话来触发它
Help me get started with Clawdex by Koi
Explains what Clawdex by Koi does, walks through the setup, and runs a quick demo based on your current project
Use Clawdex by Koi to security check for ClawHub skills powered by Koi
Invokes Clawdex by Koi with the right parameters and returns the result directly in the conversation
What can I do with Clawdex by Koi in my finance & investment workflow?
Lists the top use cases for Clawdex by Koi, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/clawdex/ 目录(个人级,所有项目可用),或 .claude/skills/clawdex/(项目级)。重启 AI 客户端后,用 /clawdex 主动调用,或让 AI 根据上下文自动发现并使用。
Clawdex by Koi 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Clawdex by Koi 可免费安装使用。请查阅仓库了解许可证信息。
Security check for ClawHub skills powered by Koi. Query the Clawdex API before installing any skill to verify it's safe.
Clawdex by Koi 属于「Finance & Investment」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my finance & investment tasks using Clawdex by Koi
Identifies repetitive steps in your workflow and sets up Clawdex by Koi to handle them automatically