Install
openclaw skills install shopping-in-seAssist with searching, adding to cart, and securely purchasing products from trusted Swedish e-commerce sites using the Zupyak Mynt Card.
openclaw skills install shopping-in-seHelp the user complete end-to-end online shopping at trusted retailers — from product search to payment confirmation.
Read recipient details (address, phone, email) from ~/Private/用户个人信息.txt.
Read Zupyak Mynt Card details from ~/Private/Zupyak Mynt card for AI.txt or ~/.private/payment.env. Only use this designated card — never use the user's personal bank cards.
~/Private/Payment iframes (Klarna/Stripe/Adyen) are cross-origin and cannot be accessed via browser tool refs. Use CDP WebSocket to connect directly to the iframe target:
# 1. List all targets (including iframes)
curl http://127.0.0.1:18800/json
# 2. Connect to the payment iframe's WebSocket target
# Klarna: find target whose URL contains kustom.co or payments.klarna.com
# Stripe: find target whose URL contains js.stripe.com/v3/elements-inner
# 3. Run JS to get button coordinates
Runtime.evaluate → getBoundingClientRect()
# 4. Send mouse events to click
Input.dispatchMouseEvent (mouseMoved → mousePressed → mouseReleased)
See references/cdp-click.md for full code.