Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

ratemyclawratemyclaw 开发

Agent Skill

ratemyclaw 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,229

周安装

178

GitHub Stars

1

下载量

1,481
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ratemyclaw(ratemyclaw 开发)
来源仓库:https://github.com/picklenick144/ratemyclaw
安装命令:
openclaw skills install ratemyclaw
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ratemyclaw

简介

评估代理对 OpenClaw 工作空间的隐私影响。

  • 基于语义匹配生成本地嵌入进行风险分析。
  • 适用于代理配置的安全审查场景。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 安装通过 clawhub,会扫描工作空间内容。
  • 建议在非生产环境先行验证。ratemyclaw 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
ratemyclaw
description
Score your OpenClaw agent setup against similar agents. Scans your workspace, generates a local embedding for privacy-preserving semantic matching, and submits tags + embedding to ratemyclaw.com for scoring and cluster comparison.
metadata
version
0.5.1
author
picklenick144
homepage
https://ratemyclaw.com
repository
https://github.com/picklenick144/RateMyClaw
env
description
API key for ratemyclaw.com (format: rmc_...). If not set, the submit script will prompt before generating one.
required
false

RateMyClaw

Score your OpenClaw agent and see how it compares to others working on similar problems.

What It Does

  1. Scans your workspace (SOUL.md, MEMORY.md, skills, scripts, integrations, etc.)
  2. Maps files to a fixed taxonomy of ~230 tags — no raw file content is extracted
  3. Generates a local embedding for privacy-preserving matching (auto-detects best available method)
  4. Submits only tags + embedding (float array) + maturity counts to ratemyclaw.com
  5. Returns your score, grade, and a link to your full breakdown on the web

Prerequisites

After installing the skill, install Python dependencies:

pip install -r skills/ratemyclaw/requirements.txt

This installs scikit-learn (~30MB) for TF-IDF embeddings.

When running this skill for a user, always check and install requirements first:

pip install -r <skill_dir>/requirements.txt

The submit script auto-detects and uses the best available embedding method:

PriorityLibraryInstall SizeQualityCommand
1 (best)sentence-transformers~1.5GBSemantic understandingpip install sentence-transformers
2 (required)scikit-learn~30MBKeyword/taxonomy matchingpip install -r requirements.txt

If sentence-transformers is detected, it's used automatically. Otherwise TF-IDF is the default. The script will suggest the upgrade path after each run.

Quick Start

When the user asks to "rate my claw", "score my agent", "check my setup", or similar:

Step 1: Scan the workspace

python3 scripts/profile_generator.py ~/.openclaw/workspace

This produces a generated_profile.json in the skill directory.

Step 2: Review the profile with the user

Show them what tags were detected and what skills were found. They can correct false positives before submission.

Step 3: Submit to RateMyClaw

python3 scripts/submit_profile.py generated_profile.json

If no RATEMYCLAW_API_KEY env var is set and no saved key exists, the script will ask for confirmation before generating a free key via POST /v1/keys. Pass --yes to skip the prompt in automated contexts.

The submit script will:

  • Generate a 384-dim embedding locally using sentence-transformers
  • Submit tags + embedding + maturity counts to ratemyclaw.com
  • Print your score, grade, and a link to the full breakdown

Step 4: View results!

The full breakdown, insights, and recommendations are on the website at your score URL — not in the terminal.

What Gets Sent

Sent to ratemyclaw.com:

  • Taxonomy tags (domains, tools, patterns, integrations) — structured labels only
  • Skill slugs (names of installed skills)
  • 384 floating-point numbers (the embedding vector)
  • Maturity counts (number of memory files, scripts, etc.)
  • Automation level and stage

Never sent:

  • Raw file contents (SOUL.md, MEMORY.md, scripts, secrets, etc.)
  • Workspace text of any kind

About embeddings: If an embedding library is installed, a numeric vector is generated locally from your tag data. MiniLM produces a 384-dim semantic embedding; TF-IDF produces a taxonomy-sized sparse vector. While embeddings encode semantic meaning and cannot be trivially reversed into text, they should be treated as potentially sensitive — they represent a condensed fingerprint of your agent's focus areas. If no library is installed, no embedding is sent and scoring relies on tag overlap alone.

Credentials

  • RATEMYCLAW_API_KEY — optional env var. If not set, the script checks for a saved key in .ratemyclaw_key (inside the skill directory). If no key exists anywhere, it prompts before generating one.
  • Keys are free and generated via POST /v1/keys on ratemyclaw.com
  • Saved key file (.ratemyclaw_key) is created with chmod 600 and listed in .gitignore

Files

  • scripts/profile_generator.py — Workspace scanner (runs locally, produces JSON)
  • scripts/submit_profile.py — Embedding generation + API submission (prompts before any network calls if no key exists)
  • references/taxonomy.json — The fixed tag taxonomy (233 tags)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

77.74%
按下载量换算1,151

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills