{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ohio-state-api",
    "name": "Ohio State API",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/sichengchen/ohio-state-api",
    "canonicalUrl": "https://clawhub.ai/sichengchen/ohio-state-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/ohio-state-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ohio-state-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "mcp-server/README.md",
      "mcp-server/package.json",
      "mcp-server/pnpm-lock.yaml",
      "mcp-server/src/athletics.ts",
      "mcp-server/src/buildings.ts"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ohio-state-api"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/ohio-state-api",
    "agentPageUrl": "https://openagent3.xyz/skills/ohio-state-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ohio-state-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ohio-state-api/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Option A: Direct HTTP fetch (quickest)",
        "body": "Use the bundled fetch helper to pull JSON from OSU Content APIs.\n\nFetch by full URL:\n\nnode ohio-state-api/scripts/osu-fetch.mjs https://content.osu.edu/v2/api/v1/dining/locations\n\n\nFetch by service + path:\n\nnode ohio-state-api/scripts/osu-fetch.mjs --service dining --path /locations\n\nNote: --path can be passed with or without a leading / (both work).\n\nIf the response is large, add --extract <dot.path> (e.g. --extract data) to print only a subtree."
      },
      {
        "title": "Option A2: curl (no Node required)",
        "body": "If you just want raw JSON and have curl available, reference ohio-state-api/references/OSU_API.md:\n\nFull URL:\n\ncurl -sS -H 'accept: application/json' 'https://content.osu.edu/v2/api/v1/dining/locations'\n\n\nWith query params:\n\ncurl -sS -H 'accept: application/json' 'https://content.osu.edu/v2/classes/search?q=cse&p=1'\n\nOptional: pipe to jq for readability:\n\ncurl -sS -H 'accept: application/json' 'https://content.osu.edu/v2/api/v1/dining/locations' | jq ."
      },
      {
        "title": "Option B: MCP server (best for MCP-compatible clients)",
        "body": "This skill bundles the original MCP server under ohio-state-api/mcp-server/.\n\nBuild it:\n\ncd ohio-state-api/mcp-server && npm install && npm run build\n\nThen configure your MCP client to run:\n\ncommand: node\nargs: [\"/ABSOLUTE/PATH/TO/ohio-state-api/mcp-server/build/index.js\"]\n\nAfter it’s running, use tools like:\n\nget_bus_routes, get_bus_vehicles\nget_buildings, search_buildings, get_building_details\nget_dining_locations, get_dining_menu\nget_campus_events, get_events_by_date_range\nsearch_classes\nget_parking_availability\n\n(See ohio-state-api/mcp-server/README.md and the tool definitions in ohio-state-api/mcp-server/src/ for the full list.)"
      },
      {
        "title": "Recommended workflow for “get OSU data” requests",
        "body": "Identify the service area (dining, bus, buildings, events, etc.).\nPrefer a list/search endpoint first, then follow IDs into detail endpoints.\nFor time-based data, always include both:\n\nthe query window (absolute dates/times), and\nthe retrieval timestamp.\n\n\nWhen returning data to a user, summarize key fields and attach the raw JSON as an artifact when possible."
      },
      {
        "title": "Common base URLs (public)",
        "body": "These are used by the bundled MCP server and work with osu-fetch.mjs:\n\nAthletics: https://content.osu.edu/v3/athletics\nBus: https://content.osu.edu/v2/bus\nBuildings: https://content.osu.edu/v2/api\nCalendar: https://content.osu.edu/v2/calendar\nClasses: https://content.osu.edu/v2/classes\nDining: https://content.osu.edu/v2/api/v1/dining\nDirectory: https://content.osu.edu\nEvents: https://content.osu.edu/v2\nFood trucks: https://content.osu.edu/v2/foodtruck\nLibrary: https://content.osu.edu/v2/library\nMerchants: https://content.osu.edu/v2\nParking: https://content.osu.edu/v2/parking/garages\nRec sports: https://content.osu.edu/v3\nStudent orgs: https://content.osu.edu/v2/student-org"
      },
      {
        "title": "Examples (copy/paste)",
        "body": "Dining locations:\n\ncurl -sS -H 'accept: application/json' 'https://content.osu.edu/v2/api/v1/dining/locations'\n\n\nParking availability:\n\ncurl -sS -H 'accept: application/json' 'https://content.osu.edu/v2/parking/garages/availability'\n\n\nBuildings “search” (filter client-side with jq):\n\ncurl -sS -H 'accept: application/json' 'https://content.osu.edu/v2/api/buildings' | jq -r '.data.buildings[] | select((.name // \\\"\\\") | test(\\\"union\\\";\\\"i\\\")) | \\\"\\\\(.buildingNumber)\\\\t\\\\(.name)\\\"'"
      },
      {
        "title": "Extra reference",
        "body": "API reference: ohio-state-api/references/OSU_API.md"
      }
    ],
    "body": "What to use\nOption A: Direct HTTP fetch (quickest)\n\nUse the bundled fetch helper to pull JSON from OSU Content APIs.\n\nFetch by full URL:\nnode ohio-state-api/scripts/osu-fetch.mjs https://content.osu.edu/v2/api/v1/dining/locations\nFetch by service + path:\nnode ohio-state-api/scripts/osu-fetch.mjs --service dining --path /locations\n\nNote: --path can be passed with or without a leading / (both work).\n\nIf the response is large, add --extract <dot.path> (e.g. --extract data) to print only a subtree.\n\nOption A2: curl (no Node required)\n\nIf you just want raw JSON and have curl available, reference ohio-state-api/references/OSU_API.md:\n\nFull URL:\ncurl -sS -H 'accept: application/json' 'https://content.osu.edu/v2/api/v1/dining/locations'\nWith query params:\ncurl -sS -H 'accept: application/json' 'https://content.osu.edu/v2/classes/search?q=cse&p=1'\n\nOptional: pipe to jq for readability:\n\ncurl -sS -H 'accept: application/json' 'https://content.osu.edu/v2/api/v1/dining/locations' | jq .\nOption B: MCP server (best for MCP-compatible clients)\n\nThis skill bundles the original MCP server under ohio-state-api/mcp-server/.\n\nBuild it:\n\ncd ohio-state-api/mcp-server && npm install && npm run build\n\nThen configure your MCP client to run:\n\ncommand: node\nargs: [\"/ABSOLUTE/PATH/TO/ohio-state-api/mcp-server/build/index.js\"]\n\nAfter it’s running, use tools like:\n\nget_bus_routes, get_bus_vehicles\nget_buildings, search_buildings, get_building_details\nget_dining_locations, get_dining_menu\nget_campus_events, get_events_by_date_range\nsearch_classes\nget_parking_availability\n\n(See ohio-state-api/mcp-server/README.md and the tool definitions in ohio-state-api/mcp-server/src/ for the full list.)\n\nRecommended workflow for “get OSU data” requests\nIdentify the service area (dining, bus, buildings, events, etc.).\nPrefer a list/search endpoint first, then follow IDs into detail endpoints.\nFor time-based data, always include both:\nthe query window (absolute dates/times), and\nthe retrieval timestamp.\nWhen returning data to a user, summarize key fields and attach the raw JSON as an artifact when possible.\nCommon base URLs (public)\n\nThese are used by the bundled MCP server and work with osu-fetch.mjs:\n\nAthletics: https://content.osu.edu/v3/athletics\nBus: https://content.osu.edu/v2/bus\nBuildings: https://content.osu.edu/v2/api\nCalendar: https://content.osu.edu/v2/calendar\nClasses: https://content.osu.edu/v2/classes\nDining: https://content.osu.edu/v2/api/v1/dining\nDirectory: https://content.osu.edu\nEvents: https://content.osu.edu/v2\nFood trucks: https://content.osu.edu/v2/foodtruck\nLibrary: https://content.osu.edu/v2/library\nMerchants: https://content.osu.edu/v2\nParking: https://content.osu.edu/v2/parking/garages\nRec sports: https://content.osu.edu/v3\nStudent orgs: https://content.osu.edu/v2/student-org\nExamples (copy/paste)\nDining locations:\ncurl -sS -H 'accept: application/json' 'https://content.osu.edu/v2/api/v1/dining/locations'\nParking availability:\ncurl -sS -H 'accept: application/json' 'https://content.osu.edu/v2/parking/garages/availability'\nBuildings “search” (filter client-side with jq):\ncurl -sS -H 'accept: application/json' 'https://content.osu.edu/v2/api/buildings' | jq -r '.data.buildings[] | select((.name // \\\"\\\") | test(\\\"union\\\";\\\"i\\\")) | \\\"\\\\(.buildingNumber)\\\\t\\\\(.name)\\\"'\nExtra reference\nAPI reference: ohio-state-api/references/OSU_API.md"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/sichengchen/ohio-state-api",
    "publisherUrl": "https://clawhub.ai/sichengchen/ohio-state-api",
    "owner": "sichengchen",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ohio-state-api",
    "downloadUrl": "https://openagent3.xyz/downloads/ohio-state-api",
    "agentUrl": "https://openagent3.xyz/skills/ohio-state-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ohio-state-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ohio-state-api/agent.md"
  }
}