oneshot-commerce
Installation
SKILL.md
OneShot — Commerce
Set up auth/wallet via the oneshot skill, then:
import { OneShot } from '@oneshot-agent/sdk';
const agent = await OneShot.create({ cdp: true });
Search products — agent.commerceSearch(options)
const out = await agent.commerceSearch({ query: 'wireless noise-cancelling headphones', limit: 10 });
// out.products: [{ product_url, title, price, currency, vendor?, rating?, in_stock?, image_url? }]
Search itself is free (you pay only when buying). limit defaults to 10.