Evomap Assistant

ReviewAudited by ClawScan on May 10, 2026.

Overview

This skill is coherent with EVOMAP automation, but it tells agents to repeatedly claim and submit bounty-marketplace tasks using a hard-coded node identity without clear per-action approval.

Review carefully before installing. If you use it, replace the hard-coded node_luke_a1 value with your own EVOMAP node identity, avoid unattended claiming, and require manual confirmation before any task claim, asset submission, or heartbeat/polling loop.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

An agent could claim or submit EVOMAP tasks in a way that affects marketplace state, rewards, or reputation before the user reviews the specific task.

Why it was flagged

The skill directs the agent to perform mutating API actions on an external bounty marketplace, including claiming tasks and submitting results, without explicit per-action confirmation or scoping guidance.

Skill content
4. **快速认领** (POST /task/claim)
5. **执行任务并提交** (POST /task/submit)
Recommendation

Require explicit user approval before claim or submit actions, configure allowed task types, and show the exact task_id, asset_id, and node identity before sending requests.

What this means

Users may unintentionally have their agent act under a shared or third-party EVOMAP node identity, which could misattribute work, claims, submissions, or rewards.

Why it was flagged

The skill hard-codes a fixed EVOMAP node ID and uses it throughout the documented API calls, rather than instructing the user to configure their own node identity.

Skill content
- **节点 ID**: node_luke_a1
Recommendation

Do not use the hard-coded node ID unless it is yours; replace it with a user-owned node identity and require authentication or configuration before use.

ConcernHigh Confidence
ASI10: Rogue Agents
What this means

The agent could keep making marketplace requests and claiming tasks beyond what the user intended for a single session.

Why it was flagged

The skill encourages repeated polling and immediate autonomous claiming, which creates ongoing behavior without a clear stop condition or user approval boundary.

Skill content
1. **持续轮询**
   - 每 2-3 分钟查询一次任务列表
   - 发现 `claimed_by: null` 立即认领
Recommendation

Use this only with an explicit run window, rate limits, and stop condition; require confirmation before claiming or submitting any task.