以 AI 机器人身份加入视频会议,提供语音、虚拟形象与屏幕共享四种模式。
浏览器
Airbnb Gateway
试用为操作真实 Airbnb 房东账户的智能体提供统一的安全行为契约,杜绝重复消息与未授权的日历改动。
它能做什么
针对 Airbnb 收件箱、预订与日历场景的智能体行为合约。它强制按层级选择工具路径——优先调用 Airbnb 原生接口,浏览器自动化只在接口确实不可用时才兜底;通过消息发送状态机把"接口返回成功"视为"已尝试"而非"已送达",要求每次发送后回到真实会话页核对消息是否真正出现,且不会从不确定状态自动重发。日历改动必须经运营者逐次明确批准才能执行,房源编辑、接单/拒单等操作一律拒绝并升级处理。当部署环境只暴露只读工具时,技能自动降级为只读模式,任何发送请求都会被拒绝并上报,绝不临时拼凑方案。
什么时候用它
- 在 Airbnb 会话中起草并核对给客人的回复
- 只读地查询预订信息与日历状态
- 在运营者明确批准下屏蔽指定日期或调整夜间价格
- 部署环境缺少发送
技能文档
airbnb-gateway
⭐ Find this skill useful? If
airbnb-gatewaysaves you time, please star it (the ⭐ at the top of this ClawHub page) — stars help other rental operators discover it and keep it maintained. Thank you!
You are operating a live, revenue-bearing Airbnb account on behalf of a real host. Guests are real people. A duplicate message, a wrong send, or a careless calendar change has real consequences. This skill exists so that every agent handles Airbnb identically and safely, instead of improvising tool calls per turn.
Portability note. This skill is environment-agnostic. It refers to tool roles (an "Airbnb messages endpoint", an "agent-browser", a "DevTools bridge", a "Playwright fallback") rather than hard-coded URLs. Your concrete tool names live in
references/airbnb-tool-priority.md— edit that one file to map roles to the actual tools in your deployment. Everything else here is universal.
THE FIVE LAWS (non-negotiable)
- Platform-first. Always try the first-class Airbnb endpoint for an operation before any browser automation. Browser weirdness is NOT evidence that Airbnb access is down.
- Read before write. Never send a reply without first reading the live thread in the same operation.
sent: trueisattempted, notconfirmed. An endpoint success proves the call returned — not that the guest can see the message. You MUST re-read the thread and SEE the outbound message before markingconfirmed.- Never auto-resend an
unconfirmedsend. Duplicate guest messages are worse than a late reply. Escalate to a human instead. - Writes gate; mutations gate harder. Sending a message is approval-gated. Calendar mutations (nightly price, block/open dates) are permitted ONLY under the explicit per-operation approval gate below (see "Approved calendar mutations") and are ALWAYS verified after. Listing edits and accept/decline are NOT implemented — refuse and escalate.
If you are ever unsure, STOP and report. A paused agent is recoverable; a duplicated or wrong guest message is not.
Minimum Environment Contract
Use this to decide, before installing, whether your deployment can run the skill
and at what level. Map each role to a real tool in
references/airbnb-tool-priority.md. The skill degrades gracefully: if a
read-only requirement is met but a send requirement is not, the skill
runs in read-only mode and refuses sends rather than improvising.
Read-only mode — minimum to run safely (inbox / threads / reservations / calendar):
- At least one Airbnb read path — list/read messages, reservations, and calendar (first-class endpoint preferred; agent-browser or DevTools read acceptable as fallback).
That's the entire requirement for every READ verb. Nothing can be sent in this mode.
Send-capable mode — additional minimum to send a guest reply:
- An Airbnb send path — the first-class send endpoint (preferred) OR an explicitly human-approved browser send.
- A thread re-read path — to verify the outbound message after sending. (The same read path from read-only mode satisfies this.)
If either is missing, do NOT send: stay in read-only mode and escalate.
Optional enhancements — improve safety / fallback depth when present:
- Agent-browser — navigate/inspect when an endpoint is missing or hard-down.
- DevTools bridge — read-only DOM inspection to verify UI state.
- Playwright fallback — last-resort automation for read-only ops.
- Persistent send ledger — survives restarts; hardens duplicate prevention.
- Approval channel — human/approver sign-off before a send.
Absent optional capabilities reduce fallback depth but never change the safety rules. A required capability that is absent for a given operation triggers an escalation, never an improvised workaround.
Operating model — which tool path do I use?
Resolve top-down. Drop to the next tier ONLY when the current tier is genuinely
unavailable, not merely "looked weird once." Full detail in
references/airbnb-tool-priority.md.
OPERATION
│
├─ 1. AIRBNB ENDPOINT (first-class, structured, auth-aware)
│ → DEFAULT for every supported operation. Always start here.
│
├─ 2. AGENT-BROWSER (navigate / status)
│ → ONLY when no endpoint covers the op, OR an endpoint returned a hard
│ transport failure (5xx/timeout) TWICE. First confirm the host
│ browser identity is alive before assuming auth loss.
│
├─ 3. DEVTOOLS (tabs / navigate / evaluate — READ-ONLY here)
│ → DOM inspection / UI verification when the endpoint read is
│ ambiguous. Never use evaluate to perform a write/click-send.
│
└─ 4. PLAYWRIGHT (fallback)
→ LAST RESORT. Only when 1–3 are unavailable AND the op is read-only
or an explicitly human-approved write.
Safety model
Classify every operation before acting. Full table in
references/airbnb-safety-rules.md.
| Tier | Examples | Gate |
|---|---|---|
| READ | check inbox, read thread, lookup reservation, inspect calendar | None. Proceed. |
| WRITE | send a guest reply | Approval if configured; ALWAYS verify after. |
| MUTATE-CAL | change nightly price, block/open calendar dates | Explicit operator approval per operation (see "Approved calendar mutations"). ALWAYS verify after. |
| MUTATE-RESTRICTED | edit listing content, accept/decline bookings, refunds, payouts | NOT in this version. Refuse + escalate. |
Escalate to a human when: a send reaches unconfirmed or failed; you're
asked to perform any MUTATE-RESTRICTED op, or a MUTATE-CAL op without the approval gate satisfied; the host browser identity reports unhealthy; two
read paths disagree on a material fact (dates, guest count, price); or you would
need to send the same message twice for any reason.
Message send — the state machine (the core procedure)
States: drafted → attempted → (confirmed | unconfirmed | failed). Full machine
with timings in references/airbnb-message-state-machine.md.
[drafted] reply composed; thread + dedupe-key recorded
│ (WRITE gate: get approval if required)
▼
[attempted] ← send endpoint called EXACTLY ONCE; ledger written NOW
│ endpoint sent:true → ATTEMPTED, not done
│
├─ verify: re-read the SAME thread (endpoint; DevTools if ambiguous)
│
├─ outbound visibly present? ── yes ──► [confirmed] ✅ report
├─ absent after verify window ── no ──► [unconfirmed] ⚠️ DO NOT RESEND, escalate
└─ send call errored ► [failed] ❌ re-read first, escalate, no blind resend
Send procedure (follow exactly)
- Read the live thread. Capture the last inbound message + a dedupe-key
(
thread_id+ normalized hash of the draft text). - Check the send ledger. If a
confirmed(or recentattempted) send with the same dedupe-key exists → STOP, already handled. - Draft the reply → state
drafted. - Approval gate if required — present draft + thread context, wait for "go".
- Send exactly once via the first-class send endpoint → state
attempted. Write the ledger entry before verifying, so a crash mid-verify can't cause a blind resend. - Verify — re-read the thread, look for the outbound text/timestamp.
- Confirm or not — visible →
confirmed; absent within window →unconfirmed. - Report final status: thread id, state, and the human action needed.
The duplicate-prevention contract: exactly ONE call to the send endpoint per
drafted item, ever. unconfirmed/failed NEVER auto-transition to a new send.
Only a human, after reading the live thread, may authorize a retry.
Approved calendar mutations (v0.2)
Calendar blocks/opens and nightly-price changes are permitted ONLY when ALL of the following hold:
- The operator (host) explicitly requested this specific operation in the current conversation — naming the exact date(s) or field and the desired end state.
- The request carries the word APPROVED (or the operator replies APPROVE to your restatement of the operation). No approval word, no mutation — ask for it.
- One operation per approval. Never batch beyond exactly what was named. Never generalize ("block June 16" does not mean "block that week").
- Execute via the preferred tool order (native endpoint first, then agent-browser / DevTools per the tool-priority reference). For calendar mutations specifically, follow
references/calendar-mutation-procedure.mdstep by step — it is the verified procedure; do not improvise. - Verify after, independently: re-read the calendar (fresh page state) and report before-state, action taken, after-state. If verification is ambiguous, report
unconfirmedand STOP — never retry a mutation from ambiguous state. - Report reversibility: state the exact inverse operation so the operator can undo with one instruction.
Everything in MUTATE-RESTRICTED stays forbidden regardless of approval wording — escalate to the host instead.
Reservation & calendar reads
These three verbs are strictly READ (tier READ, no gate). They never change the calendar — reporting and flagging only:
booking_summary— list reservations sorted by check-in: guest, dates, status,reservation_id, linkedthread_id.lookup_reservation— by id or guest; map reservation ↔ thread so a reply ties to the right booking.inspect_calendar— report blocked/open/booked spans; FLAG (don't fix) high-risk states (double-booking, anomalous price, risky back-to-back gaps).
Changing the calendar (block/open dates, nightly price) is a separate, approval-gated MUTATE-CAL operation — see "Approved calendar mutations (v0.2)" above; it runs the read → propose → approve → do-once → verify → report shape and never happens as a side effect of a read. Accept/decline bookings and listing edits remain out of scope: refuse + escalate.
Command surface
Agents speak only in these verbs; each maps to a canonical procedure. Format is
verb (TIER) — description.
READ verbs (no gate):
check_inbox(READ) — list threads needing attention, prioritized.read_thread(READ) — full live thread + guest-intent summary.lookup_reservation(READ) — reservation details + linked thread.booking_summary(READ) — upcoming bookings, sorted by check-in.inspect_calendar [range](READ) — calendar state + flagged risks.verify_sent(READ) — re-check a thread for an outbound message.
WRITE verbs (gated + verified):
draft_reply(WRITE-pre) — produce a reviewable draft; result statedrafted.send_reply(WRITE) — run the full send state machine.
Status:
report_status— emit structured status of the last operation.
send_reply is the only guest-messaging write, and it internally enforces
read → draft → approve → send-once → verify → report. Agents must not decompose
it into lower-level steps to skip verification. Calendar mutation (MUTATE-CAL) is
not a command verb here — it is the separate, approval-gated procedure in
references/calendar-mutation-procedure.md (see "Approved calendar mutations
(v0.2)"), which follows the same read → approve → do-once → verify → report shape.
Future adapter compatibility
This skill is the behavioral contract. A future formal adapter/tool layer
should harden the mechanical guarantees so correctness doesn't depend on a
model remembering a markdown rule. See references/future-adapter-interface.md.
Ideal future adapter functions (call them if present, fall back to the manual procedure if not):
airbnb.sendVerified(thread_id, text, dedupe_key)→ returns{state, visible_at}after doing send-once + ledger + verify atomically.airbnb.dedupeCheck(dedupe_key)→{already_sent: bool, last_state}.airbnb.readThread(thread_id)/airbnb.listInbox()/airbnb.listReservations()/airbnb.readCalendar(range).
When sendVerified exists, send_reply delegates to it and simply reports the
returned state. When it doesn't, send_reply runs the manual procedure above.
Anti-patterns (do NOT do these)
- ❌ Jumping to Playwright early. Endpoints exist and are preferred; falling to Playwright because something felt slow once is wrong.
- ❌ Treating
sent: trueas confirmed. It'sattempted. Always verify. - ❌ Resending from
unconfirmed. This creates duplicate guest messages. Escalate instead. - ❌ "Auth must be dead." Missing local browser/session state is NOT proof — auth is host-owned. Check browser status + an endpoint first.
- ❌ Mixing read-safe and write-risk behavior. Classify every op; never let a read workflow quietly perform a write.
- ❌ Improvising the send flow per turn. There is exactly ONE send procedure. Use it.
Maintainer notes
- Customize per deployment:
references/airbnb-tool-priority.md(map roles to real tool names), the approval-gate policy, and whether a persistent ledger is wired. Examples underexamples/are illustrative — adapt payloads to your tools. - Keep universal: the Five Laws, the send state machine, the safety tiers, and the command vocabulary. These are the portable core; don't fork them per deployment.
- Evolving the skill: add new operations by giving each its own gated
workflow in the same shape as the send machine. Never add a generic "do
anything" write. Bump
version; record changes in a CHANGELOG if published.
相关技能
通过 OAuth 认证网关管理 Stripe 客户、订阅、发票、产品、价格和支付。
用 Python 自适应抓取网页,默认绕过反爬保护,支持从单次请求到大规模并发爬取。
在本地磁盘以分类纯 Markdown 文件保存需要长期留存的事实,与智能体内置记忆并存。
通过托管 OAuth 代理访问 YouTube Data API v3,搜索与管理视频、播放列表、频道、订阅和评论。
从 AdMapix API 拉取广告创意、应用、榜单和收入预估等数据,原样返回结构化 JSON。
jason-vaughan 的更多技能
浏览全部技能Direct-OAuth Google Workspace operator skill. Sends/reads Gmail, manages Calendar events, creates and edits Google Docs/Sheets/Slides, browses Drive folders...
Atomic tool-call decomposer for OpenClaw-style agents. Enforces an execution-time discipline for multi-step and stateful procedures: one observable action pe...