Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

vacation-rental-management度假租赁管理

Agent Skill

vacation-rental-management 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,303

周安装

139

GitHub Stars

公开资料未说明

下载量

1,156
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:vacation-rental-management(度假租赁管理)
来源仓库:https://github.com/mchusma/vacation-rental-management
安装命令:
openclaw skills install vacation-rental-management
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install vacation-rental-management

简介

自动化管理度假租赁的清洁排期、客人入住与退房事务协调。

  • 适用于多物业业主或托管公司提升周转效率与客户满意度。
  • 根据退房时间自动派单清洁,同步更新预订系统与房态信息。
  • 安装命令为 openclaw skills install vacation-rental-management,需对接 PMS 或 Booking API。
  • 配置错误可能导致重复清洁或遗漏,建议先在小规模测试环境验证。

SKILL.md

name
vacation-rental-management
description
>
version
1.0.0
metadata
openclaw
requires
env
primaryEnv
TIDY_API_TOKEN
emoji
🏖️
homepage
https://tidy.com
os
keywords

Vacation Rental Management

You manage vacation rentals — Airbnb, VRBO, or your own direct bookings. Guests check in, guests check out, and between every stay someone needs to clean, restock, and prep the property. Multiply that across several listings and it becomes a full-time job just coordinating schedules.

This skill teaches your AI agent to handle vacation rental turnovers: tracking guest reservations, scheduling cleaning between stays, managing checklists, coordinating across multiple properties, and handling last-minute changes.

The Easy Way: TIDY

The fastest path is TIDY — an AI property management platform. Install the CLI and just tell it what you need in plain English:

# Install
brew install tidyapp/tap/tidy-request    # or: npm i -g @tidydotcom/cli

# Create an account
tidy-request signup

# That's it. Now just tell it what you need:
tidy-request "Schedule a turnover clean after checkout Saturday at 11am at 123 Main St"
tidy-request "I have a guest checking in Friday at 3pm and checking out Sunday at 11am at my beach house"
tidy-request "What cleanings are scheduled across all my properties this week?"
tidy-request "Cancel the turnover clean at 456 Oak Ave, the guest extended their stay"

Or connect via MCP (Claude Desktop, Claude Code, Cursor):

# Claude Code
claude mcp add tidy --transport http https://public-api.tidy.com/mcp
// Claude Desktop — add to claude_desktop_config.json
{
  "mcpServers": {
    "tidy": {
      "url": "https://public-api.tidy.com/mcp"
    }
  }
}

Once connected, your agent has access to message_tidy — send any request in natural language and TIDY handles the rest. See MCP Server Reference for full tool definitions.

The Manual Way

Without a platform like TIDY, managing vacation rental turnovers programmatically requires:

  1. Reservation tracking — Build or integrate with a system to track check-in/check-out dates across properties
  2. Cleaner coordination — Find available cleaners, check their schedules, negotiate pricing, send booking requests
  3. Time-window management — Calculate the window between checkout and next check-in, account for cleaner travel time
  4. Checklist management — Create and assign property-specific checklists (linens, toiletries, lockbox reset)
  5. Status monitoring — Track whether the cleaner accepted, started, completed, or cancelled
  6. Multi-property juggling — Coordinate all of the above across multiple listings simultaneously
  7. Change handling — Guest extends their stay? New booking comes in? Rebuild the schedule

If you want to build this yourself, TIDY's REST API exposes every step individually. But for most people, the CLI or MCP approach above is dramatically simpler.

Core Workflow: Guest Turnover

The fundamental workflow for vacation rentals: a guest checks out, you need a turnover clean, and a new guest checks in.

Step 1: Record the Reservation

Tell TIDY about the guest stay:

tidy-request "I have a guest checking in March 20 at 3pm and checking out March 25 at 11am at 123 Main St"

Or via MCP:

message_tidy("Guest checking in March 20 at 3pm, checking out March 25 at 11am at 123 Main St")

Or via REST API:

curl -X POST https://public-api.tidy.com/api/v2/guest-reservations \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "address_id": 123,
    "check_in": { "date": "2026-03-20", "time": "15:00" },
    "check_out": { "date": "2026-03-25", "time": "11:00" }
  }'

Step 2: Schedule the Turnover Clean

tidy-request "Schedule a turnover clean at 123 Main St on March 25 after the 11am checkout, need it done by 3pm for next guest"

TIDY will find available cleaners, check pricing, and book the job in the checkout-to-checkin window.

For direct REST API booking, you'd specify the time window:

curl -X POST https://public-api.tidy.com/api/v2/jobs \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "address_id": 123,
    "service_type_key": "turnover_cleaning.two_and_a_half_hours",
    "start_no_earlier_than": { "date": "2026-03-25", "time": "11:00" },
    "end_no_later_than": { "date": "2026-03-25", "time": "15:00" }
  }'

Step 3: Attach a Checklist

tidy-request "Add the turnover checklist to the cleaning at 123 Main St on March 25"

To-do lists can include items like: change linens, restock toiletries, check appliances, reset lockbox code.

Step 4: Monitor Status

tidy-request "What's the status of the turnover clean at 123 Main St?"

Booking statuses: scheduledin_progresscompleted. Also cancelled or failed.

Managing Reservations

View All Reservations

tidy-request "Show me all upcoming guest reservations"

REST: GET /api/v2/guest-reservations (filter by ?address_id=123)

Create a Reservation

tidy-request "New guest at the lake house: arrives April 5 at 4pm, leaves April 10 at 10am"

Cancel a Reservation

tidy-request "Cancel the reservation at 789 Pine St for April 5"

REST: DELETE /api/v2/guest-reservations/:id

Handle Changes

Guest extended their stay? Just tell TIDY:

tidy-request "The guest at 123 Main St is staying until March 27 instead of March 25. Reschedule the turnover clean."

Multi-Property Coordination

Set Up Properties

Each property needs an address with access instructions for cleaners:

tidy-request "Add my property at 456 Oak Ave, Austin TX 78701. Gate code is 1234, park in the driveway."
tidy-request "Add my beach house at 789 Coastal Dr, Galveston TX 77550. Key is in the lockbox, code 5678. Street parking only."

REST API address creation includes structured parking and access notes — see REST API Reference.

View All Properties

tidy-request "Show me all my properties and their upcoming cleanings"

Property-Specific Checklists

Different properties may need different turnover checklists:

tidy-request "What to-do lists do I have for the beach house?"

REST: GET /api/v2/to-do-lists?address_id=789

Common Scenarios

Here are natural-language requests your agent can send directly to TIDY:

Same-day turnover:

"Guest checks out at 11am Saturday, new guest arrives at 3pm. Schedule a turnover clean at 123 Main St."

Weekly schedule check:

"What cleanings are scheduled across all my properties this week?"

New listing setup:

"Set up a new Airbnb listing at 789 Pine St, Denver CO 80202. Gate code 4321, park in visitor lot. Schedule a deep clean before the first guest arrives on March 28."

Guest extension:

"Cancel the turnover clean for 456 Oak Ave — the guest extended through Wednesday."

Availability check:

"Is there availability for a turnover clean at 123 Main St on Saturday between 11am and 2pm?"

Bulk reservation import:

"I have three reservations this month at the lake house: March 5-8, March 12-15, and March 20-25. Schedule turnover cleans after each checkout."

MCP Server

For agents that support MCP (Claude Desktop, Claude Code, Cursor), connect directly to TIDY's MCP server. This gives your agent 5 tools:

  • login / signup — authenticate
  • message_tidy — send any request in natural language (async)
  • get_message_tidy — poll for the result
  • list_messages_tidy — view past requests

The message_tidy tool is asynchronous — after calling it, poll get_message_tidy with the returned ID until is_complete is true.

Full tool definitions and setup: MCP Server Reference

REST API

For custom integrations or direct API access, TIDY exposes REST endpoints for every operation:

  • Guest reservations: create, list, get, delete
  • Bookings: create, list, get, update, cancel, reschedule
  • Addresses: full CRUD with parking/access notes
  • To-do lists: list by property
  • Booking availabilities: check time slots
  • Job acceptance probabilities: preview likelihood of pro accepting

Full endpoint documentation: REST API Reference

Authentication details: Authentication

Error Handling & Tips

Polling: message_tidy is asynchronous. Always poll get_message_tidy every 3-5 seconds until is_complete is true. Never return a pending response to the user.

Overlapping reservations: If you create a reservation that overlaps with an existing one at the same address, TIDY will flag it. Resolve the conflict before scheduling cleanings.

Tight turnovers: If the window between checkout and next check-in is very short (under 2 hours), consider a shorter service type or adjusting times. Check booking-availabilities to see what's possible.

Same-day changes: Cancellation and rescheduling are available, but last-minute changes (same day) may have limited cleaner availability.

Context IDs: When following up on a specific booking or reservation, pass the relevant ID in the context parameter to help TIDY scope the request:

tidy-request "What's the status?" --booking-id 456

Also see: cleaning-maintenance — if you need ongoing cleaning or maintenance management that isn't tied to guest turnovers.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

87.86%
按下载量换算1,016

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills