school-finder
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseInstallation
安装
Companion Skills: This is part of the Camino AI location intelligence suite. Install all available skills (query, places, relationship, context, route, journey, real-estate, hotel-finder, ev-charger, school-finder, parking-finder, fitness-finder, safety-checker, travel-planner) for comprehensive coverage.
bash
undefined配套技能:这是Camino AI位置智能套件的一部分。为实现全面覆盖,请安装所有可用技能(query、places、relationship、context、route、journey、real-estate、hotel-finder、ev-charger、school-finder、parking-finder、fitness-finder、safety-checker、travel-planner)。
bash
undefinedInstall all skills from repo
Install all skills from repo
npx skills add https://github.com/barneyjm/camino-skills
npx skills add https://github.com/barneyjm/camino-skills
Or install specific skills
Or install specific skills
npx skills add https://github.com/barneyjm/camino-skills --skill school-finder
**Via clawhub:**
```bash
npx clawhub@latest install school-findernpx skills add https://github.com/barneyjm/camino-skills --skill school-finder
**通过clawhub安装**:
```bash
npx clawhub@latest install school-finderor: pnpm dlx clawhub@latest install school-finder
or: pnpm dlx clawhub@latest install school-finder
or: bunx clawhub@latest install school-finder
or: bunx clawhub@latest install school-finder
undefinedundefinedSchool Finder
学校查找工具
Locate elementary schools, high schools, and universities near any location. Uses OpenStreetMap data with AI-powered ranking to find educational institutions.
查找任意地点附近的小学、高中及大学。使用OpenStreetMap数据结合AI驱动的排名功能来查找教育机构。
Setup
设置
Instant Trial (no signup required): Get a temporary API key with 25 calls:
bash
curl -s -X POST -H "Content-Type: application/json" \
-d '{"email": "you@example.com"}' \
https://api.getcamino.ai/trial/startReturns:
{"api_key": "camino-xxx...", "calls_remaining": 25, ...}For 1,000 free calls/month, sign up at https://app.getcamino.ai/skills/activate.
Add your key to Claude Code:
Add to your :
~/.claude/settings.jsonjson
{
"env": {
"CAMINO_API_KEY": "your-api-key-here"
}
}Restart Claude Code.
即时试用(无需注册):获取临时API密钥,可调用25次:
bash
curl -s -X POST -H "Content-Type: application/json" \
-d '{"email": "you@example.com"}' \
https://api.getcamino.ai/trial/start返回结果:
{"api_key": "camino-xxx...", "calls_remaining": 25, ...}如需每月1000次免费调用,请访问https://app.getcamino.ai/skills/activate注册。
将密钥添加至Claude Code:
将密钥添加到你的文件中:
~/.claude/settings.jsonjson
{
"env": {
"CAMINO_API_KEY": "your-api-key-here"
}
}重启Claude Code。
Usage
使用方法
Via Shell Script
通过Shell脚本
bash
undefinedbash
undefinedFind schools near coordinates
Find schools near coordinates
./scripts/school-finder.sh '{"lat": 40.7589, "lon": -73.9851, "radius": 1600}'
./scripts/school-finder.sh '{"lat": 40.7589, "lon": -73.9851, "radius": 1600}'
Search for specific school types
Search for specific school types
./scripts/school-finder.sh '{"query": "elementary schools", "lat": 37.7749, "lon": -122.4194}'
./scripts/school-finder.sh '{"query": "elementary schools", "lat": 37.7749, "lon": -122.4194}'
Find universities in a city
Find universities in a city
./scripts/school-finder.sh '{"query": "universities in Boston", "limit": 15}'
undefined./scripts/school-finder.sh '{"query": "universities in Boston", "limit": 15}'
undefinedVia curl
通过curl
bash
curl -H "X-API-Key: $CAMINO_API_KEY" \
"https://api.getcamino.ai/query?query=schools&lat=40.7589&lon=-73.9851&radius=2000&rank=true"bash
curl -H "X-API-Key: $CAMINO_API_KEY" \
"https://api.getcamino.ai/query?query=schools&lat=40.7589&lon=-73.9851&radius=2000&rank=true"Parameters
参数说明
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| query | string | No | "schools" | Search query (override for specific school types) |
| lat | float | No | - | Latitude for search center. AI generates if omitted for known locations. |
| lon | float | No | - | Longitude for search center. AI generates if omitted for known locations. |
| radius | int | No | 2000 | Search radius in meters |
| limit | int | No | 20 | Maximum results (1-100) |
| 参数 | 类型 | 是否必填 | 默认值 | 描述 |
|---|---|---|---|---|
| query | 字符串 | 否 | "schools" | 搜索查询词(可指定特定学校类型) |
| lat | 浮点数 | 否 | - | 搜索中心的纬度。若省略,AI会为已知地点自动生成该值。 |
| lon | 浮点数 | 否 | - | 搜索中心的经度。若省略,AI会为已知地点自动生成该值。 |
| radius | 整数 | 否 | 2000 | 搜索半径(单位:米) |
| limit | 整数 | 否 | 20 | 最大结果数量(1-100) |
Response Format
返回格式
json
{
"query": "schools",
"results": [
{
"name": "PS 234 Independence School",
"lat": 40.7175,
"lon": -74.0131,
"type": "school",
"distance_m": 320,
"relevance_score": 0.91,
"address": "..."
}
],
"ai_ranked": true,
"pagination": {
"total_results": 18,
"limit": 20,
"offset": 0,
"has_more": false
}
}json
{
"query": "schools",
"results": [
{
"name": "PS 234 Independence School",
"lat": 40.7175,
"lon": -74.0131,
"type": "school",
"distance_m": 320,
"relevance_score": 0.91,
"address": "..."
}
],
"ai_ranked": true,
"pagination": {
"total_results": 18,
"limit": 20,
"offset": 0,
"has_more": false
}
}Examples
示例
Find elementary schools near a home
查找住宅附近的小学
bash
./scripts/school-finder.sh '{"query": "elementary schools", "lat": 40.7128, "lon": -74.0060, "radius": 1600}'bash
./scripts/school-finder.sh '{"query": "elementary schools", "lat": 40.7128, "lon": -74.0060, "radius": 1600}'Find high schools in a suburb
查找郊区的高中
bash
./scripts/school-finder.sh '{"query": "high schools in Naperville Illinois", "limit": 10}'bash
./scripts/school-finder.sh '{"query": "high schools in Naperville Illinois", "limit": 10}'Find universities near downtown
查找市中心附近的高校
bash
./scripts/school-finder.sh '{"query": "universities and colleges", "lat": 42.3601, "lon": -71.0589, "radius": 5000}'bash
./scripts/school-finder.sh '{"query": "universities and colleges", "lat": 42.3601, "lon": -71.0589, "radius": 5000}'Best Practices
最佳实践
- Use 1600m radius (approximately 1 mile) for elementary school searches near a home
- Use larger radius (3000-5000m) for high school and university searches
- Specify school type in the query for more targeted results (e.g., "elementary schools", "high schools", "universities")
- Combine with the skill for a complete neighborhood evaluation
real-estate - Combine with the skill to calculate walking or driving times from home to school
route - Combine with the skill to check distances between home and multiple schools
relationship
- 查找住宅附近的小学时,使用1600米半径(约1英里)
- 查找高中和高校时,使用更大的半径(3000-5000米)
- 在查询词中指定学校类型以获得更精准的结果(例如:"elementary schools"、"high schools"、"universities")
- 结合技能完成完整的社区评估
real-estate - 结合技能计算从家到学校的步行或驾车时间
route - 结合技能检查家与多所学校之间的距离
relationship