Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

conciergeconcierge 搜索

Agent Skill

concierge 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

494

周安装

20

GitHub Stars

公开资料未说明

下载量

155
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:concierge(concierge 搜索)
来源仓库:https://github.com/skillhq/concierge
仓库路径:skills/concierge
安装命令:
npx skills add https://github.com/skillhq/concierge --skill concierge
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/skillhq/concierge --skill concierge

简介

用于查找、检索和筛选相关信息。

  • 适合在需要快速定位候选结果的场景中使用。
  • 可通过来源仓库和 README 核验具体用法。
  • 安装命令:npx skills add https://github.com/skillhq/concierge --skill concierge。
  • 建议确认权限范围及是否会触发联网或文件读写。

SKILL.md

Concierge

Find contact details (phone, email, WhatsApp, Instagram, etc.) for listings and businesses, search for places via Google Places, check availability on Booking.com, and place autonomous AI phone calls.

Capabilities

1) Find contacts or search for places

The unified find command auto-detects whether you pass a listing URL or a text query.

# URL → contact dossier (same as old find-contact)
concierge find "https://www.airbnb.com/rooms/12345"

# Text query → search Google Places
concierge find "hotels in San Francisco" --limit 5
concierge find "Trisara Resort Phuket"
concierge find "37.7749,-122.4194" --radius-m 5000 --type hotel

# Enrich multi-result with website scraping (slower)
concierge find "hotels in Phuket" --limit 3 --enrich

Aliases: find-contact, fc, search, s

Options (text search):

  • -l, --limit <n> - Max results (default: 10, max: 20)
  • --min-rating <n> - Minimum rating (0-5)
  • --type <type> - Place type: lodging, hotel, resort_hotel (default: lodging)
  • --radius-m <meters> - Search radius for coordinate searches
  • --enrich - Scrape websites for email/social (auto-enabled for single results)

Options (URL lookup):

  • --html <file> - Path to saved HTML file (for offline/pre-fetched content)

Search backend: Prefers goplaces CLI. Falls back to direct Google Places API (1 result max) if configured.

3) Check hotel availability on Booking.com

concierge check-availability "Park Hyatt Tokyo" -i 2024-03-15 -o 2024-03-17
concierge ca "https://www.booking.com/hotel/us/hilton.html" -i 2024-03-15 -o 2024-03-17 --json
concierge availability "Hilton NYC" -i 2024-04-01 -o 2024-04-03 -g 3 --screenshot results.png

Options:

  • -i, --check-in <date> - Check-in date (YYYY-MM-DD) required
  • -o, --check-out <date> - Check-out date (YYYY-MM-DD) required
  • -g, --guests <n> - Number of guests (default: 2)
  • -r, --rooms <n> - Number of rooms (default: 1)
  • -s, --screenshot <path> - Save screenshot of results
  • --headed - Show browser window (for debugging)

Requires: agent-browser CLI installed (with Playwright browsers)

4) Place an autonomous phone call

concierge call "+1-555-123-4567" \
  --goal "Book a room for March 12-14" \
  --name "Derek Rein" \
  --email "alexanderderekrein@gmail.com" \
  --customer-phone "+1-555-000-1111" \
  --context "Prefer direct booking if rate beats Booking.com"

The call command now auto-manages infra by default: if local server is down, it starts ngrok + call server automatically and stops both when the call ends.

5) Direct-booking negotiation (minimal inputs)

Uses customer defaults from config and only needs dates plus optional Booking.com price and room type.

concierge direct-booking "+6676310100" \
  --hotel "Trisara Resort" \
  -i 2026-05-06 -o 2026-05-09 \
  --room "Ocean View Pool Junior Suite" \
  --booking-price 115000 \
  --currency THB

If --room is omitted, the assistant asks for the cheapest available room. If --booking-price is omitted, it negotiates for the best direct rate and value-adds.

Supported listing platforms

  • Airbnb: airbnb.com/rooms/...
  • Booking.com: booking.com/hotel/...
  • VRBO: vrbo.com/...
  • Expedia: expedia.com/...Hotel...

Examples

Find contacts for an Airbnb listing

Run:

concierge find "https://www.airbnb.com/rooms/12345"

Search for hotels in a city

Run:

concierge find "hotels in Tokyo" --limit 5 --min-rating 4

Search with full enrichment

Run:

concierge find "hotels in Phuket" --limit 3 --enrich

Check availability for a specific hotel

Run:

concierge ca "Hilton Garden Inn Times Square" -i 2024-05-01 -o 2024-05-03

Start a call and control turns manually

Run:

concierge call "+1-555-123-4567" \
  --goal "Negotiate a direct booking rate" \
  --name "Derek Rein" \
  --email "alexanderderekrein@gmail.com" \
  --customer-phone "+1-555-000-1111" \
  --interactive

Direct-booking negotiation with config defaults

Run:

concierge direct-booking "+6676310100" \
  --hotel "Trisara Resort" \
  -i 2026-05-06 -o 2026-05-09 \
  --booking-price 115000 \
  --currency THB

JSON output for scripting

concierge find --json "https://..."
concierge find --json "hotels in Tokyo" --limit 5

Verbose output

concierge --verbose find "https://..."

Configuration

The CLI stores configuration in:

~/.config/concierge/config.json5

Optional for contact lookup

concierge config set googlePlacesApiKey "your-key"

Required for AI phone calls

concierge config set twilioAccountSid "<sid>"
concierge config set twilioAuthToken "<token>"
concierge config set twilioPhoneNumber "+14155551234"
concierge config set deepgramApiKey "<key>"
concierge config set elevenLabsApiKey "<key>"
concierge config set elevenLabsVoiceId "EXAVITQu4vr4xnSDxMaL"
concierge config set anthropicApiKey "<key>"

# Customer defaults for direct-booking
concierge config set customerName "Derek Rein"
concierge config set customerEmail "derek@example.com"
concierge config set customerPhone "+1-555-000-1111"

# Optional for auto ngrok auth
concierge config set ngrokAuthToken "<token>"

Check values:

concierge config show

External Dependencies

FeatureRequired CLIInstall
find (text search)goplacesSee goplaces documentation
check-availabilityagent-browsernpm install -g agent-browser && npx playwright install chromium
callffmpeg, ngrokbrew install ffmpeg ngrok

Notes

  • Contact extraction uses publicly available information.
  • find (text search) uses Google Places API via the goplaces CLI, with fallback to direct API.
  • check-availability uses browser automation to scrape Booking.com. Results depend on DOM structure which may change.
  • call validates local dependencies before dialing (ffmpeg with MP3 decode support, and ngrok when auto-infra is needed).
  • call runs preflight checks for Twilio, Deepgram, and ElevenLabs quota before dialing.
  • When auto infra is used, server/ngrok logs are written under ~/.config/concierge/call-runs/<run-id>/.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.7%
按下载量换算52

Claude

28.66%
按下载量换算44

Cursor

17.53%
按下载量换算27

Gemini CLI

10.33%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

未通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills