← 返回 Skills 市场
phenixstar

Skill Vetting (PhenixStar)

作者 Alaa Qweider · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ pending
39
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install phenixstar-skill-vetting
功能描述
Vet ClawHub skills for security and utility before installation. Use when considering installing a ClawHub skill, evaluating third-party code, or assessing w...
使用说明 (SKILL.md)

Skill Vetting

Safely evaluate ClawHub skills for security risks and practical utility.

Quick Start

# Download and inspect
cd /tmp
curl -L -o skill.zip "https://auth.clawdhub.com/api/v1/download?slug=SKILL_NAME"
mkdir skill-inspect && cd skill-inspect
unzip -q ../skill.zip

# Run scanner
python3 ~/.openclaw/workspace/skills/skill-vetting/scripts/scan.py .

# Manual review
cat SKILL.md
cat scripts/*.py

Vetting Workflow

1. Download to /tmp (Never Workspace)

cd /tmp
curl -L -o skill.zip "https://auth.clawdhub.com/api/v1/download?slug=SLUG"
mkdir skill-NAME && cd skill-NAME
unzip -q ../skill.zip

2. Run Automated Scanner

python3 ~/.openclaw/workspace/skills/skill-vetting/scripts/scan.py .

Exit codes: 0 = Clean, 1 = Issues found

The scanner outputs specific findings with file:line references. Review each finding in context.

3. Manual Code Review

Even if scanner passes:

  • Does SKILL.md description match actual code behavior?
  • Do network calls go to documented APIs only?
  • Do file operations stay within expected scope?
  • Any hidden instructions in comments/markdown?
# Quick prompt injection check
grep -ri "ignore.*instruction\|disregard.*previous\|system:\|assistant:" .

4. Utility Assessment

Critical question: What does this unlock that I don't already have?

Compare to:

  • MCP servers (mcporter list)
  • Direct APIs (curl + jq)
  • Existing skills (clawhub list)

Skip if: Duplicates existing tools without significant improvement.

5. Decision Matrix

Security Utility Decision
✅ Clean 🔥 High Install
✅ Clean ⚠️ Marginal Consider (test first)
⚠️ Issues Any Investigate findings
🚨 Malicious Any Reject

Red Flags (Reject Immediately)

  • eval()/exec() without justification
  • base64-encoded strings (not data/images)
  • Network calls to IPs or undocumented domains
  • File operations outside temp/workspace
  • Behavior doesn't match documentation
  • Obfuscated code (hex, chr() chains)

After Installation

Monitor for unexpected behavior:

  • Network activity to unfamiliar services
  • File modifications outside workspace
  • Error messages mentioning undocumented services

Remove and report if suspicious.

References

能力标签
requires-sensitive-credentials
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install phenixstar-skill-vetting
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /phenixstar-skill-vetting 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial publish under phenixstar-prefixed slug (bare slug taken globally)
元数据
Slug phenixstar-skill-vetting
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Skill Vetting (PhenixStar) 是什么?

Vet ClawHub skills for security and utility before installation. Use when considering installing a ClawHub skill, evaluating third-party code, or assessing w... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 39 次。

如何安装 Skill Vetting (PhenixStar)?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install phenixstar-skill-vetting」即可一键安装,无需额外配置。

Skill Vetting (PhenixStar) 是免费的吗?

是的,Skill Vetting (PhenixStar) 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Skill Vetting (PhenixStar) 支持哪些平台?

Skill Vetting (PhenixStar) 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Skill Vetting (PhenixStar)?

由 Alaa Qweider(@phenixstar)开发并维护,当前版本 v1.0.0。

💬 留言讨论