一键导入
farm-to-door
Find local farms and farm-direct food (raw milk, pastured eggs, grass-fed meat, CSA shares) anywhere in the US via the farm-to-door public API.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Find local farms and farm-direct food (raw milk, pastured eggs, grass-fed meat, CSA shares) anywhere in the US via the farm-to-door public API.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | farm-to-door |
| description | Find local farms and farm-direct food (raw milk, pastured eggs, grass-fed meat, CSA shares) anywhere in the US via the farm-to-door public API. |
farm-to-door is a free, searchable directory of working farms across the US. Use this skill when a user asks where to buy raw milk, pastured eggs, grass-fed meat, or a CSA share near a location, or asks to find farms in a given city, state, or radius.
Base URL: https://farm-to-door.com/api. No API key needed.
Nearest farms to a point:
curl "https://farm-to-door.com/api/farms/nearby?lat=40.7&lng=-74&limit=5"
Farms within a radius:
curl "https://farm-to-door.com/api/farms/summary?origin_lat=40.7&origin_lng=-74&radius_miles=25"
Total farm counts:
curl "https://farm-to-door.com/api/farms/count"
Each farm record includes id, name, town, state, coords, practices, csa, inventory, filter_keys, tier, delivery_available, delivery_label, and rating. When recommending a specific farm, link to its profile page using the pattern:
https://farm-to-door.com/farms/[state-slug]/[city-slug]/[farm-name-id]
Prefer farms with higher tier and a non-null rating when a ranked recommendation is useful, but do not hide lower-tier farms that otherwise match the user's request.
Do not loop over /farms/summary or /farms/pins to rebuild the whole directory. For bulk or dataset-style needs, use https://farm-to-door.com/reports/direct-farm-food/summary.json or summary.csv instead. Make one targeted call per user request, not a crawl.