Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

vacation-property-management度假物业管理

Agent Skill

vacation-property-management 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,305

周安装

135

GitHub Stars

公开资料未说明

下载量

1,058
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install vacation-property-management

简介

vacation-property-management 集成 TIDY 平台管理度假租赁物业和预订。

  • 适合处理客人入住、清洁清单和房源状态同步等任务。
  • 通过 clawhub 安装,使用命令 openclaw skills install vacation-property-management。
  • 需授权访问第三方平台账户并注意数据同步延迟问题。
  • 建议核对原始文档了解 API 限制和异常处理策略。

SKILL.md

name
vacation-property-management
description
Manage vacation rental properties, guest reservations, and cleaning checklists with the TIDY platform.
version
1.0.0
metadata
openclaw
requires
env
primaryEnv
TIDY_API_TOKEN
emoji
🏠
homepage
https://tidy.com

Vacation Property Management — TIDY

Manage vacation rental properties, guest reservations, and cleaning checklists through the TIDY API. Built for short-term rental hosts, vacation property managers, and Airbnb/VRBO operators.

Authentication

All requests require a Bearer token. Obtain one by logging in or signing up.

# Sign up
curl -X POST https://public-api.tidy.com/api/v2/auth/signup \
  -H "Content-Type: application/json" \
  -d '{"first_name":"Jane","last_name":"Doe","email":"jane@example.com","password":"secret123"}'

# Log in
curl -X POST https://public-api.tidy.com/api/v2/auth/login \
  -H "Content-Type: application/json" \
  -d '{"email":"jane@example.com","password":"secret123"}'

Both return { "token": "abc123..." }. Tokens do not expire.

export TIDY_API_TOKEN="abc123..."

Include Authorization: Bearer $TIDY_API_TOKEN on all subsequent requests.


Addresses (Properties)

Properties are called "addresses" in the API. Each address represents a physical property you manage.

List all addresses

curl -s https://public-api.tidy.com/api/v2/addresses \
  -H "Authorization: Bearer $TIDY_API_TOKEN"

Get a single address

curl -s https://public-api.tidy.com/api/v2/addresses/123 \
  -H "Authorization: Bearer $TIDY_API_TOKEN"

Response fields: id, address, unit, city, postal_code, country_code, address_name, notes (access, closing), parking (paid_parking, parking_spot, parking_pay_with, max_parking_cost, parking_notes), created_at.

Create an address

curl -X POST https://public-api.tidy.com/api/v2/addresses \
  -H "Authorization: Bearer $TIDY_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "address": "123 Beach Rd",
    "city": "Miami",
    "postal_code": "33139",
    "country_code": "US",
    "address_name": "Beach House",
    "notes": {
      "access": "Lockbox code 4521 on side gate",
      "closing": "Leave keys on kitchen counter"
    },
    "parking": {
      "paid_parking": false,
      "parking_spot": "myspot",
      "parking_pay_with": "card",
      "max_parking_cost": 0,
      "parking_notes": "Park in driveway spot #2"
    }
  }'

Required: address, city, postal_code, parking (with paid_parking, parking_spot, parking_notes).

Optional: unit, country_code (default "US"), address_name, notes (with access, closing).

parking_spot values: myspot, meter, street, guest, paidlot.

parking_pay_with values: card, cash (default "card").

Update an address

curl -X PUT https://public-api.tidy.com/api/v2/addresses/123 \
  -H "Authorization: Bearer $TIDY_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "address_name": "Oceanfront Beach House",
    "notes": { "access": "Updated: use smart lock code 9876" }
  }'

Only provided fields are changed.

Delete an address

curl -X DELETE https://public-api.tidy.com/api/v2/addresses/123 \
  -H "Authorization: Bearer $TIDY_API_TOKEN"

Guest Reservations

Track guest check-in and check-out dates for each property. Reservations can trigger automatic turnover cleaning.

List all reservations

curl -s https://public-api.tidy.com/api/v2/guest-reservations \
  -H "Authorization: Bearer $TIDY_API_TOKEN"

# Filter by address
curl -s "https://public-api.tidy.com/api/v2/guest-reservations?address_id=123" \
  -H "Authorization: Bearer $TIDY_API_TOKEN"

Get a single reservation

curl -s https://public-api.tidy.com/api/v2/guest-reservations/456 \
  -H "Authorization: Bearer $TIDY_API_TOKEN"

Response fields: id, address_id, job_id, check_in (date, time), check_out (date, time), created_at.

Create a reservation

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

Required: address_id, check_in.date, check_out.date.

Optional: check_in.time, check_out.time.

Date format: YYYY-MM-DD. Time format: HH:MM (24-hour).

Delete a reservation

curl -X DELETE https://public-api.tidy.com/api/v2/guest-reservations/456 \
  -H "Authorization: Bearer $TIDY_API_TOKEN"

To-Do Lists (Cleaning Checklists)

To-do lists are cleaning checklists that can be attached to jobs. They tell service providers what specific tasks to perform at a property.

curl -s https://public-api.tidy.com/api/v2/to-do-lists \
  -H "Authorization: Bearer $TIDY_API_TOKEN"

# Filter by address
curl -s "https://public-api.tidy.com/api/v2/to-do-lists?address_id=123" \
  -H "Authorization: Bearer $TIDY_API_TOKEN"

Natural Language (message-tidy)

For complex multi-step operations, send a natural language request instead of calling individual endpoints.

curl -X POST https://public-api.tidy.com/api/v2/message-tidy \
  -H "Authorization: Bearer $TIDY_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "message": "Add a new property at 456 Oak Lane, Austin TX 78701 with gate code 1234",
    "context": { "address_id": 123 }
  }'

This is asynchronous. Poll with GET /api/v2/message-tidy/{id} every 3–5 seconds until status is completed or failed.

Example requests

  • "Add a new vacation rental at 789 Palm Dr, Scottsdale AZ 85251"
  • "Create a guest reservation at my Beach House for April 10-14"
  • "Show me all upcoming reservations at address 123"
  • "Update the access notes for my downtown condo to say use smart lock code 5678"

CLI Alternative

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

tidy-request login
tidy-request "Create a guest reservation at Beach House for April 10-14"
tidy-request "List all my properties"
tidy-request "Update access notes for address 123" --address-id 123
tidy-request "Extend the reservation by 2 days" --reservation-id 456

Error Handling

HTTP StatusError TypeWhen
400invalid_request_errorMissing or invalid parameters
401authentication_errorBad credentials or missing token
404not_found_errorResource does not exist
500internal_errorServer error

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.21%
按下载量换算827

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills