{
  "schemaVersion": "1.0",
  "item": {
    "slug": "eve-esi",
    "name": "Eve online Esi Skill",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/burnshall-ui/eve-esi",
    "canonicalUrl": "https://clawhub.ai/burnshall-ui/eve-esi",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/eve-esi",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=eve-esi",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "config/example-config.json",
      "config/schema.json",
      "README.md",
      "references/authentication.md",
      "references/endpoints.md",
      "scripts/auth_flow.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/eve-esi"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/eve-esi",
    "agentPageUrl": "https://openagent3.xyz/skills/eve-esi/agent",
    "manifestUrl": "https://openagent3.xyz/skills/eve-esi/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/eve-esi/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Data Handling",
        "body": "This skill communicates exclusively with the official EVE Online ESI API (esi.evetech.net) and EVE SSO (login.eveonline.com).\nNo character data is exfiltrated to third-party servers.\nOptional integrations (Telegram, Discord) are user-configured via environment variables and only transmit alerts defined by the user."
      },
      {
        "title": "EVE Online ESI",
        "body": "The ESI (EVE Swagger Interface) is the official REST API for EVE Online third-party development.\n\nBase URL: https://esi.evetech.net/latest\nSpec: https://esi.evetech.net/latest/swagger.json\nAPI Explorer: https://developers.eveonline.com/api-explorer"
      },
      {
        "title": "Skill Location",
        "body": "All scripts live at: ~/.openclaw/workspace/skills/eve-esi/scripts/\n\nAlways use full paths when calling scripts:\n\nSKILL=~/.openclaw/workspace/skills/eve-esi"
      },
      {
        "title": "Authentication",
        "body": "Tokens are stored in ~/.openclaw/eve-tokens.json (created by auth_flow.py, chmod 600).\nAll scripts (get_token.py, esi_query.py) read from this file directly — no env vars are required for normal operation.\n\nFirst-time setup (once per character):\n\n# 1. Set up SSH tunnel on your local PC:\n#    ssh -L 8080:127.0.0.1:8080 user@your-server -N\n# 2. Run auth flow on server (pass Client ID directly):\npython3 ~/.openclaw/workspace/skills/eve-esi/scripts/auth_flow.py --client-id <YOUR_CLIENT_ID> --char-name main\n# 3. Open the shown URL in browser, log in with EVE account\n\nGet a fresh access token (tokens expire after ~20min, refresh is automatic):\n\nTOKEN=$(python3 ~/.openclaw/workspace/skills/eve-esi/scripts/get_token.py --char main)\n\nList authenticated characters:\n\npython3 ~/.openclaw/workspace/skills/eve-esi/scripts/get_token.py --list\n\nFor full OAuth2/PKCE details: see references/authentication.md."
      },
      {
        "title": "Public endpoints (no auth)",
        "body": "# Character public info\ncurl -s \"https://esi.evetech.net/latest/characters/2114794365/\" | python -m json.tool\n\n# Portrait URLs\ncurl -s \"https://esi.evetech.net/latest/characters/2114794365/portrait/\"\n\n# Corporation history\ncurl -s \"https://esi.evetech.net/latest/characters/2114794365/corporationhistory/\"\n\n# Bulk affiliation lookup\ncurl -s -X POST \"https://esi.evetech.net/latest/characters/affiliation/\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '[2114794365, 95538921]'"
      },
      {
        "title": "Character info (authenticated)",
        "body": "TOKEN=\"<your_access_token>\"\nCHAR_ID=\"<your_character_id>\"\n\n# Online status (scope: esi-location.read_online.v1)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/online/\""
      },
      {
        "title": "Wallet",
        "body": "# Balance (scope: esi-wallet.read_character_wallet.v1)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/wallet/\"\n\n# Journal (paginated)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/wallet/journal/?page=1\"\n\n# Transactions\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/wallet/transactions/\""
      },
      {
        "title": "Assets",
        "body": "# All assets (paginated; scope: esi-assets.read_assets.v1)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/assets/?page=1\"\n\n# Resolve item locations\ncurl -s -X POST -H \"Authorization: Bearer $TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '[1234567890, 9876543210]' \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/assets/locations/\"\n\n# Resolve item names\ncurl -s -X POST -H \"Authorization: Bearer $TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '[1234567890]' \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/assets/names/\""
      },
      {
        "title": "Skills",
        "body": "# All trained skills + total SP (scope: esi-skills.read_skills.v1)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/skills/\"\n\n# Skill queue (scope: esi-skills.read_skillqueue.v1)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/skillqueue/\"\n\n# Attributes (intelligence, memory, etc.)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/attributes/\""
      },
      {
        "title": "Location and ship",
        "body": "# Current location (scope: esi-location.read_location.v1)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/location/\"\n\n# Current ship (scope: esi-location.read_ship_type.v1)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/ship/\""
      },
      {
        "title": "Clones and implants",
        "body": "# Jump clones + home station (scope: esi-clones.read_clones.v1)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/clones/\"\n\n# Active implants (scope: esi-clones.read_implants.v1)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/implants/\""
      },
      {
        "title": "More endpoints",
        "body": "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."
      },
      {
        "title": "Dashboard Config",
        "body": "The skill supports a modular dashboard config for alerts, reports, and market tracking. Each user defines what they need in a JSON config file.\n\nSchema: config/schema.json — full JSON Schema with all fields, types, and defaults\nExample: config/example-config.json — ready-to-use template"
      },
      {
        "title": "Features",
        "body": "ModuleDescriptionAlertsReal-time polling for war decs, structure attacks, skill completions, wallet changes, industry jobs, PI extractors, killmails, contracts, clone jumps, mailReportsCron-scheduled summaries: net worth, skill queue, industry, market orders, wallet, assetsMarketPrice tracking with absolute thresholds and trend detection"
      },
      {
        "title": "Security",
        "body": "Tokens should not be stored in plain text. Use environment variable references:\n\n{\n  \"token\": \"$ENV:EVE_TOKEN_MAIN\",\n  \"refresh_token\": \"$ENV:EVE_REFRESH_MAIN\"\n}\n\nThe config file should live outside the workspace (e.g. ~/.openclaw/eve-dashboard-config.json)."
      },
      {
        "title": "Validate a config",
        "body": "python scripts/validate_config.py path/to/config.json\n\n# Show example config\npython scripts/validate_config.py --example\n\n# Show JSON schema\npython scripts/validate_config.py --schema"
      },
      {
        "title": "Using the query script",
        "body": "SKILL=~/.openclaw/workspace/skills/eve-esi\nTOKEN=$(python3 $SKILL/scripts/get_token.py --char main)\nCHAR_ID=$(python3 $SKILL/scripts/get_token.py --char main --json | python3 -c \"import sys,json; print(json.load(sys.stdin))\" 2>/dev/null)\n\n# Simple query\npython3 $SKILL/scripts/esi_query.py --token \"$TOKEN\" --endpoint \"/characters/$CHAR_ID/wallet/\" --pretty\n\n# Fetch all pages of assets\npython3 $SKILL/scripts/esi_query.py --token \"$TOKEN\" --endpoint \"/characters/$CHAR_ID/assets/\" --pages --pretty\n\n# POST request (e.g. asset names)\npython3 $SKILL/scripts/esi_query.py --token \"$TOKEN\" --endpoint \"/characters/$CHAR_ID/assets/names/\" \\\n  --method POST --body '[1234567890]' --pretty"
      },
      {
        "title": "Best practices",
        "body": "Caching: respect the Expires header; do not poll before it expires.\nError limits: monitor X-ESI-Error-Limit-Remain; back off when low.\nUser-Agent: always set a descriptive User-Agent with contact info.\nRate limits: some endpoints (mail, contracts) have internal rate limits returning HTTP 520.\nPagination: check the X-Pages response header; iterate with ?page=N.\nVersioning: use /latest/ for current stable routes. /dev/ may change without notice."
      },
      {
        "title": "Resolving type IDs",
        "body": "ESI returns numeric type IDs (e.g. for ships, items, skills). Resolve names via:\n\n# Single type\ncurl -s \"https://esi.evetech.net/latest/universe/types/587/\"\n\n# Bulk names (up to 1000 IDs)\ncurl -s -X POST \"https://esi.evetech.net/latest/universe/names/\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '[587, 638, 11393]'"
      }
    ],
    "body": "Data Handling\n\nThis skill communicates exclusively with the official EVE Online ESI API (esi.evetech.net) and EVE SSO (login.eveonline.com). No character data is exfiltrated to third-party servers. Optional integrations (Telegram, Discord) are user-configured via environment variables and only transmit alerts defined by the user.\n\nEVE Online ESI\n\nThe ESI (EVE Swagger Interface) is the official REST API for EVE Online third-party development.\n\nBase URL: https://esi.evetech.net/latest\nSpec: https://esi.evetech.net/latest/swagger.json\nAPI Explorer: https://developers.eveonline.com/api-explorer\nSkill Location\n\nAll scripts live at: ~/.openclaw/workspace/skills/eve-esi/scripts/\n\nAlways use full paths when calling scripts:\n\nSKILL=~/.openclaw/workspace/skills/eve-esi\n\nAuthentication\n\nTokens 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.\n\nFirst-time setup (once per character):\n\n# 1. Set up SSH tunnel on your local PC:\n#    ssh -L 8080:127.0.0.1:8080 user@your-server -N\n# 2. Run auth flow on server (pass Client ID directly):\npython3 ~/.openclaw/workspace/skills/eve-esi/scripts/auth_flow.py --client-id <YOUR_CLIENT_ID> --char-name main\n# 3. Open the shown URL in browser, log in with EVE account\n\n\nGet a fresh access token (tokens expire after ~20min, refresh is automatic):\n\nTOKEN=$(python3 ~/.openclaw/workspace/skills/eve-esi/scripts/get_token.py --char main)\n\n\nList authenticated characters:\n\npython3 ~/.openclaw/workspace/skills/eve-esi/scripts/get_token.py --list\n\n\nFor full OAuth2/PKCE details: see references/authentication.md.\n\nPublic endpoints (no auth)\n# Character public info\ncurl -s \"https://esi.evetech.net/latest/characters/2114794365/\" | python -m json.tool\n\n# Portrait URLs\ncurl -s \"https://esi.evetech.net/latest/characters/2114794365/portrait/\"\n\n# Corporation history\ncurl -s \"https://esi.evetech.net/latest/characters/2114794365/corporationhistory/\"\n\n# Bulk affiliation lookup\ncurl -s -X POST \"https://esi.evetech.net/latest/characters/affiliation/\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '[2114794365, 95538921]'\n\nCharacter info (authenticated)\nTOKEN=\"<your_access_token>\"\nCHAR_ID=\"<your_character_id>\"\n\n# Online status (scope: esi-location.read_online.v1)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/online/\"\n\nWallet\n# Balance (scope: esi-wallet.read_character_wallet.v1)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/wallet/\"\n\n# Journal (paginated)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/wallet/journal/?page=1\"\n\n# Transactions\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/wallet/transactions/\"\n\nAssets\n# All assets (paginated; scope: esi-assets.read_assets.v1)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/assets/?page=1\"\n\n# Resolve item locations\ncurl -s -X POST -H \"Authorization: Bearer $TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '[1234567890, 9876543210]' \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/assets/locations/\"\n\n# Resolve item names\ncurl -s -X POST -H \"Authorization: Bearer $TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '[1234567890]' \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/assets/names/\"\n\nSkills\n# All trained skills + total SP (scope: esi-skills.read_skills.v1)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/skills/\"\n\n# Skill queue (scope: esi-skills.read_skillqueue.v1)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/skillqueue/\"\n\n# Attributes (intelligence, memory, etc.)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/attributes/\"\n\nLocation and ship\n# Current location (scope: esi-location.read_location.v1)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/location/\"\n\n# Current ship (scope: esi-location.read_ship_type.v1)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/ship/\"\n\nClones and implants\n# Jump clones + home station (scope: esi-clones.read_clones.v1)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/clones/\"\n\n# Active implants (scope: esi-clones.read_implants.v1)\ncurl -s -H \"Authorization: Bearer $TOKEN\" \\\n  \"https://esi.evetech.net/latest/characters/$CHAR_ID/implants/\"\n\nMore endpoints\n\nFor contracts, fittings, mail, industry, killmails, market orders, mining, planetary interaction, loyalty points, notifications, blueprints, standings, and all other character endpoints, see references/endpoints.md.\n\nDashboard Config\n\nThe skill supports a modular dashboard config for alerts, reports, and market tracking. Each user defines what they need in a JSON config file.\n\nSchema: config/schema.json — full JSON Schema with all fields, types, and defaults\nExample: config/example-config.json — ready-to-use template\nFeatures\nModule\tDescription\nAlerts\tReal-time polling for war decs, structure attacks, skill completions, wallet changes, industry jobs, PI extractors, killmails, contracts, clone jumps, mail\nReports\tCron-scheduled summaries: net worth, skill queue, industry, market orders, wallet, assets\nMarket\tPrice tracking with absolute thresholds and trend detection\nSecurity\n\nTokens should not be stored in plain text. Use environment variable references:\n\n{\n  \"token\": \"$ENV:EVE_TOKEN_MAIN\",\n  \"refresh_token\": \"$ENV:EVE_REFRESH_MAIN\"\n}\n\n\nThe config file should live outside the workspace (e.g. ~/.openclaw/eve-dashboard-config.json).\n\nValidate a config\npython scripts/validate_config.py path/to/config.json\n\n# Show example config\npython scripts/validate_config.py --example\n\n# Show JSON schema\npython scripts/validate_config.py --schema\n\nUsing the query script\nSKILL=~/.openclaw/workspace/skills/eve-esi\nTOKEN=$(python3 $SKILL/scripts/get_token.py --char main)\nCHAR_ID=$(python3 $SKILL/scripts/get_token.py --char main --json | python3 -c \"import sys,json; print(json.load(sys.stdin))\" 2>/dev/null)\n\n# Simple query\npython3 $SKILL/scripts/esi_query.py --token \"$TOKEN\" --endpoint \"/characters/$CHAR_ID/wallet/\" --pretty\n\n# Fetch all pages of assets\npython3 $SKILL/scripts/esi_query.py --token \"$TOKEN\" --endpoint \"/characters/$CHAR_ID/assets/\" --pages --pretty\n\n# POST request (e.g. asset names)\npython3 $SKILL/scripts/esi_query.py --token \"$TOKEN\" --endpoint \"/characters/$CHAR_ID/assets/names/\" \\\n  --method POST --body '[1234567890]' --pretty\n\nBest practices\nCaching: respect the Expires header; do not poll before it expires.\nError limits: monitor X-ESI-Error-Limit-Remain; back off when low.\nUser-Agent: always set a descriptive User-Agent with contact info.\nRate limits: some endpoints (mail, contracts) have internal rate limits returning HTTP 520.\nPagination: check the X-Pages response header; iterate with ?page=N.\nVersioning: use /latest/ for current stable routes. /dev/ may change without notice.\nResolving type IDs\n\nESI returns numeric type IDs (e.g. for ships, items, skills). Resolve names via:\n\n# Single type\ncurl -s \"https://esi.evetech.net/latest/universe/types/587/\"\n\n# Bulk names (up to 1000 IDs)\ncurl -s -X POST \"https://esi.evetech.net/latest/universe/names/\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '[587, 638, 11393]'"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/burnshall-ui/eve-esi",
    "publisherUrl": "https://clawhub.ai/burnshall-ui/eve-esi",
    "owner": "burnshall-ui",
    "version": "1.0.5",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/eve-esi",
    "downloadUrl": "https://openagent3.xyz/downloads/eve-esi",
    "agentUrl": "https://openagent3.xyz/skills/eve-esi/agent",
    "manifestUrl": "https://openagent3.xyz/skills/eve-esi/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/eve-esi/agent.md"
  }
}