vrbo
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseVrbo Skill
Vrbo Skill
Overview
概述
Enables Claude to search vacation rentals, book entire homes and condos, communicate with property owners, and manage reservations through Vrbo's platform.
让Claude能够通过Vrbo平台搜索度假租赁房源、预订整套住宅和公寓、与房东沟通并管理预订。
Quick Install
快速安装
bash
curl -sSL https://canifi.com/skills/vrbo/install.sh | bashOr manually:
bash
cp -r skills/vrbo ~/.canifi/skills/bash
curl -sSL https://canifi.com/skills/vrbo/install.sh | bash或手动安装:
bash
cp -r skills/vrbo ~/.canifi/skills/Setup
设置
Configure via canifi-env:
bash
undefined通过canifi-env进行配置:
bash
undefinedFirst, ensure canifi-env is installed:
首先,确保已安装canifi-env:
curl -sSL https://canifi.com/install.sh | bash
curl -sSL https://canifi.com/install.sh | bash
canifi-env set VRBO_EMAIL "your-email@example.com"
undefinedcanifi-env set VRBO_EMAIL "your-email@example.com"
undefinedPrivacy & Authentication
隐私与认证
Your credentials, your choice. Canifi LifeOS respects your privacy.
你的凭据,由你掌控。Canifi LifeOS尊重你的隐私。
Option 1: Manual Browser Login (Recommended)
选项1:手动浏览器登录(推荐)
If you prefer not to share credentials with Claude Code:
- Complete the Browser Automation Setup using CDP mode
- Login to the service manually in the Playwright-controlled Chrome window
- Claude will use your authenticated session without ever seeing your password
如果你不想与Claude Code共享凭据:
- 使用CDP模式完成浏览器自动化设置
- 在Playwright控制的Chrome窗口中手动登录该服务
- Claude将使用你的已认证会话,全程不会看到你的密码
Option 2: Environment Variables
选项2:环境变量
If you're comfortable sharing credentials, you can store them locally:
bash
canifi-env set SERVICE_EMAIL "your-email"
canifi-env set SERVICE_PASSWORD "your-password"Note: Credentials stored in canifi-env are only accessible locally on your machine and are never transmitted.
如果你愿意共享凭据,可以将其存储在本地:
bash
canifi-env set SERVICE_EMAIL "your-email"
canifi-env set SERVICE_PASSWORD "your-password"注意:存储在canifi-env中的凭据仅能在你的本地机器上访问,绝不会被传输。
Capabilities
功能
- Search vacation rentals by location, size, and amenities
- Filter by property type, price, and reviews
- View property details, photos, and availability calendars
- Communicate with property owners/managers
- Manage existing bookings and payments
- Access One Key rewards from bookings
- 按地点、房源规模和配套设施搜索度假租赁房源
- 按房源类型、价格和评价筛选
- 查看房源详情、照片和可用日历
- 与房东/物业经理沟通
- 管理现有预订和付款
- 通过预订获取One Key奖励
Usage Examples
使用示例
Example 1: Find Vacation Rental
示例1:查找度假租赁房源
User: "Find a beach house in Destin for a family of 6 in July"
Claude: I'll search Vrbo for Destin beach houses.
- Opens vrbo.com via Playwright MCP
- Enters Destin, FL, July dates
- Filters: 3+ bedrooms, 6+ guests, beachfront
- Shows top results:
- "Gulf View Paradise": 4BR, $350/night, pool
- "Sandy Toes Retreat": 3BR, $275/night, beach access
- "Ocean Breeze Villa": 4BR, $425/night, private beach
- Notes total costs including cleaning fees用户:"为一个6口之家在7月份找Destin的海滨别墅"
Claude:我将在Vrbo上搜索Destin的海滨别墅。
- 通过Playwright MCP打开vrbo.com
- 输入佛罗里达州Destin、7月日期
- 筛选条件:3间以上卧室、可容纳6位以上客人、海滨位置
- 显示热门结果:
- "Gulf View Paradise":4卧室,350美元/晚,带泳池
- "Sandy Toes Retreat":3卧室,275美元/晚,可直达海滩
- "Ocean Breeze Villa":4卧室,425美元/晚,私人海滩
- 标注包含清洁费在内的总费用Example 2: Check Property Availability
示例2:查询房源可用性
User: "Is that beach house available for 4th of July week?"
Claude: I'll check the availability calendar.
- Opens property listing
- Views July calendar
- Returns: July 1-8 available
- Total: $2,450 (7 nights x $350)
- Cleaning fee: $275
- Service fee: $345
- Grand total: $3,070
- Cancellation: Full refund until June 1用户:"那栋海滨别墅在独立日周有空房吗?"
Claude:我将查看可用日历。
- 打开房源列表页面
- 查看7月日历
- 返回结果:7月1日至8日有空房
- 总计:2450美元(7晚 × 350美元)
- 清洁费:275美元
- 服务费:345美元
- 总计:3070美元
- 取消政策:6月1日前可全额退款Example 3: Message Property Owner
示例3:给房东发消息
User: "Ask if they allow small dogs"
Claude: I'll message the property owner.
- Opens messaging interface
- Composes inquiry: "Hi! We're interested in booking your property for July 1-8. We have a small, well-behaved dog (15 lbs). Are pets allowed? Thank you!"
- Sends message
- Reports: Message sent, owners typically respond within 4 hours用户:"问他们是否允许小型犬"
Claude:我将给房东发消息。
- 打开消息界面
- 撰写咨询内容:"您好!我们有意预订您的房源,时间为7月1日至8日。我们有一只温顺的小型犬(15磅)。请问允许携带宠物吗?谢谢!"
- 发送消息
- 反馈:消息已发送,房东通常会在4小时内回复Authentication Flow
认证流程
- Navigate to vrbo.com via Playwright MCP
- Click "Sign in" and enter email
- Complete password verification
- Handle email confirmation if needed
- Verify account dashboard loads
- Maintain session for bookings
- 通过Playwright MCP导航至vrbo.com
- 点击“登录”并输入邮箱
- 完成密码验证
- 如有需要,处理邮箱确认
- 验证账户仪表盘加载完成
- 保持会话以进行预订操作
Error Handling
错误处理
- Login Failed: Retry with password reset link
- Property Unavailable: Suggest similar nearby properties
- Booking Failed: Verify payment, contact owner
- Session Expired: Re-authenticate automatically
- Rate Limited: Wait 60 seconds, retry
- Owner Unresponsive: Suggest alternative listings
- 登录失败:通过密码重置链接重试
- 房源不可用:推荐附近类似房源
- 预订失败:验证付款信息,联系房东
- 会话过期:自动重新认证
- 速率限制:等待60秒后重试
- 房东无响应:推荐替代房源
Self-Improvement Instructions
自我改进说明
After each interaction:
- Track property availability patterns
- Note seasonal pricing trends
- Log owner response rates
- Document UI changes
Suggest updates when:
- Vrbo updates search interface
- One Key integration changes
- New filter options added
- Messaging system updates
每次交互后:
- 跟踪房源可用性模式
- 记录季节性价格趋势
- 记录房东回复率
- 记录UI变化
在以下情况时建议更新:
- Vrbo更新搜索界面
- One Key集成变更
- 添加新的筛选选项
- 消息系统更新
Notes
注意事项
- Vrbo focuses on entire homes (not shared spaces)
- Total cost includes cleaning and service fees
- Book It Now properties can be reserved instantly
- Premier Host properties have higher standards
- One Key rewards work across Expedia family
- Always verify pet, event, and smoking policies
- Damage protection may be required
- Vrbo主打整套住宅(非共享空间)
- 总费用包含清洁费和服务费
- “立即预订”房源可即时预订
- “顶级房东”房源有更高的服务标准
- One Key奖励适用于Expedia旗下全平台
- 请务必确认宠物、活动和吸烟政策
- 可能需要购买损坏保障