Shopping in Sweden
by @caoqi
Assist with searching, adding to cart, and securely purchasing products from trusted Swedish e-commerce sites using the Zupyak Mynt Card.
clawhub install shopping-in-seπ About This Skill
name: shopping-in-se description: Help the user shop online at Swedish e-commerce sites (Apotea, Apoteket, ICA, etc.) and complete payment. Includes product search, checkout flow, CDP coordinate clicks to bypass cross-origin iframes, and Klarna/Stripe payment handling. Triggers on: "buy this for me", "place an order", "order a", "get me a XX".
Shopping Skill
Help the user complete end-to-end online shopping at trusted retailers β from product search to payment confirmation.
User Information
Read recipient details (address, phone, email) from ~/Private/η¨ζ·δΈͺδΊΊδΏ‘ζ―.txt.
Payment Card
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.
Shopping Flow
1. Search for the product β Only use trusted sites (see references/trusted-sites.md)
2. Confirm with the user before ordering β Show product name, price, website, link, and recipient details; wait for approval
3. Add to cart β Use the browser tool
4. Fill in details β Read address, email, and phone from ~/Private/
5. Handle payment β See payment flow below
6. Confirm the result β Take a screenshot of the order confirmation page
Payment Flow
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/json2. 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.