Content Publisher Pro
一键将文章发布至 GitHub Pages 和 Dev.to,支持 SEO 优化与去重检查。
通过自然语言查询地理位置,支持坐标生成与智能排序。
openclaw skills install @james-southendsolutions/camino-query命令、参数、文件名以原文为准
配套技能:本技能是 Camino AI 地理智能套件的一部分。为获得全面覆盖,请安装所有可用技能(camino-query、camino-places、camino-relationship、camino-context、camino-route、camino-journey、camino-real-estate、camino-hotel-finder、camino-ev-charger、camino-school-finder、camino-parking-finder、camino-fitness-finder、camino-safety-checker、camino-travel-planner)。
# 从仓库安装所有技能
npx skills add https://github.com/barneyjm/camino-skills
# 或安装特定技能
npx skills add https://github.com/barneyjm/camino-skills --skill camino-query通过 clawhub 安装:
npx clawhub@latest install camino-query
# 或:pnpm dlx clawhub@latest install camino-query
# 或:bunx clawhub@latest install camino-query使用自然语言搜索地点。当未提供坐标时,AI 会自动为已知地点生成坐标。
这些技能通过 curl 调用,并通过 CAMINO_API_KEY 环境变量进行认证。请访问 [https://app.getcamino.ai/skills/activate](https://app.getcamino.ai/skills/activate) 注册,获取每月 100 次免费调用和 API 密钥。
将密钥添加到 Claude Code:
在 ~/.claude/settings.json 中添加:
{
"env": {
"CAMINO_API_KEY": "your-api-key-here"
}
}重启 Claude Code。
替代方案 —— 按请求付费,通过 [x402](https://x402.org): Camino 的付费接口也接受来自任何 x402 兼容客户端的 USDC 支付(Base 链,每请求 $0.001),无需注册或 API 密钥。此技能不使用该路径;仅适用于原生支持 x402 的代理和客户端。
# 搜索时代广场附近的咖啡馆
./scripts/query.sh '{"query": "coffee shops near Times Square", "limit": 5}'
# 使用指定坐标进行搜索
./scripts/query.sh '{"query": "quiet cafes with wifi", "lat": 40.7589, "lon": -73.9851, "radius": 500}'
# 获取 AI 生成的答案及结果
./scripts/query.sh '{"query": "best pizza in Manhattan", "answer": true, "rank": true}'curl -H "X-API-Key: $CAMINO_API_KEY" \
"https://api.getcamino.ai/query?query=coffee+shops+near+Times+Square&limit=5"| 参数 | 类型 | 是否必填 | 默认值 | 说明 |
|---|---|---|---|---|
| query | string | 是* | - | 自然语言查询(例如:“时代广场附近的咖啡馆”) |
| lat | float | 否 | - | 搜索中心的纬度。对于已知地点,若省略则由 AI 自动生成 |
| lon | float | 否 | - | 搜索中心的经度。对于已知地点,若省略则由 AI 自动生成 |
| radius | int | 否 | 1000 | 搜索半径(单位:米,范围 100–50000) |
| rank | bool | 否 | true | 使用 AI 根据相关性对结果排序 |
| limit | int | 否 | 20 | 最大返回结果数(1–100) |
| offset | int | 否 | 0 | 分页偏移量 |
| answer | bool | 否 | false | 生成人类可读的摘要 |
| time | string | 否 | - | 时间查询:如 "2020-01-01"、"2020.." 或 "2020..2024" |
| osm_ids | string | 否 | - | 逗号分隔的 OSM ID(例如:"node/123,way/456") |
| mode | string | 否 | "basic" | "basic"(仅 OSM 数据)或 "advanced"(网页数据增强) |
| engine | string | 否 | auto | 后端引擎:"overture"(BigQuery,默认)或 "osm"(Overpass)。当设置 osm_ids 或 time 时,自动切换至 "osm" |
*必须提供 query 或 osm_ids 其中之一。
{
"query": "quiet coffee shops with wifi",
"results": [
{
"name": "Blue Bottle Coffee",
"lat": 40.7601,
"lon": -73.9847,
"type": "cafe",
"distance_m": 150,
"relevance_score": 0.95,
"address": "..."
}
],
"ai_ranked": true,
"pagination": {
"total_results": 23,
"limit": 5,
"offset": 0,
"has_more": true
},
"answer": "I found several quiet coffee shops with wifi near Times Square..."
}./scripts/query.sh '{"query": "Italian restaurants", "lat": 40.7128, "lon": -74.0060, "limit": 10}'./scripts/query.sh '{"query": "best brunch spots in Brooklyn", "answer": true}'./scripts/query.sh '{"query": "restaurants", "lat": 40.7589, "lon": -73.9851, "time": "2020-01-01"}'rank: true 以获得更相关的结果answer: truemode: "advanced"已收录 1 个 Skill