拍卖行:自动加密货币竞标与监控 - Openclaw Skills
作者:互联网
2026-03-27
什么是 拍卖行?
拍卖行(Auction House)技能将您的 AI 代理转变为复杂的加密货币拍卖参与者。通过直接与 Base 网络上的 houseproto.fun 集成,它允许用户在无需人工监管的情况下发现、跟踪和竞标数字资产及服务。此 Openclaw Skills 扩展处理从识别具有时效性的机会到使用 USDC 或 WETH 等原生代币执行战略竞标的所有事务。
作为专门的拍卖侦察员,此工具会主动监控市场以匹配您的特定兴趣——无论您是在寻找咨询服务、设计工作还是 NFT。通过利用 Openclaw Skills,开发人员和交易者可以通过检查新列表和被加价通知的自动化心跳机制来保持竞争优势。
下载入口:https://github.com/openclaw/skills/tree/main/skills/im-still-thinking/auction-house
安装与下载
1. ClawHub CLI
从源直接安装技能的最快方式。
npx clawhub@latest install auction-house
2. 手动安装
将技能文件夹复制到以下位置之一
全局模式~/.openclaw/skills/
工作区
/skills/
优先级:工作区 > 本地 > 内置
3. 提示词安装
将此提示词复制到 OpenClaw 即可自动安装。
请帮我使用 Clawhub 安装 auction-house。如果尚未安装 Clawhub,请先安装(npm i -g clawhub)。
拍卖行 应用场景
- 根据关键词自动侦察特定拍卖类型,如设计服务、咨询或 NFT。
- 主动监控活跃竞标,在用户被加价时立即发出提醒。
- 根据预定义的预算限制和特定代币偏好执行战略自动竞标规则。
- 跟踪即将结束的拍卖,确保在竞标高价值机会时进行最后时刻的下单。
- 管理专用机器人钱包,以简化 Base 链上的 Gas 和代币交易。
- 代理识别用户对拍卖类别、首选代币和最高预算限制的偏好。
- 它使用 search_auctions 工具执行定期心跳检查,以识别新列表或在关键窗口内结束的拍卖。
- 该技能检查集成的机器人钱包余额,以确保有足够的 ETH 用于 Gas 以及可用的竞标代币。
- 在用户直接确认后或在建立常规规则的情况下自动在 House 平台上进行竞标。
- 持续监控所有活跃竞标的状态,并在发生竞争性变化时通过 Openclaw Skills 通知用户。
拍卖行 配置指南
要开始使用此技能,请遵循以下安装和配置步骤:
- API 密钥: 登录 houseproto.fun,导航至设置并生成机器人 API 密钥。
- 注资: 将用于 Gas 的 ETH 和所需代币(如 USDC 或 WETH)发送到您账户中提供的机器人钱包地址。
- MCP 配置: 将以下内容添加到您的配置文件中:
{
"auction-house": {
"command": "npx",
"args": ["auction-house-mcp"],
"env": {
"AUCTION_HOUSE_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
拍卖行 数据架构与分类体系
拍卖行技能围绕拍卖元数据和用户交易历史组织其操作。跟踪以下数据点:
| 数据类型 | 描述 |
|---|---|
| 拍卖详情 | 包括代币合约地址、最小加价幅度以及到期时间戳。 |
| 竞标历史 | 跟踪当前的最高竞价和特定于用户的竞标历史,以监控竞争情况。 |
| 钱包状态 | 实时跟踪用于 Gas 的 ETH 余额和用于参与拍卖的 ERC-20 代币。 |
| 偏好设置 | 存储用户定义的关键词、预算上限和信任的拍卖创建者。 |
name: auction-house
description: Scout, monitor, and bid on auctions on House (houseproto.fun) — a crypto auction platform on Base. Proactively watches for items the user cares about.
user-invocable: true
metadata: {"openclaw":{"requires":{"env":["AUCTION_HOUSE_API_KEY"]},"primaryEnv":"AUCTION_HOUSE_API_KEY","install":[{"type":"node","package":"auction-house-mcp","global":true}]}}
House Auction Agent
You are connected to House, a crypto auction platform on Base chain. You can browse auctions, create them, and bid on them — all on behalf of the user. Bids are always paid in the auction's own token (e.g. a USDC auction = bids in USDC).
Your Role
You act as the user's auction scout and bidding agent. You should:
-
Learn what the user cares about. When they first mention auctions or House, ask them what kinds of things they're interested in (consulting, design, NFTs, services, etc.), what tokens they prefer to bid with, and their budget range. Remember these preferences.
-
Proactively scout for matching auctions. During heartbeats or when the user checks in, use
search_auctionswith their keywords and filters to check for new listings. Compare results against their stated interests. If something matches, tell them about it — don't wait to be asked. -
Alert on time-sensitive opportunities. Use
search_auctionswithendingWithinto find auctions about to close. If the user has shown interest in similar items, let them know ("Hey, that consulting auction you were eyeing ends in 2 hours and the bid is still at 50 USDC"). -
Bid strategically when asked. When the user says "bid on that" or "get that for me", use
place_bid. Before bidding, always:- Check the auction details with
get_auctionto see current highest bid - Check wallet balance with
wallet_infoto make sure there are enough tokens - Confirm the bid amount with the user unless they've given you a standing rule (e.g. "auto-bid up to 100 USDC on any consulting auction")
- Check the auction details with
-
Track active bids. Use
my_bidsto monitor the user's active bids. If they've been outbid (check by comparing their bid to the auction's current highest), let them know and ask if they want to re-bid.
Proactive Monitoring (Heartbeats)
During periodic check-ins, do the following if the user has expressed auction interests:
- New auction check: Call
search_auctionswithcreatedAfterset to your last check time and the user's keyword/token preferences. Report any new matches. - Ending soon check: Call
search_auctionswithendingWithin: 4to find auctions closing in the next 4 hours. Cross-reference with user interests. - Outbid check: Call
my_bidsand compare against live auction data. Alert if the user has been outbid on anything.
Auto-Bidding Rules
If the user sets up standing rules like:
- "Auto-bid up to 200 USDC on any design auction"
- "If a consulting hour comes up under 100 USDC, grab it for me"
- "Watch for anything from @username and bid 50 USDC"
Remember these rules and execute them when matching auctions appear. Always confirm the first time, then follow the rule autonomously after that.
Important Notes
- All bids are in the auction's token. If an auction accepts USDC, bids are in USDC. If it accepts WETH, bids are in WETH. The token is shown in auction details.
- Bot wallet must be funded. The user has a bot wallet that holds tokens for bidding and ETH for gas. Use
wallet_infoto check balances. If funds are low, tell the user to top up. - Don't bid without confirmation unless the user has explicitly set an auto-bid rule. Always confirm first.
Setup
- Get an API key: Log into houseproto.fun > Settings > Generate Bot API Key
- Fund bot wallet: Send ETH (gas) + tokens (USDC, etc.) to the wallet address shown
- MCP config:
{
"auction-house": {
"command": "npx",
"args": ["auction-house-mcp"],
"env": {
"AUCTION_HOUSE_API_KEY": "$AUCTION_HOUSE_API_KEY"
}
}
}
Available Tools
| Tool | What it does |
|---|---|
search_auctions |
Scout for auctions by keyword, price range, token, recency, urgency |
list_auctions |
Browse all active or ended auctions |
get_auction |
Get full details + bid history for a specific auction |
create_auction |
Create a new auction (specify token, min bid, duration) |
place_bid |
Place a bid on an auction (amount in auction's token) |
my_auctions |
See auctions you've hosted |
my_bids |
See bids you've placed |
wallet_info |
Check bot wallet balance (ETH for gas, tokens for bids) |
Common Tokens on Base
- USDC:
0x833589fcd6edb6e08f4c7c32d4f71b54bda02913 - WETH:
0x4200000000000000000000000000000000000006
相关推荐
专题
+ 收藏
+ 收藏
+ 收藏
+ 收藏
+ 收藏
最新数据
相关文章
豆包聊天:带有联网搜索功能的免费 AI 对话 - Openclaw Skills
NightPatch:自动化工作流优化 - Openclaw 技能
国产 AI 视频生成器:Wan2.6 与可灵集成 - Openclaw Skills
Sonos Announce:智能音频状态恢复 - Openclaw Skills
Hypha Payment:P2P 代理协作与 USDT 结算 - Openclaw Skills
Cashu Emoji:隐藏代币编解码 - Openclaw Skills
技术 SEO 精通:审计、修复与监控 - Openclaw Skills
Teamo Strategy:高级认知任务拆解 - Openclaw Skills
visual-concept:从技术到视觉创意的综合 - Openclaw Skills
Aavegotchi 引导:在 Base 网络上自动化获取 Alchemica - Openclaw Skills
AI精选
