Hostex (hostex.io) OpenAPI v3.0 skill for querying and managing vacation rental properties, room types, reservations, availability, listing calendars, guest messaging, reviews, and webhooks via the Hostex API. Use when you need to integrate with Hostex API using a Hostex PAT (Hostex-Access-Token / HostexAccessToken) or when you need safe, intent-level API calls (read-only by default, optional write operations with explicit confirmation).
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install hostex或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install hostex⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/hostex/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: hostex description: "Hostex (hostex.io) OpenAPI v3.0 skill for querying and managing vacation rental properties, room types, reservations, availability, listing calendars, guest messaging, reviews, and webhooks via the Hostex API. Use when you need to integrate with Hostex API using a Hostex PAT (Hostex-Access-Token / HostexAccessToken) or when you need safe, intent-level API calls (read-only by default, optional write operations with explicit confirmation)." ---
HOSTEX_ACCESS_TOKENHostex-Access-Token: HostexAccessTokenDefault recommendation: use a read-only PAT.
YYYY-MM-DDStable OpenAPI JSON:
Use scripts/openapi-sync.mjs to cache a local copy into references/openapi.json.
All scripts expect HOSTEX_ACCESS_TOKEN.
List properties:
node skills/hostex/scripts/hostex-read.mjs list-properties --limit 20
List reservations (by check-in range):
node skills/hostex/scripts/hostex-read.mjs list-reservations --start-check-in-date 2026-02-01 --end-check-in-date 2026-02-28 --limit 20
List reservations (by reservation code):
node skills/hostex/scripts/hostex-read.mjs list-reservations --reservation-code 0-1234567-abcdef
Get availability:
node skills/hostex/scripts/hostex-read.mjs get-availabilities --start 2026-02-10 --end 2026-02-20 --property-id 123
Writes are disabled unless:
HOSTEX_ALLOW_WRITES=trueand you pass --confirm.
Send message:
HOSTEX_ALLOW_WRITES=true node skills/hostex/scripts/hostex-write.mjs send-message --conversation-id 123 --text "Hello!" --confirm
Update listing prices (single range example):
HOSTEX_ALLOW_WRITES=true node skills/hostex/scripts/hostex-write.mjs update-listing-prices \
--channel-type airbnb \
--listing-id 456 \
--start 2026-02-10 \
--end 2026-02-15 \
--price 199 \
--confirm
Update listing prices (multi-range in one request):
HOSTEX_ALLOW_WRITES=true node skills/hostex/scripts/hostex-write.mjs update-listing-prices \
--channel-type booking_site \
--listing-id 100541-10072 \
--prices "2026-02-03..2026-02-05:599,2026-02-06..2026-02-07:699,2026-02-08..2026-02-09:599" \
--confirm
Create reservation (Direct Booking) (example):
HOSTEX_ALLOW_WRITES=true node skills/hostex/scripts/hostex-write.mjs create-reservation \
--property-id 123 \
--custom-channel-id 77 \
--check-in-date 2026-02-10 \
--check-out-date 2026-02-12 \
--guest-name "Alice" \
--currency USD \
--rate-amount 200 \
--commission-amount 0 \
--received-amount 200 \
--income-method-id 3 \
--confirm
Update property availabilities (close/open) (example):
# Close a property for a date range
HOSTEX_ALLOW_WRITES=true node skills/hostex/scripts/hostex-write.mjs update-availabilities \
--property-ids "11322075" \
--available false \
--start-date 2026-02-03 \
--end-date 2027-02-02 \
--confirm
When doing any write operation: 1) Summarize the change (who/what/when/how much). 2) Require the user to explicitly confirm (e.g. CONFIRM). 3) Prefer --dry-run first if available.
offset + limit (limit max 100).安装 Hostex 后,可以对 AI 说这些话来触发它
Help me get started with Hostex
Explains what Hostex does, walks through the setup, and runs a quick demo based on your current project
Use Hostex to hostex (hostex
Invokes Hostex with the right parameters and returns the result directly in the conversation
What can I do with Hostex in my developer & devops workflow?
Lists the top use cases for Hostex, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/hostex/ 目录(个人级,所有项目可用),或 .claude/skills/hostex/(项目级)。重启 AI 客户端后,用 /hostex 主动调用,或让 AI 根据上下文自动发现并使用。
Hostex 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Hostex 可免费安装使用。请查阅仓库了解许可证信息。
Hostex (hostex.io) OpenAPI v3.0 skill for querying and managing vacation rental properties, room types, reservations, availability, listing calendars, guest messaging, reviews, and webhooks via the Hostex API. Use when you need to integrate with Hostex API using a Hostex PAT (Hostex-Access-Token / HostexAccessToken) or when you need safe, intent-level API calls (read-only by default, optional write operations with explicit confirmation).
Hostex 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using Hostex
Identifies repetitive steps in your workflow and sets up Hostex to handle them automatically