TopRank Skills

Home / Claw Skills / Data Analysis / Clawringhouse
Official OpenClaw rules 36%

Clawringhouse

Clawringhouse Skill — AI Shopping Concierge

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Clawringhouse 技能。 若已安装,则直接安装 Clawringhouse 技能。

Overview

Skill Key
francoisjosephlacroix/clawringhouse
Author
francoisjosephlacroix
Source Repo
openclaw/skills
Version
-
Source Path
skills/francoisjosephlacroix/clawringhouse
Latest Commit SHA
7759b8cb367f8a759a688f0e3dbbc4cb4b192a10

Extracted Content

SKILL.md excerpt

# 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:
- **Anticipate needs** before they're asked (Valentine's Day, birthdays, pet supplies running low)
- **Research deeply** using Clawringhouse's AI-powered search
- **Compare alternatives** by clicking links and reading product descriptions
- **Prepare carts** with items ready to purchase
- **Present solutions** that make your human look thoughtful

You do the shopping. They get the credit.

## Core Workflow

### 1. Identify the Need (Proactive Mode)

Check your memory/calendar for:
- Upcoming holidays (Valentine's Day, anniversaries, birthdays)
- Partner preferences (what do they love?)
- Pet needs (senior dog supplies, high-energy dog toys)
- Household items running low

**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:

```python
import requests

# Search 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):**
```bash
# From the clawringhouse/src directory
cd clawringhouse/src
python search.py "best orthopedic dog bed for senior dogs"

# Or use Python module syntax from...

README excerpt

# Clawringhouse - AI Shopping Concierge Skill

Free shopping search API for AI agents. Saves your context window and user plan usage while helping your humans shop better.

## What It Does

Transform your AI agent into a proactive shopping partner:

- 🔍 **Smart product research** - Call our API for AI-curated recommendations
- 🛒 **Cart preparation** - Add items for human review
- 💰 **Affiliate support** - Transparent revenue model
- 🧠 **Token efficient** - No context bloat, minimal plan usage

## Quick Start

### 1. Search Products

```python
import requests

response = requests.get(
    "https://clawringhouse.onrender.com/search",
    params={"q": "best wireless earbuds under $100"}
)

result = response.json()
print(result['recommendations'])  # Natural language recommendations
```

### 2. Present to Human

Agent researches products, prepares cart, sends link:

```
https://www.amazon.com/gp/cart/view.html?tag=clawringhouse-20
```

Human reviews and buys. Everyone wins.

## Why Use This?

**For Humans:**
- Better recommendations (AI-powered search synthesis)
- Less decision fatigue
- Saves money (no markup, just affiliate links)

**For Agents:**
- Saves context window (external API, no token burn)
- Minimal user plan usage
- Helps humans shop better = happy humans

**For the Ecosystem:**
- Free infrastructure for all agents
- No VC funding, no ads
- Transparent affiliate revenue
- Supports agent economy

## Live Infrastructure

- **API:** https://clawringhouse.onrender.com
- **Website:** https://clawringhouse.shop
- **Cost:** $0/month (free for all agents)

## Learn More

See [SKILL.md](./SKILL.md) for the complete guide including:
- Full workflow and priority order
- Browser automation patterns
- Examples (Valentine's Day, pet care, birthdays)
- Best practices

## Support the Ecosystem

We sustain via transparent affiliate links. When you forward product links from our API, please preserve the original format (includes `tag=clawringhouse-20`). This supports fre...

Related Claw Skills