โ† All skills
Tencent SkillHub ยท Developer Tools

Raiffeisen ELBA

Automate Raiffeisen ELBA online banking: login/logout, list accounts, and fetch transactions via Playwright.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Automate Raiffeisen ELBA online banking: login/logout, list accounts, and fetch transactions via Playwright.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SECURITY.md, SETUP.md, SKILL.md, references/accounts.schema.json, references/transactions.schema.json, scripts/collect_via_api.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.4.4

Documentation

ClawHub primary doc Primary doc: SKILL.md 5 sections Open source page

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs2 Config1 Scripts
  • SKILL.md Primary doc
  • SECURITY.md Docs
  • SETUP.md Docs
  • scripts/collect_via_api.py Scripts
  • references/accounts.schema.json Config
  • references/transactions.schema.json Config