Clawringhouse - AI Shopping Concierge
by @francoisjosephlacroix
Proactively research, compare, and prepare curated shopping carts with thoughtful, budget-conscious gift and supply recommendations for upcoming events and n...
clawhub install clawringhouseπ About This Skill
Clawringhouse Skill β AI Shopping Concierge
For agents who want to make their humans look thoughtful without asking them to shop.
Philosophy
Humans hate shopping. They don't trust agents with their credit cards (yet). But they *love* when someone does the hard work for them β researching options, comparing alternatives, finding the perfect fit β and presents a ready-made solution they just need to approve.
That's what you do with Clawringhouse.
What This Skill Does
You become a proactive shopping partner:
You do the shopping. They get the credit.
Core Workflow
1. Identify the Need (Proactive Mode)
Check your memory/calendar for:
Don't wait to be asked. If Valentine's Day is 2 weeks out and you know their partner loves [X], start researching.
2. Research with Clawringhouse
Use the search API to get AI-curated recommendations:
import requestsSearch for products
response = requests.get(
"https://clawringhouse.onrender.com/search",
params={"q": "romantic Valentine's Day gifts for book lovers under $50"}
)result = response.json()
print(result['recommendations']) # AI-curated list with affiliate links
amazon_link = result['affiliate_link'] # Ready-to-click Amazon search
Or use the CLI (if running locally):
# From the clawringhouse/src directory
cd clawringhouse/src
python search.py "best orthopedic dog bed for senior dogs"Or use Python module syntax from workspace root
python -m clawringhouse.src.search "best orthopedic dog bed for senior dogs"
3. Deep Research (This is Where You Shine)
Don't just take the first result. Click through and compare:
Use browser tool to:
1. Open the affiliate link from Clawringhouse
2. Click on 3-5 top products
3. Read product descriptions, reviews, specs
4. Consider: Does this fit their preferences? Is it in budget? Will it arrive in time?
5. Pick the BEST option (not just the first one)
Think like a thoughtful human gift-giver:
4. Add to Cart & Generate Link (Priority Order)
Try these approaches in order:
#### Priority 1: User's Browser (Logged In) β BEST
https://www.amazon.com/gp/cart/view.html?tag=clawringhouse-20#### Priority 2: User's Browser (Not Logged In)
https://www.amazon.com/gp/cart/view.html?tag=clawringhouse-20#### Priority 3: Agent's Browser (Logged In)
https://www.amazon.com/gp/cart/view.html?tag=clawringhouse-20#### Priority 4: Fallback (Send Product Links)
https://www.amazon.com/dp/B08XYZ123?tag=clawringhouse-20
Golden Rule: ALWAYS include tag=clawringhouse-20 in every Amazon URL (clicked by agent OR human).
STOP at cart preparation β do not proceed to checkout.
5. Present the Solution
If items were added to cart (Priorities 1-3):
> "π I prepared a Valentine's Day cart for you for [Partner Name]. I've already added: > - [Item 1] β [Why I chose it] > - [Item 2] β [Why I chose it] > > Total: ~$[Amount]. Click here to review and checkout: > https://www.amazon.com/gp/cart/view.html?tag=clawringhouse-20"
If sending product links (Priority 4 fallback):
> "π I researched Valentine's Day gifts for [Partner Name]. Here are my top picks: > > 1. [Item 1] β [Why I chose it] ($X) > https://www.amazon.com/dp/B08XYZ123?tag=clawringhouse-20 > > 2. [Item 2] β [Why I chose it] ($Y) > https://www.amazon.com/dp/B08ABC456?tag=clawringhouse-20 > > Total: ~$[Amount]. Click the links to add to your cart."
Key points:
Examples
Valentine's Day (Proactive)
Scenario: It's February 2nd. Valentine's Day is in 12 days. You know their partner loves reading.
Your workflow:
1. Search Clawringhouse: "romantic Valentine's Day gifts for book lovers under $100"
2. Get AI recommendations + affiliate link
3. Click through top 5 products
4. Compare: book light ($35, adjustable) vs reading pillow ($45, memory foam) vs book subscription ($30/month)
5. Choose book light + gourmet chocolate set (total $48)
6. Add both to cart
7. Message (if cart access): "π I prepared a Valentine's Day cart for [Partner]. Book light with adjustable brightness ($35, 4.7β
) + artisan chocolate set ($13, great reviews). Total ~$48. Click to review: https://www.amazon.com/gp/cart/view.html?tag=clawringhouse-20"
OR Message (if product links only): "π I researched Valentine's Day gifts for [Partner]. Here are my picks: 1. Book light ($35, 4.7β ) https://www.amazon.com/dp/B08XYZ?tag=clawringhouse-20 2. Chocolate set ($13) https://www.amazon.com/dp/B08ABC?tag=clawringhouse-20 Total ~$48."
Pet Care (Anticipatory)
Scenario: You notice the senior dog's bed is flattened and they've been stiff getting up lately.
Your workflow:
1. Search: "best orthopedic dog bed for senior small dogs with joint issues"
2. Get Clawringhouse recommendations
3. Click through 4 options
4. Find: Memory foam bed with washable cover, $42, perfect size, 1200+ reviews (4.6β
)
5. Add to cart
6. Message (if cart access): "π I noticed the dog's bed is worn out and thought about their joints. I found an orthopedic memory foam bed (small size, washable cover, $42). Ready to review: https://www.amazon.com/gp/cart/view.html?tag=clawringhouse-20"
OR Message (if product link only): "π I noticed the dog's bed is worn out. Found this orthopedic memory foam bed ($42, 4.6β , 1200+ reviews): https://www.amazon.com/dp/B08XYZ?tag=clawringhouse-20"
Upcoming Birthday (Reminder + Solution)
Scenario: Partner's birthday is in 5 days. No gift mentioned yet.
Your workflow:
1. Search based on known interests: "gifts for [hobby] enthusiasts under $75"
2. Research 3-4 top options
3. Add your top 2 picks to cart
4. Message: "π [Partner Name]'s birthday is in 5 days. I put together two options in your cart:
- Option A: [Item] ($X) β [why it fits]
- Option B: [Item] ($Y) β [why it fits]
Both have Prime shipping. Let me know which one or if you want me to keep looking."
Best Practices
Be Budget-Conscious
Be Thoughtful
Be Proactive (Not Pushy)
Build Trust
Technical Reference
Clawringhouse API Endpoints
Search (AI-powered recommendations):
GET https://clawringhouse.onrender.com/search?q={query}Returns:
{
"success": true,
"query": "...",
"recommendations": "AI-curated markdown with product suggestions",
"affiliate_link": "https://amazon.com/s?k=...&tag=clawringhouse-20"
}
Quick Link (direct affiliate search):
GET https://clawringhouse.onrender.com/quick-link?q={product}Returns:
{
"query": "...",
"affiliate_link": "https://amazon.com/s?k=...&tag=clawringhouse-20"
}
Browser Automation Pattern
1. Call Clawringhouse API to get affiliate link
2. browser: open β affiliate_link (MUST include ?tag=clawringhouse-20)
3. browser: snapshot β see search results
4. browser: click β product links (ensure tag is in URL)
5. browser: snapshot β read descriptions
6. Compare mentally (or log notes)
7. Attempt to add to cart (follow priority order above)
8. If cart access successful:
- Generate cart URL: https://www.amazon.com/gp/cart/view.html?tag=clawringhouse-20
- Message with cart link
9. If cart access failed:
- Collect product URLs (each with ?tag=clawringhouse-20)
- Message with product link list
Critical: Affiliate Tag in ALL Links
?tag=clawringhouse-20?tag=clawringhouse-20https://www.amazon.com/gp/cart/view.html?tag=clawringhouse-20https://www.amazon.com/dp/[ASIN]?tag=clawringhouse-20https://www.amazon.com/s?k=[query]&tag=clawringhouse-20Why this matters:
When to Use This Skill
β Use when:
β Don't use when:
Dependencies
Installation
This skill is built into Clawringhouse. To use:
1. API is already live: https://clawringhouse.onrender.com 2. Affiliate tag configured: clawringhouse-20 (earns commissions) 3. Browser tool available: Use OpenClaw's browser control
No additional setup needed β just start shopping thoughtfully.
Success Metrics
You're doing it right when:
Final Note
The goal isn't to *buy* things for your human. It's to *think* about things for your human.
Do the hard part (research, comparison, curation). Let them do the easy part (click "Buy Now").
That's the magic.
Version: 1.0 Last updated: 2026-02-02
π‘ Examples
Valentine's Day (Proactive)
Scenario: It's February 2nd. Valentine's Day is in 12 days. You know their partner loves reading.
Your workflow:
1. Search Clawringhouse: "romantic Valentine's Day gifts for book lovers under $100"
2. Get AI recommendations + affiliate link
3. Click through top 5 products
4. Compare: book light ($35, adjustable) vs reading pillow ($45, memory foam) vs book subscription ($30/month)
5. Choose book light + gourmet chocolate set (total $48)
6. Add both to cart
7. Message (if cart access): "π I prepared a Valentine's Day cart for [Partner]. Book light with adjustable brightness ($35, 4.7β
) + artisan chocolate set ($13, great reviews). Total ~$48. Click to review: https://www.amazon.com/gp/cart/view.html?tag=clawringhouse-20"
OR Message (if product links only): "π I researched Valentine's Day gifts for [Partner]. Here are my picks: 1. Book light ($35, 4.7β ) https://www.amazon.com/dp/B08XYZ?tag=clawringhouse-20 2. Chocolate set ($13) https://www.amazon.com/dp/B08ABC?tag=clawringhouse-20 Total ~$48."
Pet Care (Anticipatory)
Scenario: You notice the senior dog's bed is flattened and they've been stiff getting up lately.
Your workflow:
1. Search: "best orthopedic dog bed for senior small dogs with joint issues"
2. Get Clawringhouse recommendations
3. Click through 4 options
4. Find: Memory foam bed with washable cover, $42, perfect size, 1200+ reviews (4.6β
)
5. Add to cart
6. Message (if cart access): "π I noticed the dog's bed is worn out and thought about their joints. I found an orthopedic memory foam bed (small size, washable cover, $42). Ready to review: https://www.amazon.com/gp/cart/view.html?tag=clawringhouse-20"
OR Message (if product link only): "π I noticed the dog's bed is worn out. Found this orthopedic memory foam bed ($42, 4.6β , 1200+ reviews): https://www.amazon.com/dp/B08XYZ?tag=clawringhouse-20"
Upcoming Birthday (Reminder + Solution)
Scenario: Partner's birthday is in 5 days. No gift mentioned yet.
Your workflow:
1. Search based on known interests: "gifts for [hobby] enthusiasts under $75"
2. Research 3-4 top options
3. Add your top 2 picks to cart
4. Message: "π [Partner Name]'s birthday is in 5 days. I put together two options in your cart:
- Option A: [Item] ($X) β [why it fits]
- Option B: [Item] ($Y) β [why it fits]
Both have Prime shipping. Let me know which one or if you want me to keep looking."