重要前提
安装AI Skills的关键前提是:必须科学上网,且开启TUN模式,这一点至关重要,直接决定安装能否顺利完成,在此郑重提醒三遍:科学上网,科学上网,科学上网。查看完整安装教程 →
local-search by merit-systems/agentcash-skills
npx skills add https://github.com/merit-systems/agentcash-skills --skill local-search通过 x402 保护的端点访问 Google Maps Places API。
有关安装和钱包设置,请参阅 rules/getting-started.md。
| 任务 | 端点 | 价格 | 包含的数据 |
|---|---|---|---|
| 文本搜索(基础版) | https://stableenrich.dev/api/google-maps/text-search/partial | $0.02 | 名称、地址、评分 |
| 文本搜索(完整版) | https://stableenrich.dev/api/google-maps/text-search/full | $0.08 | + 评论、氛围 |
| 附近搜索(基础版) | https://stableenrich.dev/api/google-maps/nearby-search/partial |
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
| $0.02 |
| 名称、地址、评分 |
| 附近搜索(完整版) | https://stableenrich.dev/api/google-maps/nearby-search/full | $0.08 | + 评论、氛围 |
| 地点详情(基础版) | https://stableenrich.dev/api/google-maps/place-details/partial | $0.02 | 核心信息 |
| 地点详情(完整版) | https://stableenrich.dev/api/google-maps/place-details/full | $0.05 | 所有字段 |
有关层级选择指南,请参阅 rules/partial-vs-full.md。
通过文本查询搜索地点:
npx agentcash@latest fetch https://stableenrich.dev/api/google-maps/text-search/partial -m POST -b '{"textQuery": "coffee shops in downtown Seattle"}'
参数:
textQuery - 搜索查询(必需)locationBias - 优先显示某个位置附近的结果minRating - 最低评分过滤器(1-5)openNow - 仅限营业中的地点maxResultCount - 限制结果数量(默认值:20)完整版 额外包含:评论、氛围数据、照片、价格等级。
搜索某个位置附近的地点:
npx agentcash@latest fetch https://stableenrich.dev/api/google-maps/nearby-search/partial -m POST -b '{
"locationRestriction": {
"circle": {
"center": {"latitude": 47.6062, "longitude": -122.3321},
"radius": 1000
}
},
"includedTypes": ["restaurant", "cafe"]
}'
参数:
locationRestriction - 包含中心点(纬度/经度)和半径(米)的圆形区域includedTypes - 要包含的地点类型excludedTypes - 要排除的地点类型minRating - 最低评分openNow - 仅限营业中的地点获取特定地点的详细信息:
npx agentcash@latest fetch https://stableenrich.dev/api/google-maps/place-details/partial -m POST -b '{"placeId": "ChIJN1t_tDeuEmsRUsoyG83frY4"}'
输入:
placeId - Google Place ID(来自搜索结果)基础版返回: 名称、地址、电话、网站、营业时间、评分、类型。
完整版返回: + 评论、氛围(轮椅通道、允许宠物)、照片、价格等级。
与 includedTypes / excludedTypes 一起使用:
餐饮: restaurant, cafe, bar, bakery, coffee_shop
住宿: hotel, motel, lodging, guest_house
购物: shopping_mall, store, supermarket, clothing_store
服务: bank, atm, gas_station, car_repair, car_wash
健康: hospital, pharmacy, doctor, dentist
娱乐: movie_theater, museum, park, gym
npx agentcash@latest balancenpx agentcash@latest fetch https://stableenrich.dev/api/google-maps/text-search/partial -m POST -b '{"textQuery": "Italian restaurants downtown Portland"}'
npx agentcash@latest fetch https://stableenrich.dev/api/google-maps/place-details/full -m POST -b '{"placeId": "ChIJ..."}'
npx agentcash@latest fetch https://stableenrich.dev/api/google-maps/nearby-search/partial -m POST -b '{
"locationRestriction": {
"circle": {
"center": {"latitude": 40.7128, "longitude": -74.0060},
"radius": 500
}
},
"includedTypes": ["restaurant"],
"minRating": 4.0,
"openNow": true
}'
npx agentcash@latest fetch https://stableenrich.dev/api/google-maps/place-details/full -m POST -b '{"placeId": "place_id_here"}'
maxResultCount 限制结果数量name - 地点名称formattedAddress - 完整地址location - 纬度/经度坐标rating - 平均评分(1-5)userRatingCount - 评分数量types - 地点类型类别businessStatus - OPERATIONAL, CLOSED 等regularOpeningHours - 营业时间nationalPhoneNumber - 电话号码websiteUri - 网站 URLreviews - 包含文本和评分的用户评论priceLevel - $ 到 $$$$accessibilityOptions - 轮椅通道等parkingOptions - 停车可用性paymentOptions - 接受的支付方式photos - 照片引用每周安装量
52
仓库
GitHub 星标数
1
首次出现
2026年2月20日
安全审计
安装于
kimi-cli52
gemini-cli52
github-copilot52
amp52
cline52
codex52
Access Google Maps Places API through x402-protected endpoints.
See rules/getting-started.md for installation and wallet setup.
| Task | Endpoint | Price | Data Included |
|---|---|---|---|
| Text search (basic) | https://stableenrich.dev/api/google-maps/text-search/partial | $0.02 | Name, address, rating |
| Text search (full) | https://stableenrich.dev/api/google-maps/text-search/full | $0.08 | + reviews, atmosphere |
| Nearby search (basic) | https://stableenrich.dev/api/google-maps/nearby-search/partial | $0.02 | Name, address, rating |
| Nearby search (full) | https://stableenrich.dev/api/google-maps/nearby-search/full | $0.08 | + reviews, atmosphere |
| Place details (basic) | https://stableenrich.dev/api/google-maps/place-details/partial | $0.02 | Core info |
| Place details (full) | https://stableenrich.dev/api/google-maps/place-details/full | $0.05 | All fields |
See rules/partial-vs-full.md for tier selection guidance.
Search for places by text query:
npx agentcash@latest fetch https://stableenrich.dev/api/google-maps/text-search/partial -m POST -b '{"textQuery": "coffee shops in downtown Seattle"}'
Parameters:
textQuery - Search query (required)locationBias - Prefer results near a locationminRating - Minimum rating filter (1-5)openNow - Only open placesmaxResultCount - Limit results (default: 20)Full tier adds: reviews, atmosphere data, photos, price level.
Search for places near a location:
npx agentcash@latest fetch https://stableenrich.dev/api/google-maps/nearby-search/partial -m POST -b '{
"locationRestriction": {
"circle": {
"center": {"latitude": 47.6062, "longitude": -122.3321},
"radius": 1000
}
},
"includedTypes": ["restaurant", "cafe"]
}'
Parameters:
locationRestriction - Circle with center (lat/lng) and radius in metersincludedTypes - Place types to includeexcludedTypes - Place types to excludeminRating - Minimum ratingopenNow - Only open placesGet detailed info for a specific place:
npx agentcash@latest fetch https://stableenrich.dev/api/google-maps/place-details/partial -m POST -b '{"placeId": "ChIJN1t_tDeuEmsRUsoyG83frY4"}'
Input:
placeId - Google Place ID (from search results)Partial returns: Name, address, phone, website, hours, rating, types.
Full returns: + reviews, atmosphere (wheelchair access, pets allowed), photos, price level.
Use these with includedTypes / excludedTypes:
Food & Drink: restaurant, cafe, bar, bakery, coffee_shop
Lodging: hotel, motel, lodging, guest_house
Shopping: shopping_mall, store, supermarket, clothing_store
Services: bank, atm, gas_station, car_repair, car_wash
Health: hospital, pharmacy, doctor, dentist
Entertainment: movie_theater, museum, park, gym
(Optional) Check balance: npx agentcash@latest balance
Text search (partial) to find options
Review results and select top picks
Get full details for selected places
npx agentcash@latest fetch https://stableenrich.dev/api/google-maps/text-search/partial -m POST -b '{"textQuery": "Italian restaurants downtown Portland"}'
npx agentcash@latest fetch https://stableenrich.dev/api/google-maps/place-details/full -m POST -b '{"placeId": "ChIJ..."}'
Get coordinates for the area
Search with location restriction and filters
Present sorted results
npx agentcash@latest fetch https://stableenrich.dev/api/google-maps/nearby-search/partial -m POST -b '{ "locationRestriction": { "circle": { "center": {"latitude": 40.7128, "longitude": -74.0060}, "radius": 500 } }, "includedTypes": ["restaurant"], "minRating": 4.0, "openNow": true }'
Search to get place IDs
Fetch full details for each candidate
Compare ratings, reviews, and amenities
npx agentcash@latest fetch https://stableenrich.dev/api/google-maps/place-details/full -m POST -b '{"placeId": "place_id_here"}'
Search partial, detail full:
Batch searches:
maxResultCount to limit resultsCache place IDs:
name - Place nameformattedAddress - Full addresslocation - Lat/lng coordinatesrating - Average rating (1-5)userRatingCount - Number of ratingstypes - Place type categoriesbusinessStatus - OPERATIONAL, CLOSED, etc.regularOpeningHours - Hours of operationnationalPhoneNumber - Phone numberwebsiteUri - Website URLreviews - User reviews with text and ratingspriceLevel - $ to $$$$accessibilityOptions - Wheelchair accessible, etc.parkingOptions - Parking availabilitypaymentOptions - Accepted payment methodsphotos - Photo referencesWeekly Installs
52
Repository
GitHub Stars
1
First Seen
Feb 20, 2026
Security Audits
Gen Agent Trust HubWarnSocketWarnSnykWarn
Installed on
kimi-cli52
gemini-cli52
github-copilot52
amp52
cline52
codex52
Lark Skill Maker 教程:基于飞书CLI创建AI技能,自动化工作流与API调用指南
45,100 周安装
Next.js 16 完全指南:掌握缓存组件、Turbopack、proxy.ts 与 React Compiler
221 周安装
OpenAI DALL-E 3 图像生成命令行工具 - 哥特式大教堂预设与批量生成指南
219 周安装
Gemini深度研究技能:AI自主研究工具,自动生成市场分析、技术报告
220 周安装
项目安全设置协调器 - 自动化安全扫描、配置与风险评估工具
221 周安装
TypeScript/Python/.NET项目代码检查工具自动配置 - ESLint, Ruff, Roslyn Analyzers
220 周安装
React前端项目重构与脚手架生成工具 - 支持单体迁移和最小化项目创建
221 周安装