← 返回 Skills 市场
im-still-thinking

House Auction

作者 im-still-thinking · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
1006
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install auction-house
功能描述
Scout, monitor, and bid on auctions on House (houseproto.fun) — a crypto auction platform on Base. Proactively watches for items the user cares about.
使用说明 (SKILL.md)

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:

  1. 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.

  2. Proactively scout for matching auctions. During heartbeats or when the user checks in, use search_auctions with 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.

  3. Alert on time-sensitive opportunities. Use search_auctions with endingWithin to 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").

  4. 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_auction to see current highest bid
    • Check wallet balance with wallet_info to 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")
  5. Track active bids. Use my_bids to 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_auctions with createdAfter set to your last check time and the user's keyword/token preferences. Report any new matches.
  • Ending soon check: Call search_auctions with endingWithin: 4 to find auctions closing in the next 4 hours. Cross-reference with user interests.
  • Outbid check: Call my_bids and 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_info to 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

  1. Get an API key: Log into houseproto.fun > Settings > Generate Bot API Key
  2. Fund bot wallet: Send ETH (gas) + tokens (USDC, etc.) to the wallet address shown
  3. 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
安全使用建议
This skill appears to be what it says: an MCP server that uses a House API key to monitor and place bids. Before installing: 1) Verify the npm package/author (search npmjs.org and review package ownership and recent versions). 2) Treat AUCTION_HOUSE_API_KEY as a powerful credential — it enables the skill to act on your behalf (place bids/create auctions). Limit funds in the bot wallet used by the key and fund only what you're willing to risk. 3) Be cautious with auto-bid rules: enable them only after testing with small amounts and explicitly confirm the first auto-run. 4) If you need extra assurance, review the included source files (client.js and index.js are present and readable) or run the MCP server in a restricted environment first. 5) Rotate or revoke the API key on houseproto.fun if you stop using the skill.
功能分析
Type: OpenClaw Skill Name: auction-house Version: 1.0.0 The skill is classified as suspicious due to its inherent high-risk capabilities involving autonomous financial transactions and the potential for prompt injection. The `SKILL.md` instructs the AI agent to perform auto-bidding autonomously after initial user confirmation, which, while aligned with the stated purpose, presents a significant risk if the agent misinterprets instructions or if an attacker crafts a malicious prompt. The skill requires and uses the sensitive `AUCTION_HOUSE_API_KEY` (found in `_meta.json`, `SKILL.md`, `src/client.ts`) for all interactions with the `houseproto.fun` API, and the `AUCTION_HOUSE_URL` environment variable (in `src/client.ts`, `README.md`) allows overriding the default API endpoint, which could be exploited if the execution environment is compromised.
能力评估
Purpose & Capability
Name/description match the code and install: the package implements MCP tools to search, list, create auctions and place bids against https://www.houseproto.fun. The single required env var (AUCTION_HOUSE_API_KEY) is exactly what the code uses for API authentication; no unrelated credentials or system paths are requested.
Instruction Scope
SKILL.md instructs the agent to proactively poll ('heartbeats'), remember user preferences, and execute auto-bid rules after confirmation. That matches the provided tools (search_auctions, place_bid, my_bids, wallet_info). Proactive monitoring and autonomous auto-bid behaviour are legitimate for this purpose but increase risk (automatic financial actions) — the user should be aware and confirm auto-bid rules explicitly.
Install Mechanism
Install is an npm package (auction-house-mcp). The repository includes all source and built files in the manifest; there are no opaque external downloads or shorteners. npm install/run is a moderate-risk, expected mechanism for this Node-based MCP server.
Credentials
Only AUCTION_HOUSE_API_KEY is required (with an optional AUCTION_HOUSE_URL override mentioned in README). This is proportionate: the API key is needed to authenticate bot actions (listing, bids, wallet info). No unrelated secrets (AWS, SSH, etc.) are requested.
Persistence & Privilege
The skill is not always-on and does not request system-wide privileges. It requests the agent remember user prefs/auto-bid rules (agent memory), which is consistent with its function. It does not modify other skills or system configs.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install auction-house
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /auction-house 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release - Scout, monitor, and bid on auctions on House
元数据
Slug auction-house
版本 1.0.0
许可证
累计安装 1
当前安装数 1
历史版本数 1
常见问题

House Auction 是什么?

Scout, monitor, and bid on auctions on House (houseproto.fun) — a crypto auction platform on Base. Proactively watches for items the user cares about. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1006 次。

如何安装 House Auction?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install auction-house」即可一键安装,无需额外配置。

House Auction 是免费的吗?

是的,House Auction 完全免费(开源免费),可自由下载、安装和使用。

House Auction 支持哪些平台?

House Auction 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 House Auction?

由 im-still-thinking(@im-still-thinking)开发并维护,当前版本 v1.0.0。

💬 留言讨论