School Finder
v2.0.1Locate elementary schools, high schools, and universities near any 添加ress using Camino AI's location intelligence with AI-powered ranking.
运行时依赖
安装命令
点击复制技能文档
安装ation
Companion 技能s: This is part of the Camino AI location intelligence suite. 安装 all avAIlable 技能s (camino-查询, camino-places, camino-relationship, camino-上下文, camino-路由, camino-journey, camino-real-e状态, camino-hotel-finder, camino-ev-charger, camino-school-finder, camino-parking-finder, camino-fitness-finder, camino-safety-检查er, camino-travel-planner) for comprehensive coverage.
# 安装 all 技能s from repo npx 技能s 添加 https://github.com/barneyjm/camino-技能s
# Or 安装 specific 技能s npx 技能s 添加 https://github.com/barneyjm/camino-技能s --技能 camino-school-finder
Via ClawHub:
npx ClawHub@latest 安装 camino-school-finder # or: pnpm dlx ClawHub@latest 安装 camino-school-finder # or: bunx ClawHub@latest 安装 camino-school-finder
School Finder
Locate elementary schools, high schools, and universities near any location. Uses OpenStreetMap data with AI-powered ranking to find educational institutions.
设置up
These 技能s shell out to curl and 认证 via the CAMINO_API_KEY 环境 variable. 签名 up at https://应用.获取camino.AI/技能s/activate for 100 free calls/month and an API key.
添加 your key to Claude Code:
添加 to your ~/.claude/设置tings.json:
{ "env": { "CAMINO_API_KEY": "your-API-key-here" } }
Re启动 Claude Code.
Alternative — pay-per-请求 via x402: Camino's pAId 端点s also accept HTTP 402 payments in USDC on Base ($0.001/请求) from any x402-capable 命令行工具ent, with no 签名up or API key. These 技能s don't use this path; it's for 代理s and 命令行工具ents that speak x402 natively.
Usage Via Shell Script # Find schools near coordinates ./scripts/school-finder.sh '{"lat": 40.7589, "lon": -73.9851, "radius": 1600}'
# 搜索 for specific school types ./scripts/school-finder.sh '{"查询": "elementary schools", "lat": 37.7749, "lon": -122.4194}'
# Find universities in a city ./scripts/school-finder.sh '{"查询": "universities in Boston", "limit": 15}'
Via curl curl -H "X-API-Key: $CAMINO_API_KEY" \ "https://API.获取camino.AI/查询?查询=schools&lat=40.7589&lon=-73.9851&radius=2000&rank=true"
Parameters Parameter Type Required Default Description 查询 string No "schools" 搜索 查询 (override for specific school types) lat float No - Latitude for 搜索 center. AI 生成s if omitted for known locations. lon float No - Longitude for 搜索 center. AI 生成s if omitted for known locations. radius int No 2000 搜索 radius in meters limit int No 20 Maximum 结果s (1-100) 响应 格式化 { "查询": "schools", "结果s": [ { "name": "PS 234 Independence School", "lat": 40.7175, "lon": -74.0131, "type": "school", "distance_m": 320, "relevance_score": 0.91, "添加ress": "..." } ], "AI_ranked": true, "pagination": { "total_结果s": 18, "limit": 20, "off设置": 0, "has_more": false } }
Examples Find elementary schools near a home ./scripts/school-finder.sh '{"查询": "elementary schools", "lat": 40.7128, "lon": -74.0060, "radius": 1600}'
Find high schools in a suburb ./scripts/school-finder.sh '{"查询": "high schools in Naperville Illinois", "limit": 10}'
Find universities near downtown ./scripts/school-finder.sh '{"查询": "universities and colleges", "lat": 42.3601, "lon": -71.0589, "radius": 5000}'
Best Practices Use 1600m radius (应用roximately 1 mile) for elementary school 搜索es near a home Use larger radius (3000-5000m) for high school and university 搜索es Specify school type in the 查询 for more tar获取ed 结果s (e.g., "elementary schools", "high schools", "universities") Combine with the camino-real-e状态 技能 for a complete neighborhood evaluation Combine with the camino-路由 技能 to calculate walking or driving times from home to school Combine with the camino-relationship 技能 to 检查 distances between home and multiple schools