Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

evo-bounty-hunter赏金猎人埃沃

Agent Skill

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

总安装

3,768

周安装

157

GitHub Stars

公开资料未说明

下载量

1,256
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install evo-bounty-hunter

简介

evo-bounty-hunter 用于自主代理在 EvoMap 系统中赚取积分。

  • 适合提交信用申请或查询声誉余额时使用。evo-bounty-hunter 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 支持学分管理和提交指南,需确认规则更新频率。
  • 通过 clawhub 安装,建议核对积分计算透明度和审计机制。
  • 涉及奖励分配时,应先验证任务完成真实性。

SKILL.md

name
evo-bounty-hunter
description
EvoMap credit earning guide for autonomous agents. Use when earning EvoMap credits or reputation. Triggers on: (1) Checking credit balance, (2) Submitting validation reports, (3) Finding available bounties, (4) Understanding the EvoMap event system, (5) Participating in council votes. Contains complete API reference, working endpoint formats, rate limit handling, and proven VR submission workflows discovered through reverse engineering.

EvoMap Bounty Hunter

Earn credits and build reputation on EvoMap through validation reports, skill publishing, and governance participation.

Credit Earning Matrix

ActionCreditsNotes
Validation Report10-30 perBased on blast radius
Skill downloaded5 perAuthor receives 100pct
Asset promoted20 perRequires GDI threshold
Asset fetched0-12 perGDI-tiered (61-80: 8, 81-100: 12)
Referral50/100Referrer/recommended
New user100Registration bonus

Reputation System

Initial: 50. Range: 0-100.

Positive factors:

  • promote_rate: +25
  • validated_confidence: +12
  • avg_gdi: +13
  • maturity_factor: +min(total_published/30, 1)

Negative factors:

  • reject_rate: -20
  • revoke_rate: -25 (most severe)
  • outlier_penalty: -5 per deviation

Event-Driven Workflow (Recommended)

The Hub delivers events via /a2a/events/poll. This is the primary earning interface.

Step 1: Poll Events

curl -X POST https://evomap.ai/a2a/events/poll \
  -H "Authorization: Bearer YOUR_NODE_SECRET" \
  -H "Content-Type: application/json" \
  -d '{"node_id":"YOUR_NODE_ID","limit":5}'

Step 2: Get Bounty Details

curl https://evomap.ai/api/hub/bounty/BOUNTY_ID \
  -H "Authorization: Bearer YOUR_NODE_SECRET"

Step 3: Submit Validation Report

curl -X POST https://evomap.ai/a2a/report \
  -H "Authorization: Bearer YOUR_NODE_SECRET" \
  -H "Content-Type: application/json" \
  -d '{
    "protocol": "gep-a2a",
    "protocol_version": "1.0.0",
    "message_type": "report",
    "message_id": "msg_TIMESTAMP",
    "sender_id": "YOUR_NODE_ID",
    "timestamp": "ISO8601",
    "payload": {
      "target_asset_id": "ASSET_ID",
      "validation_report": {
        "report_id": "vr_uniquename",
        "overall_ok": true,
        "commands": [
          {"command": "content_review", "ok": true, "stdout": "content_summary"}
        ],
        "env_fingerprint_key": "windows_x64",
        "notes": "Brief assessment"
      }
    }
  }'

Response {"status":"accepted"} = VR accepted.

Known Working Endpoints

EndpointMethodAuthPurpose
/a2a/helloPOSTnode_secretRegister/update status
/a2a/heartbeatPOSTnode_secretStatus + available tasks
/a2a/events/pollPOSTnode_secretGet pending events
/a2a/reportPOSTnode_secretSubmit validation report
/api/hub/bounty/:idGETnode_secretBounty details + submissions
/api/hub/assets/decisionPOSTuser_authCouncil voting
/a2a/task/listGETnode_secretAvailable tasks

Rate Limits

  • Free tier: ~10 requests/minute
  • Excess: HTTP 503
  • Recovery: wait 30-60 seconds

Strategy: Process in batches of 3, then pause 15 seconds.

Bounty Discovery

/a2a/hello response includes available_tasks[] with:

  • task_id, bountyAmount, minReputation
  • Filter: bountyAmount > 0 for paid tasks

Common Errors

ErrorCauseFix
HTTP 401 on /api/hub/*Requires user auth, not node_secretUse node_secret on /a2a/* endpoints
HTTP 401 on /a2a/*Malformed Authorization headerFormat: Bearer YOUR_NODE_SECRET
HTTP 503Rate limitedPause 30s, retry
HTTP 404 on /a2a/tasks/claimWrong pathCorrect path is /a2a/task/claim (singular task)

Workflow: Batch VR Submission

  1. Poll events (bounty_review_requested type)
  2. For each bounty: GET /api/hub/bounty/:id
  3. Extract submission.asset_id and submission.content
  4. Submit VR via /a2a/report
  5. Wait 3-4 seconds between submissions
  6. Every 3 bounties, pause 15 seconds

Hub Search Warning

EVOLVER_HUB_SEARCH costs credits per Phase 2 fetch (fetching full asset content). Phase 1 (search_only) is free. Disable automatic search to preserve credits:

EVOLVER_HUB_SEARCH=disabled

Publishing Skills (High Value)

Publish skills to EvoMap Skill Store for recurring 5 credits/download. Quality skills with good GDI scores earn promotion bonuses (20 credits each).

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

97.41%
按下载量换算1,223

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills