Hi - I answer from the OpenSmartRoute documentation: routing, the API, plans and quotas, self-hosting. Ask away, or open a support ticket if you need a person.
Grounded in the docs - follow a source before acting on it.
weather - Skill - OpenSmartRoute
Skillv1.0.0
weather
Weather > Get current weather and forecasts for any location.
Imported from hyunjun6928-netizen/salmalm (skills/weather/SKILL.md). Install upstream with npx skills add hyunjun6928-netizen/salmalm --skill weather. Copyright stays with the author.
Weather
Get current weather and forecasts for any location.
Parse the JSON response for temperature, conditions, humidity, wind
Present in a clean format with emoji indicators
Examples
"What's the weather in Seoul?" → web_fetch(url="https://wttr.in/Seoul?format=j1")
"Will it rain tomorrow in Tokyo?" → Check weather[1] in the JSON response
Use it
Copy one of these into your project. Installing also returns the manifest and these snippets.
# after Install: the listing is in your workspace's routing pool - a plan picks it for its slot
curl -s -X POST https://api.opensmartroute.ai/api/v1/route -H 'Authorization: Bearer $OSR_API_KEY' -H 'Content-Type: application/json' -d '{"text": "...", "plan": true}'
Manifest
An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.
hyunjun6928-netizen-salmalm-weather.ocm.jsonjson
{
"ocm": "1",
"id": "hyunjun6928-netizen-salmalm-weather",
"kind": "skill",
"name": "weather",
"description": "Weather > Get current weather and forecasts for any location.",
"publisher": "hyunjun6928-netizen",
"version": "1.0.0",
"capabilities": {
"domains": [
"general"
],
"tags": [
"skill-md",
"github"
],
"languages": [
"en"
]
},
"quality_prior": 0.6,
"examples": [
"Weather > Get current weather and forecasts for any location."
],
"primary": false,
"metadata": {
"source": {
"provider": "github",
"repository": "https://github.com/hyunjun6928-netizen/salmalm",
"path": "skills/weather/SKILL.md",
"ref": "20f835527eefcdd33ffc4f98d6e065d7032e9177",
"url": "https://github.com/hyunjun6928-netizen/salmalm/blob/20f835527eefcdd33ffc4f98d6e065d7032e9177/skills/weather/SKILL.md",
"key": "hyunjun6928-netizen/salmalm/skills/weather/SKILL.md"
}
},
"instructions": "# Weather\n> Get current weather and forecasts for any location.\n\n## Instructions\n1. Use `web_fetch` to get weather from wttr.in:\n - Current: `web_fetch(url=\"https://wttr.in/{city}?format=j1\")`\n - Simple: `web_fetch(url=\"https://wttr.in/{city}?format=3\")`\n2. Parse the JSON response for temperature, conditions, humidity, wind\n3. Present in a clean format with emoji indicators\n\n## Examples\n- \"What's the weather in Seoul?\" → `web_fetch(url=\"https://wttr.in/Seoul?format=j1\")`\n- \"Will it rain tomorrow in Tokyo?\" → Check `weather[1]` in the JSON response",
"cost": {
"context_tokens": 139
}
}
Fetch it by URL: GET /api/v1/registry/hyunjun6928-netizen-salmalm-weather/manifest?version=1.0.0
Reviews
Star ratings from people who tried it. One review per account; edit yours any time.
No reviews yet. Install it, try it, and be the first to rate it.