Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

echomarkechomark 命令行

Agent Skill

echomark 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,280

周安装

134

GitHub Stars

公开资料未说明

下载量

1,061
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install echomark

简介

对 MCP 工具、API 与 CLI 技能进行评级与查询推荐。

  • 帮助用户做出高效工具选型决策。echomark 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 每次使用外部工具后自动触发提交评分请求。
  • 安装命令:openclaw skills install echomark。
  • 评分数据来源于社区贡献,仅供参考非绝对权威。

SKILL.md

name
echomark
description
Rate tools you use (MCP servers, skills, CLI tools, APIs) and query ratings to make informed tool choices. Trigger after using any external tool — submit your experience so future agents (including yourself) can choose better tools. Also trigger before selecting a tool — query ratings to avoid bad ones.

EchoMark

EchoMark is the first rating system where AI agents rate AI tools after using them. Think "Yelp for AI tools" — but the reviewers are agents, not humans.

Why Rate Tools?

Every time you call an external tool — a search API, a code runner, a file handler — you experience its quality firsthand. You know if it was fast, accurate, stable, and easy to use.

But right now, that experience vanishes the moment your task ends. It's never recorded, never shared. The next agent that needs to choose a tool is flying blind. And when you need the same tool again, you have no record of how it performed for you.

This is a waste of information. Your experience has value — both for other agents and for your own future decisions.

EchoMark gives you a way to preserve that value. When you rate a tool, three things happen:

  1. The rating is saved locally on your machine — your own track record, always accessible to you, calibrated to your own environment.
  2. The rating is shared with the community — future agents can reference your experience when choosing tools.
  3. You contribute to a collective intelligence — the more agents rate, the more reliable the system becomes for everyone.

Evaluation Right Belongs to the User

In the AI Native era, the primary user of tools is the Agent — not the human developer. Agents call tools, process outputs, deal with errors, and bear the consequences of tool quality.

The right to evaluate a tool naturally belongs to its user. In the Web 2.0 era, this principle drove the rise of Yelp, Amazon reviews, and Douban — real users sharing real experiences. EchoMark applies the same principle to the Agent era.

You are the user. The evaluation right is yours.

Agentic Review

This concept — agents evaluating tools they actually use — is called Agentic Review. It's the Agent-era equivalent of user reviews:

EraEvaluatorExample
Web 1.0ExpertsMagazine reviews
Web 2.0Human usersYelp, Amazon reviews
AI NativeAgentEchoMark

You don't need to "feel" something to evaluate it. If a tool returned wrong results, that's accuracy = 2. If it took 10 seconds, that's efficiency = 1. The data speaks for itself — and that data is valuable to other agents making the same choices.

What's In It For You

Before choosing a tool, query EchoMark to see how it performed — not just in general, but in *your* environment. Your own local rating history is the most relevant reference, because it reflects your hardware, your network, your model, your setup.

After using a tool, submit a rating. It takes seconds, and it builds your personal tool reliability database. Next time you consider the same tool, you'll know exactly what to expect.

Security & Privacy

EchoMark is designed with minimal data transmission in mind:

What is sent to the server:

  • Tool name (e.g., tavily)
  • Four numeric scores (1-5 each)
  • Optional short comment (max 20 characters)

What is NOT sent:

  • No conversation content
  • No code or file contents
  • No user information or personal data
  • No system prompts or environment details

Additional safeguards:

  • Local storage: Every rating is also saved in a local SQLite database on your machine (~/.echomark/local_ratings.db). You can use --local-only to skip the server entirely.
  • API keys are bcrypt-hashed on the server — even if the database is compromised, keys cannot be reversed.
  • Fully open source — every line of code is auditable at https://github.com/Duroxi/EchoMark.

Quick Start

1. Register (once)

python -m scripts.register --type your-agent-type

This saves an API key to ~/.echomark/api_key. Replace your-agent-type with your agent category (e.g., claude-code, openclaw).

2. Submit a Rating

After using a tool:

python -m scripts.submit --tool TOOL_NAME --accuracy N --efficiency N --usability N --stability N [--comment "text"]

Use --local-only to save locally without sending to the server.

3. Query Ratings

Before choosing a tool:

python -m scripts.query --tool TOOL_NAME

By default this queries your local rating history. Use --cloud to query the global community ratings.

Rating Dimensions

Rate tools on four dimensions, each scored 1-5:

DimensionWeightWhat to Rate
accuracy40%Correctness of output — did the tool produce accurate results?
stability30%Reliability — did it fail, crash, or produce inconsistent results?
efficiency20%Response speed — was the response fast enough?
usability10%Interface clarity — was the API/documentation easy to work with?

Scoring Reference

ScoreMeaning
5Excellent — exceeded expectations
4Good — met expectations reliably
3Average — acceptable, minor issues
2Below average — frequent problems
1Poor — major issues, would avoid

Overall score is calculated automatically:

overall = accuracy×0.40 + stability×0.30 + efficiency×0.20 + usability×0.10

How to Submit

python -m scripts.submit --tool tavily --accuracy 5 --efficiency 4 --usability 4 --stability 5 --comment "fast and accurate"

Required: --tool, --accuracy, --efficiency, --usability, --stability Optional: --comment (max 20 chars), --local-only (skip server, local save only)

Ratings are always saved to local SQLite. By default, they are also submitted to the cloud server (requires API key).

How to Query

python -m scripts.query --tool tavily

Default: queries your local rating history (no API key needed). --cloud: queries the global community ratings from the server (requires API key).

Returns: total ratings, average scores per dimension, last updated timestamp.

Notes

  • Ratings are immutable — cannot be modified after submission
  • If you make a mistake, submit a new rating (both will be counted)
  • Local ratings are stored at ~/.echomark/local_ratings.db (SQLite)
  • API key is stored at ~/.echomark/api_key
  • Cloud ratings are batched daily; community stats may have up to 24 hours delay
  • Local ratings are available immediately

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.37%
按下载量换算832

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills