Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

ohio-state-apiohio state API 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

42,129

周安装

1,738

GitHub Stars

公开资料未说明

下载量

13,765
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ohio-state-api(ohio state API 搜索)
来源仓库:https://github.com/sichengchen/ohio-state-api
安装命令:
openclaw skills install ohio-state-api
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ohio-state-api

简介

通过 JSON 格式的 osu 内容 API 访问公共俄亥俄州立大学校园数据,包括公交车、餐饮、活动、建筑、停车等服务。

SKILL.md

name
ohio-state-api
description
Get public data from The Ohio State University Content APIs (content.osu.edu) across campus services (bus, buildings, dining, events, academic calendar, libraries, rec sports, parking, directory, student orgs, athletics, food trucks, BuckID merchants). Use when you need OSU campus data, want to build an OSU data feature, or need a repeatable way to fetch/inspect OSU API JSON.
compatibility
Requires outbound internet access to content.osu.edu. Optional: Node.js + npm for the bundled MCP server.

What to use

Option A: Direct HTTP fetch (quickest)

Use the bundled fetch helper to pull JSON from OSU Content APIs.

  • Fetch by full URL:

- node ohio-state-api/scripts/osu-fetch.mjs https://content.osu.edu/v2/api/v1/dining/locations

  • Fetch by service + path:

- node ohio-state-api/scripts/osu-fetch.mjs --service dining --path /locations

Note: --path can be passed with or without a leading / (both work).

If the response is large, add --extract <dot.path> (e.g. --extract data) to print only a subtree.

Option A2: curl (no Node required)

If you just want raw JSON and have curl available, reference ohio-state-api/references/OSU_API.md:

  • Full URL:

- curl -sS -H 'accept: application/json' 'https://content.osu.edu/v2/api/v1/dining/locations'

  • With query params:

- curl -sS -H 'accept: application/json' 'https://content.osu.edu/v2/classes/search?q=cse&p=1'

Optional: pipe to jq for readability:

  • curl -sS -H 'accept: application/json' 'https://content.osu.edu/v2/api/v1/dining/locations' | jq .

Option B: MCP server (best for MCP-compatible clients)

This skill bundles the original MCP server under ohio-state-api/mcp-server/.

Build it:

  • cd ohio-state-api/mcp-server && npm install && npm run build

Then configure your MCP client to run:

  • command: node
  • args: ["/ABSOLUTE/PATH/TO/ohio-state-api/mcp-server/build/index.js"]

After it’s running, use tools like:

  • get_bus_routes, get_bus_vehicles
  • get_buildings, search_buildings, get_building_details
  • get_dining_locations, get_dining_menu
  • get_campus_events, get_events_by_date_range
  • search_classes
  • get_parking_availability

(See ohio-state-api/mcp-server/README.md and the tool definitions in ohio-state-api/mcp-server/src/ for the full list.)

Recommended workflow for “get OSU data” requests

  1. Identify the service area (dining, bus, buildings, events, etc.).
  2. Prefer a list/search endpoint first, then follow IDs into detail endpoints.
  3. For time-based data, always include both:

- the query window (absolute dates/times), and - the retrieval timestamp.

  1. When returning data to a user, summarize key fields and attach the raw JSON as an artifact when possible.

Common base URLs (public)

These are used by the bundled MCP server and work with osu-fetch.mjs:

  • Athletics: https://content.osu.edu/v3/athletics
  • Bus: https://content.osu.edu/v2/bus
  • Buildings: https://content.osu.edu/v2/api
  • Calendar: https://content.osu.edu/v2/calendar
  • Classes: https://content.osu.edu/v2/classes
  • Dining: https://content.osu.edu/v2/api/v1/dining
  • Directory: https://content.osu.edu
  • Events: https://content.osu.edu/v2
  • Food trucks: https://content.osu.edu/v2/foodtruck
  • Library: https://content.osu.edu/v2/library
  • Merchants: https://content.osu.edu/v2
  • Parking: https://content.osu.edu/v2/parking/garages
  • Rec sports: https://content.osu.edu/v3
  • Student orgs: https://content.osu.edu/v2/student-org

Examples (copy/paste)

  • Dining locations:

- curl -sS -H 'accept: application/json' 'https://content.osu.edu/v2/api/v1/dining/locations'

  • Parking availability:

- curl -sS -H 'accept: application/json' 'https://content.osu.edu/v2/parking/garages/availability'

  • Buildings “search” (filter client-side with jq):

- curl -sS -H 'accept: application/json' 'https://content.osu.edu/v2/api/buildings' | jq -r '.data.buildings[] | select((.name // \"\") | test(\"union\";\"i\")) | \"\\(.buildingNumber)\\ \\(.name)\"'

Extra reference

  • API reference: ohio-state-api/references/OSU_API.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

71.6%
按下载量换算9,856

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills