Token导航 LogoToken导航TokenDH.com
开发执行命令clawhub未标认证来源可访问clear审计提醒

hospitable-ops热情好客的行动

Agent Skill

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

总安装

1,697

周安装

68

GitHub Stars

公开资料未说明

下载量

549
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:hospitable-ops(热情好客的行动)
来源仓库:https://github.com/jiangwill2023/hospitable-ops
安装命令:
openclaw skills install hospitable-ops
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install hospitable-ops

简介

hospitable-ops 自动化酒店住宿预订与非价格日历管理。

  • 采用先读 API 工作流程保障操作安全性。
  • 重点处理日历控件同步与冲突检测逻辑。hospitable-ops 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 使用前需获取 OTA 平台开发者权限与沙箱环境。
  • 注意 API 调用频次限制与错误回滚机制设计。

SKILL.md

name
hospitable-ops
description
Operate, debug, and automate Hospitable via Public API with a safe read-first workflow and non-price calendar controls. Use when working with Hospitable properties, reservations, calendar reads, write verification, blocking/unblocking dates, check-in/check-out restrictions, property mapping, or cross-channel automation logic around Airbnb/Booking/Hospitable. Especially use for: (1) verifying Hospitable API auth and endpoints, (2) exporting properties/reservations/calendar, (3) testing or applying non-price calendar writes, (4) building Hospitable-based automation/reporting, (5) debugging delayed sync or write semantics.

Hospitable Ops

Use Hospitable as the unified operational base. Prefer read-first, then safe write verification, then controlled non-price writes.

Core rules

  • Treat Hospitable as the system of operational judgment, especially for unified property UUIDs, calendar state, reservations, and parent/child exclusion logic.
  • Never expose tokens in chat, logs, screenshots, or shared files.
  • Use Hospitable Public API v2 as the only active execution path for reads and automation in this workspace.
  • MCP has been removed from the current Hospitable operating path; do not route or describe Hospitable work through MCP.
  • Use persistent config or local scripts; avoid session-only ad hoc setup when building repeatable workflows.
  • Default to non-price actions only. Price, currency, and money-related changes must be discussed first and then changed manually by the human.
  • Assume write effects may be asynchronous. Do not judge failure from an immediate readback alone.
  • In this workspace, do not rely on OpenClaw runtime inheriting shell env automatically; prefer script-level loading from /Users/admin-ai/.openclaw/workspace-qiang/.env.local for repeatable Hospitable execution.
  • HOSPITABLE_TOKEN must contain the token body only; never include a leading Bearer prefix in the env value.

Standard workflow

  1. Verify HOSPITABLE_TOKEN is available in the current execution environment without printing it.
  2. If runtime inheritance is uncertain, use local script loading from .env.local instead of re-debugging shell/profile inheritance.
  3. Read data first:

- properties - reservations - calendar

  1. Save JSON with statusCode and body envelope.
  2. Build operational judgments from Hospitable first; layer Booking/Airbnb exceptions after.
  3. For writes, probe safely:

- identify method - identify minimal body - test on low-risk future date - re-read after delay

  1. Only after semantics are clear, apply controlled non-price changes.

Known API behavior

Read

Use bearer auth plus Accept: application/json.

Current workspace rule:

  • default to the current validated token
  • treat older/previous Hospitable tokens as deprecated unless the human explicitly restores one
  • prefer local env file loading over shell-history fallback or session-only manual export

Common read paths:

  • properties
  • reservations?properties[]=<uuid>
  • properties/<uuid>/calendar?start_date=YYYY-MM-DD&end_date=YYYY-MM-DD

Runtime inheritance readback (validated)

Validated facts in this workspace:

  • host-side token is valid and can return statusCode: 200 on properties
  • OpenClaw agent runtime did not automatically inherit HOSPITABLE_TOKEN
  • repeatable workaround: load /Users/admin-ai/.openclaw/workspace-qiang/.env.local directly inside Hospitable scripts
  • after enabling script-level env loading, node scripts/hospitable-read.js properties --per-page 1 returned statusCode: 200

Current script CLI contract

/Users/admin-ai/.openclaw/workspace-qiang/scripts/hospitable-read.js

Supported commands:

  • properties [--per-page N]
  • reservations --property <uuid> [--per-page N]
  • calendar --property <uuid> --start YYYY-MM-DD --end YYYY-MM-DD

Important:

  • calendar uses --start and --end
  • do not use --start-date / --end-date with this script
  • keep #!/usr/bin/env node on line 1 if editing the script header

Write

For calendar writes:

  • route: properties/<uuid>/calendar
  • supported method: PUT
  • PATCH is not supported
  • request body must include dates
  • minimal accepted structure:
{
  "dates": [
    { "date": "YYYY-MM-DD" }
  ]
}

Verified non-price semantics

Block a whole date

{
  "dates": [
    { "date": "YYYY-MM-DD", "available": false }
  ]
}

Expected eventual readback:

  • status.reason = BLOCKED
  • status.source = api
  • status.source_type = VENDOR
  • status.available = false

Restrict check-in / check-out

{
  "dates": [
    {
      "date": "YYYY-MM-DD",
      "closed_for_checkin": true,
      "closed_for_checkout": true
    }
  ]
}

Expected eventual readback:

  • closed_for_checkin = true
  • closed_for_checkout = true
  • day may still remain AVAILABLE

Operational boundaries

Allowed direct actions

  • non-price calendar block/unblock
  • check-in/check-out restrictions
  • non-price operational lock windows
  • parent/child exclusion enforcement
  • cross-channel conflict prevention using non-price controls
  • one-time cleanup of legacy order occupancy when the business rule is already confirmed

Human-only actions

  • price
  • currency
  • money-related changes
  • pricing strategy decisions

Long-term operating model

Reduce the property system into three stable forms whenever possible:

  1. Airbnb-only
  2. dual-channel managed by Hospitable native mechanisms
  3. main-house gate open/closed

Treat legacy exceptions as temporary cleanup layers, not permanent structure.

Current NXM cleanup model

  • mute(booking) is a historical order source only and should not take new sales.
  • 206 -> 201 is a temporary operational occupancy transfer caused by legacy mute orders.
  • customer-visible order display can remain original while operational occupancy moves internally for anti-overbooking control.
  • after cleanup, return to the three stable forms above.

Recommended local files

  • scripts/hospitable-read.js
  • scripts/hospitable-write-probe.js
  • exported JSON snapshots with statusCode/body
  • rule config files for object tiers and lock windows

Delay-aware verification

After a write returns 202 accepted:

  1. wait before declaring failure
  2. re-read the same date window
  3. compare operational fields, not only high-level availability
  4. check whether the change is semantic (blocked vs closed_for_checkin/checkout)

Good output pattern

Report in this order:

  1. current status
  2. exact object/date tested
  3. request accepted or rejected
  4. delayed readback result
  5. operational conclusion
  6. single biggest remaining gap

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.03%
按下载量换算538

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install hospitable-ops 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills