{
  "schemaVersion": "1.0",
  "item": {
    "slug": "raiffeisen-elba",
    "name": "Raiffeisen ELBA",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/odrobnik/raiffeisen-elba",
    "canonicalUrl": "https://clawhub.ai/odrobnik/raiffeisen-elba",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/raiffeisen-elba",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=raiffeisen-elba",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SECURITY.md",
      "SETUP.md",
      "SKILL.md",
      "references/accounts.schema.json",
      "references/transactions.schema.json",
      "scripts/collect_via_api.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. 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. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/raiffeisen-elba"
    },
    "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/raiffeisen-elba",
    "agentPageUrl": "https://openagent3.xyz/skills/raiffeisen-elba/agent",
    "manifestUrl": "https://openagent3.xyz/skills/raiffeisen-elba/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/raiffeisen-elba/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Raiffeisen ELBA Banking Automation",
        "body": "Fetch current account balances, securities depot positions, and transactions for all account types in JSON format for automatic processing. Uses Playwright to automate Raiffeisen ELBA online banking."
      },
      {
        "title": "⚠️ Security & Data Handling",
        "body": "This skill performs browser automation and requires you to understand its data handling before use:\n\nLocal Credential File (config.json): You must create a config.json file containing your ELBA user ID and 5-digit PIN. This file is stored locally with strict 0600 permissions (owner read/write only). The PIN alone cannot access your account — it only initiates the login flow.\n\n\nMandatory 2FA Approval: Every login requires you to manually approve a pushTAN request on your registered mobile device. Without this approval, the skill cannot access any bank data.\n\n\nEphemeral Bearer Token: After successful 2FA approval, the skill extracts the Bearer token from browser storage (or by observing outgoing API requests within the same browser context). This token enables chaining multiple operations (accounts → transactions → portfolio) without re-authenticating. The token is short-lived (expires within minutes) and is stored in a local cache file with 0600 permissions.\n\n\nAlways Logout: Run logout after completing your operations. This deletes the browser profile and cached token, ensuring no valid session state remains on disk.\n\nIf you are not comfortable with browser automation that extracts session tokens, do not use this skill with real credentials."
      },
      {
        "title": "Setup",
        "body": "See SETUP.md for prerequisites and configuration instructions."
      },
      {
        "title": "Commands",
        "body": "python3 {baseDir}/scripts/elba.py login      # Authenticate (requires pushTAN approval)\npython3 {baseDir}/scripts/elba.py accounts   # List all accounts\npython3 {baseDir}/scripts/elba.py transactions --account <iban> --from YYYY-MM-DD --until YYYY-MM-DD\npython3 {baseDir}/scripts/elba.py portfolio --depot-id <id>\npython3 {baseDir}/scripts/elba.py logout     # Clear session and cached token"
      },
      {
        "title": "Recommended Flow",
        "body": "login → accounts → transactions → portfolio → logout\n\nEntry point: {baseDir}/scripts/elba.py"
      }
    ],
    "body": "Raiffeisen ELBA Banking Automation\n\nFetch current account balances, securities depot positions, and transactions for all account types in JSON format for automatic processing. Uses Playwright to automate Raiffeisen ELBA online banking.\n\n⚠️ Security & Data Handling\n\nThis skill performs browser automation and requires you to understand its data handling before use:\n\nLocal Credential File (config.json): You must create a config.json file containing your ELBA user ID and 5-digit PIN. This file is stored locally with strict 0600 permissions (owner read/write only). The PIN alone cannot access your account — it only initiates the login flow.\n\nMandatory 2FA Approval: Every login requires you to manually approve a pushTAN request on your registered mobile device. Without this approval, the skill cannot access any bank data.\n\nEphemeral Bearer Token: After successful 2FA approval, the skill extracts the Bearer token from browser storage (or by observing outgoing API requests within the same browser context). This token enables chaining multiple operations (accounts → transactions → portfolio) without re-authenticating. The token is short-lived (expires within minutes) and is stored in a local cache file with 0600 permissions.\n\nAlways Logout: Run logout after completing your operations. This deletes the browser profile and cached token, ensuring no valid session state remains on disk.\n\nIf you are not comfortable with browser automation that extracts session tokens, do not use this skill with real credentials.\n\nSetup\n\nSee SETUP.md for prerequisites and configuration instructions.\n\nCommands\npython3 {baseDir}/scripts/elba.py login      # Authenticate (requires pushTAN approval)\npython3 {baseDir}/scripts/elba.py accounts   # List all accounts\npython3 {baseDir}/scripts/elba.py transactions --account <iban> --from YYYY-MM-DD --until YYYY-MM-DD\npython3 {baseDir}/scripts/elba.py portfolio --depot-id <id>\npython3 {baseDir}/scripts/elba.py logout     # Clear session and cached token\n\nRecommended Flow\nlogin → accounts → transactions → portfolio → logout\n\n\nEntry point: {baseDir}/scripts/elba.py"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/odrobnik/raiffeisen-elba",
    "publisherUrl": "https://clawhub.ai/odrobnik/raiffeisen-elba",
    "owner": "odrobnik",
    "version": "1.4.4",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/raiffeisen-elba",
    "downloadUrl": "https://openagent3.xyz/downloads/raiffeisen-elba",
    "agentUrl": "https://openagent3.xyz/skills/raiffeisen-elba/agent",
    "manifestUrl": "https://openagent3.xyz/skills/raiffeisen-elba/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/raiffeisen-elba/agent.md"
  }
}