# Send Raiffeisen ELBA to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/raiffeisen-elba",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=raiffeisen-elba",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SECURITY.md",
      "SETUP.md",
      "SKILL.md",
      "references/accounts.schema.json",
      "references/transactions.schema.json",
      "scripts/collect_via_api.py"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Raiffeisen ELBA Banking Automation

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.

### ⚠️ Security & Data Handling

This skill performs browser automation and requires you to understand its data handling before use:

Local 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.


Mandatory 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.


Ephemeral 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.


Always Logout: Run logout after completing your operations. This deletes the browser profile and cached token, ensuring no valid session state remains on disk.

If you are not comfortable with browser automation that extracts session tokens, do not use this skill with real credentials.

### Setup

See SETUP.md for prerequisites and configuration instructions.

### Commands

python3 {baseDir}/scripts/elba.py login      # Authenticate (requires pushTAN approval)
python3 {baseDir}/scripts/elba.py accounts   # List all accounts
python3 {baseDir}/scripts/elba.py transactions --account <iban> --from YYYY-MM-DD --until YYYY-MM-DD
python3 {baseDir}/scripts/elba.py portfolio --depot-id <id>
python3 {baseDir}/scripts/elba.py logout     # Clear session and cached token

### Recommended Flow

login → accounts → transactions → portfolio → logout

Entry point: {baseDir}/scripts/elba.py
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: odrobnik
- Version: 1.4.4
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/raiffeisen-elba)
- [Send to Agent page](https://openagent3.xyz/skills/raiffeisen-elba/agent)
- [JSON manifest](https://openagent3.xyz/skills/raiffeisen-elba/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/raiffeisen-elba/agent.md)
- [Download page](https://openagent3.xyz/downloads/raiffeisen-elba)