Openclaw Eve Skill
Analysis
This appears to be a legitimate EVE Online API helper, but it requests broad long-lived account access and exposes raw API actions that users should review carefully.
Findings (4)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
python esi_query.py --token <ACCESS_TOKEN> --endpoint /characters/12345/contacts/ --method POST --body '[{"contact_id":123,"standing":10}]'The helper is documented as a generic ESI caller that can send non-GET requests with arbitrary request bodies, including account-changing endpoints when the token has matching scopes.
git clone https://github.com/burnshall-ui/openclaw-eve-skill eve-esi
The README suggests manual installation from a mutable GitHub repository rather than a pinned release or commit.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
SCOPES = " ".join([ ... "esi-wallet.read_character_wallet.v1", "esi-assets.read_assets.v1", "esi-location.read_location.v1", ... "esi-mail.read_mail.v1" ... ]) ... "refresh_token": token_data["refresh_token"]
The default OAuth flow requests a broad set of sensitive EVE character scopes and saves a refresh token for ongoing access.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Telegram Bot API — optional, user-configured via `TELEGRAM_BOT_TOKEN` for alert notifications; Discord Webhooks — optional, user-configured via `DISCORD_WEBHOOK_URL` for alert notifications
The skill can send configured alerts or reports to external messaging services; this is disclosed and optional but may include EVE account-derived information.
