技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.1
统计:⭐ 1 · 2.2k · 6 current installs · 7 all-time installs
⭐ 1
安装量(当前) 7
🛡 VirusTotal :良性 · OpenClaw :良性
Package:arein/travel-concierge
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's behavior (web-scraping a listing URL to find contact info) matches its description and it requests no credentials, but it claims a CLI tool that is not included here so it may be non-functional as packaged.
目的
The name and description (find contact details for accommodation listings) line up with the instructions (scrape listing pages and optionally use Google Places). However, the SKILL.md assumes the existence of a 'travel-concierge' CLI but the package contains no CLI binary, no source code implementing that CLI, and no install instructions — only a test config file. This is an operational inconsistency (likely an instruction-only skill that expe…
说明范围
Runtime instructions are narrowly scoped: they tell the agent to run the CLI against a provided URL, present found contact methods, and optionally configure a Google Places API key. The doc mentions browser automation (agent-browser) for JS-rendered pages, but does not instruct reading unrelated local files, environment variables, or transmitting data to unknown endpoints. The agent would perform web scraping of publicly available pages, which…
安装机制
No install spec is present (lowest risk). The only included code file is a harmless vitest config with no application source. The notable issue is absence of the claimed CLI implementation or an install method — meaning the skill as packaged likely cannot actually run the described commands without external software.
证书
The skill declares no required environment variables or credentials. SKILL.md describes an optional Google Places API key (configured via the CLI), which is reasonable and optional. There are no requests for unrelated secrets or system config paths.
持久
The skill does not request always:true or elevated persistence. It is user-invocable and allows autonomous model invocation by default (platform normal). There is no indication it modifies other skills or system-wide settings.
综合结论
This skill's purpose and instructions are coherent and it does not request credentials, but the package does not include the 'travel-concierge' CLI or any install steps — it may be an instruction-only wrapper that expects you to already have that tool installed. Before installing/using: (1) verify where the CLI comes from and obtain it from a trusted source if needed; (2) avoid entering API keys (e.g., Google Places) unless you trust the CLI/v…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Travel Concierge CLI」。简介:Find contact details for accommodation listings (Airbnb, Booking.com, VRBO, Exp…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/arein/travel-concierge/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: travel-concierge
description: Find contact details for accommodation listings (Airbnb, Booking.com, VRBO, Expedia)
version: 1.0.0
triggers:
- find contact
- hotel contact
- accommodation contact
- property contact
- airbnb contact
- booking contact
- vrbo contact
- expedia contact
- direct booking
- property email
- property phone
---
# Travel Concierge
Find contact details (phone, email, WhatsApp, Instagram, etc.) for accommodation listings to enable direct booking.
## Usage
When the user provides a booking URL or asks to find contact details for an accommodation:
1. Run the CLI to extract contact information:
```bash
travel-concierge find-contact "<url>"
```
2. Present the dossier to the user with all discovered contact methods.
## Supported Platforms
- **Airbnb**: `airbnb.com/rooms/...`
- **Booking.com**: `booking.com/hotel/...`
- **VRBO**: `vrbo.com/...`
- **Expedia**: `expedia.com/...Hotel...`
## Examples
### Finding contacts for an Airbnb listing
User: "Find contact info for this Airbnb: https://www.airbnb.com/rooms/12345"
Action: Run `travel-concierge find-contact "https://www.airbnb.com/rooms/12345"`
### Finding contacts for a Booking.com hotel
User: "How can I contact this hotel directly?" (with Booking.com URL)
Action: Run `travel-concierge find-contact "<booking-url>"`
### JSON output for scripting
```bash
travel-concierge find-contact --json "https://..."
```
### Verbose output to see search progress
```bash
travel-concierge find-contact --verbose "https://..."
```
## Configuration
The tool works without any API keys using web scraping. For enhanced results, configure optional APIs:
```bash
# Set Google Places API key for verified phone/website data
travel-concierge config set googlePlacesApiKey "your-key"
# View current config
travel-concierge config show
```
## Output Format
The CLI returns a contact dossier with:
- **Property Information**: Name, platform, location, host name
- **Contact Methods**:
- Phone numbers
- Email addresses
- WhatsApp (if available)
- Instagram profile
- Facebook page
- Website
- Google Maps URL
- **Sources**: Where each piece of contact info was found, with confidence levels
## Notes
- The tool extracts publicly available information only
- Browser automation (via `agent-browser`) may be needed for JavaScript-rendered listing pages
- Some platforms heavily restrict scraping; results may vary
- Google Places API provides the most reliable contact data when configured