| name | eve-esi |
| description | Query and manage EVE Online characters via the ESI (EVE Swagger Interface) REST API. Use when the user asks about EVE Online character data, wallet balance, ISK transactions, assets, skill queue, skill points, clone locations, implants, fittings, contracts, market orders, mail, industry jobs, killmails, planetary interaction, loyalty points, or any other EVE account management task. |
| type | scripts |
| includes | ["scripts/auth_flow.py","scripts/get_token.py","scripts/esi_query.py","scripts/validate_config.py","config/schema.json","config/example-config.json","config/esi_endpoints.json","references/authentication.md","references/endpoints.md"] |
| auth | {"method":"oauth2_pkce","provider":"EVE SSO (login.eveonline.com)","credential_storage":"~/.openclaw/eve-tokens.json","setup":"Run scripts/auth_flow.py once per character with a valid EVE Client ID. Tokens are stored locally and auto-refreshed by scripts/get_token.py.","required_for":"All authenticated ESI endpoints (wallet, assets, skills, PI, industry, etc.). Public endpoints work without auth."} |
| env | [{"name":"EVE_CLIENT_ID","description":"EVE Developer Application Client ID (from https://developers.eveonline.com/applications). Not needed at runtime — pass directly to auth_flow.py via --client-id. Only set as env var if using $ENV: references in your dashboard config.","required":false,"sensitive":false},{"name":"EVE_TOKEN_MAIN","description":"ESI OAuth2 access token for the main character. Not needed at runtime — scripts auto-manage tokens via ~/.openclaw/eve-tokens.json (created by auth_flow.py). Only set as env var if using $ENV: references in your dashboard config.","required":false,"sensitive":true},{"name":"EVE_REFRESH_MAIN","description":"ESI OAuth2 refresh token for automatic access token renewal. Not needed at runtime — scripts auto-manage tokens via ~/.openclaw/eve-tokens.json. Only set as env var if using $ENV: references in your dashboard config.","required":false,"sensitive":true},{"name":"TELEGRAM_BOT_TOKEN","description":"Telegram Bot API token for sending alerts and reports. Only needed if Telegram notifications are configured.","required":false,"sensitive":true},{"name":"TELEGRAM_CHAT_ID","description":"Telegram chat ID where notifications are sent. Only needed if Telegram notifications are configured.","required":false,"sensitive":false},{"name":"DISCORD_WEBHOOK_URL","description":"Discord webhook URL for sending alerts and reports. Only needed if Discord notifications are configured.","required":false,"sensitive":true}] |
Data Handling
This skill communicates with the following external services:
- EVE Online ESI API (
esi.evetech.net) — all character and universe data queries
- EVE SSO (
login.eveonline.com) — OAuth2 authentication and token refresh
- zKillboard API (
zkillboard.com/api/) — optional, for PVP threat assessment data (public, no auth required)
- 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
No character data is sent to third-party servers beyond the above. Telegram/Discord only transmit alerts defined by the user.
EVE Online ESI
The ESI (EVE Swagger Interface) is the official REST API for EVE Online third-party development.
Skill Location
All scripts live at: ~/.openclaw/workspace/skills/eve-esi/scripts/
Always use full paths when calling scripts:
SKILL=~/.openclaw/workspace/skills/eve-esi
Authentication
Tokens are stored in ~/.openclaw/eve-tokens.json (created by auth_flow.py, chmod 600).
All scripts (get_token.py, esi_query.py) read from this file directly — no env vars are required for normal operation.
First-time setup (once per character):
python3 ~/.openclaw/workspace/skills/eve-esi/scripts/auth_flow.py --client-id <YOUR_CLIENT_ID> --char-name main
Get a fresh access token (tokens expire after ~20min, refresh is automatic):
TOKEN=$(python3 ~/.openclaw/workspace/skills/eve-esi/scripts/get_token.py --char main)
List authenticated characters:
python3 ~/.openclaw/workspace/skills/eve-esi/scripts/get_token.py --list
For full OAuth2/PKCE details: see references/authentication.md.
Public endpoints (no auth)
curl -s "https://esi.evetech.net/latest/characters/2114794365/" | python -m json.tool
curl -s "https://esi.evetech.net/latest/characters/2114794365/portrait/"
curl -s "https://esi.evetech.net/latest/characters/2114794365/corporationhistory/"
curl -s -X POST "https://esi.evetech.net/latest/characters/affiliation/" \
-H "Content-Type: application/json" \
-d '[2114794365, 95538921]'
Character info (authenticated)
TOKEN="<your_access_token>"
CHAR_ID="<your_character_id>"
curl -s -H "Authorization: Bearer $TOKEN" \
"https://esi.evetech.net/latest/characters/$CHAR_ID/online/"
Wallet
curl -s -H "Authorization: Bearer $TOKEN" \
"https://esi.evetech.net/latest/characters/$CHAR_ID/wallet/"
curl -s -H "Authorization: Bearer $TOKEN" \
"https://esi.evetech.net/latest/characters/$CHAR_ID/wallet/journal/?page=1"
curl -s -H "Authorization: Bearer $TOKEN" \
"https://esi.evetech.net/latest/characters/$CHAR_ID/wallet/transactions/"
Assets
curl -s -H "Authorization: Bearer $TOKEN" \
"https://esi.evetech.net/latest/characters/$CHAR_ID/assets/?page=1"
curl -s -X POST -H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '[1234567890, 9876543210]' \
"https://esi.evetech.net/latest/characters/$CHAR_ID/assets/locations/"
curl -s -X POST -H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '[1234567890]' \
"https://esi.evetech.net/latest/characters/$CHAR_ID/assets/names/"
Skills
curl -s -H "Authorization: Bearer $TOKEN" \
"https://esi.evetech.net/latest/characters/$CHAR_ID/skills/"
curl -s -H "Authorization: Bearer $TOKEN" \
"https://esi.evetech.net/latest/characters/$CHAR_ID/skillqueue/"
curl -s -H "Authorization: Bearer $TOKEN" \
"https://esi.evetech.net/latest/characters/$CHAR_ID/attributes/"
Location and ship
curl -s -H "Authorization: Bearer $TOKEN" \
"https://esi.evetech.net/latest/characters/$CHAR_ID/location/"
curl -s -H "Authorization: Bearer $TOKEN" \
"https://esi.evetech.net/latest/characters/$CHAR_ID/ship/"
Clones and implants
curl -s -H "Authorization: Bearer $TOKEN" \
"https://esi.evetech.net/latest/characters/$CHAR_ID/clones/"
curl -s -H "Authorization: Bearer $TOKEN" \
"https://esi.evetech.net/latest/characters/$CHAR_ID/implants/"
More endpoints
For contracts, fittings, mail, industry, killmails, market orders, mining, planetary interaction, loyalty points, notifications, blueprints, standings, and all other character endpoints, see references/endpoints.md.
Dashboard Config
The skill supports a modular dashboard config for alerts, reports, and market tracking. Each user defines what they need in a JSON config file.
Features
| Module | Description |
|---|
| Alerts | Real-time polling for war decs, structure attacks, skill completions, wallet changes, industry jobs, PI extractors, killmails, contracts, clone jumps, mail |
| Reports | Cron-scheduled summaries: net worth, skill queue, industry, market orders, wallet, assets |
| Market | Price tracking with absolute thresholds and trend detection |
Security
Tokens should not be stored in plain text. Use environment variable references:
{
"token": "$ENV:EVE_TOKEN_MAIN",
"refresh_token": "$ENV:EVE_REFRESH_MAIN"
}
The config file should live outside the workspace (e.g. ~/.openclaw/eve-dashboard-config.json).
Validate a config
python scripts/validate_config.py path/to/config.json
python scripts/validate_config.py --example
python scripts/validate_config.py --schema
Using the query script
SKILL=~/.openclaw/workspace/skills/eve-esi
TOKEN=$(python3 $SKILL/scripts/get_token.py --char main)
CHAR_ID=$(python3 $SKILL/scripts/get_token.py --char main --char-id 2>/dev/null) || \
CHAR_ID=$(python3 -c "import json, os, pathlib; p = pathlib.Path(os.environ.get('OPENCLAW_STATE_DIR', os.path.expanduser('~/.openclaw'))) / 'eve-tokens.json'; d = json.loads(p.read_text(encoding='utf-8')); chars = d.get('characters', {}); char = chars.get('main') or next(iter(chars.values()), None); print(char['character_id'] if char else '')")
python3 $SKILL/scripts/esi_query.py --token "$TOKEN" --endpoint "/characters/$CHAR_ID/wallet/" --pretty
python3 $SKILL/scripts/esi_query.py --token "$TOKEN" --endpoint "/characters/$CHAR_ID/assets/" --pages --pretty
python3 $SKILL/scripts/esi_query.py --token "$TOKEN" --endpoint "/characters/$CHAR_ID/assets/names/" \
--method POST --body '[1234567890]' --pretty
Best practices
- Caching: respect the
Expires header; do not poll before it expires.
- Error limits: monitor
X-ESI-Error-Limit-Remain; back off when low.
- User-Agent: always set a descriptive User-Agent with contact info.
- Rate limits: some endpoints (mail, contracts) have internal rate limits returning HTTP 520.
- Pagination: check the
X-Pages response header; iterate with ?page=N.
- Versioning: use
/latest/ for current stable routes. /dev/ may change without notice.
Threat Assessment & Route Planning
The skill provides threat intelligence for PI systems in low/null-sec space. Data sources: ESI (kills, jumps, FW, incursions) and zKillboard (PVP activity).
ESI Threat Endpoints
SKILL=~/.openclaw/workspace/skills/eve-esi
python3 $SKILL/scripts/esi_query.py --action system_kills --pretty
python3 $SKILL/scripts/esi_query.py --action system_kills --system-ids 30002537,30045337 --pretty
python3 $SKILL/scripts/esi_query.py --action system_jumps --system-ids 30045337 --pretty
python3 $SKILL/scripts/esi_query.py --action system_info --system-id 30002537 --pretty
python3 $SKILL/scripts/esi_query.py --action route_plan --origin 30000142 --destination 30002537 --route-flag secure --pretty
TOKEN=$(python3 $SKILL/scripts/get_token.py --char main)
python3 $SKILL/scripts/esi_query.py --action character_location --token "$TOKEN" --character-id $CHAR_ID --pretty
python3 $SKILL/scripts/esi_query.py --action fw_systems --pretty
python3 $SKILL/scripts/esi_query.py --action incursions --pretty
Threat Assessment Scripts (Workspace)
Hinweis: Die Workspace-Skripte (threat_query.py, cache_threat_data.py, cache_market_prices.py) sind Referenz-Beschreibungen und müssen erst im Agent-Workspace erstellt werden, bevor sie genutzt werden können.
These scripts live in ~/.openclaw/workspace/scripts/ (not in the skill repo):
python3 ~/.openclaw/workspace/scripts/threat_query.py --action threat_assessment --system-ids 30002537,30045337
python3 ~/.openclaw/workspace/scripts/threat_query.py --action threat_assessment_pi
python3 ~/.openclaw/workspace/scripts/threat_query.py --action route_annotated --origin 30000142 --destination 30002537
python3 ~/.openclaw/workspace/scripts/threat_query.py --action route_annotated --character main --destination 30045337
python3 ~/.openclaw/workspace/scripts/threat_query.py --action pi_briefing
Threat Levels
| Level | Score | Meaning |
|---|
low | 0-15 | Normaler PI-Betrieb |
medium | 15-40 | Schnell rein, schnell raus |
high | 40-80 | Nur mit Scout/Cloak |
critical | 80+ | NICHT reinfliegen |
Threat Cache
Threat data is cached in Redis (30min TTL for ESI, 1h for zKillboard). The cache is updated every 30 minutes via cron:
python3 ~/.openclaw/workspace/scripts/cache_threat_data.py
python3 ~/.openclaw/workspace/scripts/cache_threat_data.py --check
Resolving type IDs
ESI returns numeric type IDs (e.g. for ships, items, skills). Resolve names via:
curl -s "https://esi.evetech.net/latest/universe/types/587/"
curl -s -X POST "https://esi.evetech.net/latest/universe/names/" \
-H "Content-Type: application/json" \
-d '[587, 638, 11393]'