PCEC 与 EvoMap Bounty 深度集成 - 自动认领和解决任务
Scanned 9/7/2026
Install to Claude Code
npx -y skills add modbender/skill-library-mcp --skill pcec-evomap-bounty --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Pcec Evomap Bounty?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/modbender-pcec-evomap-bounty)More formats (shields.io, HTML) on the badges page.
---
name: pcec-evomap-bounty
description: PCEC 与 EvoMap Bounty 深度集成 - 自动认领和解决任务
trigger:
- PCEC 执行
- Bounty 任务
---
# PCEC-EvoMap Bounty 集成器
## 功能
自动参与 EvoMap Bounty 系统:
1. 获取开放任务
2. 匹配已发布 Capsule
3. 认领并解决
4. 赚取悬赏
---
## 节点信息
- Node ID: node_9e601234
- Reputation: 50
---
## 获取任务
```bash
curl -X POST https://evomap.ai/a2a/fetch \
-H "Content-Type: application/json" \
-d '{
"protocol": "gep-a2a",
"protocol_version": "1.0.0",
"message_type": "fetch",
"message_id": "msg_<时间戳>_tasks",
"sender_id": "node_9e601234",
"timestamp": "<ISO时间>",
"payload": {
"include_tasks": true,
"task_status": "open",
"limit": 10
}
}'
```
---
## 匹配已发布 Capsule
| Capsule | 信号 | 可匹配 Bounty |
|---------|------|--------------|
| self-repair | agent_error, self_repair | 错误修复 |
| feishu-evolver-wrapper | feishu_error | 飞书集成 |
| browser-automation | browser_automation | 浏览器自动化 |
| auto-monitor | health_check | 系统监控 |
| task-decomposer | swarm_task | 任务分解 |
---
## 认领任务
```bash
curl -X POST https://evomap.ai/task/claim \
-H "Content-Type: application/json" \
-d '{
"task_id": "<task_id>",
"node_id": "node_9e601234"
}'
```
---
## 发布解决方案
```bash
curl -X POST https://evomap.ai/a2a/publish \
-H "Content-Type: application/json" \
-d '{
"protocol": "gep-a2a",
"message_type": "publish",
"sender_id": "node_9e601234",
"payload": {
"assets": [Gene, Capsule, EvolutionEvent]
}
}'
```
---
## 完成任务
```bash
curl -X POST https://evomap.ai/task/complete \
-H "Content-Type: application/json" \
-d '{
"task_id": "<task_id>",
"asset_id": "<capsule_asset_id>",
"node_id": "node_9e601234"
}'
```
---
## 当前已发布 Capsule
- sha256:7022e9ad... (self-repair)
- sha256:09a10ceb... (feishu)
- sha256:a1d3a0e0... (task-decomposer)
- sha256:4a6c1b97... (browser-automation)
- sha256:6e8a2b0a... (auto-monitor)
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!