con un clic
weather
Get current weather and forecasts (no API key required).
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Get current weather and forecasts (no API key required).
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
构建与维护本地多项目 LLM Wiki(RAG-first)。支持 skill-local registry.json 管理多个 wiki、raw 文档导入、增量 ingest/index、带引用 query、静态 wiki 站点构建,以及 ZIP-first 发布流程(bundle_zip -> publish_zip -> publish_snapshot)。
问答式创建一对一的本地 Wiki 技能。Use when the user wants to turn a specific raw documents directory into a dedicated skill with its own name, description, absorb/index/query, HTML wiki build, and ZIP-first publish workflow, or when updating a dedicated wiki skill after the source docs change.
MetaBot 专属的 MetaApp 开发与交付套件。基于 IDFramework (No-Build, MVC) 架构,支持从零构建链上前端应用、编写业务指令 (Commands)、组件开发 (Web Components) 以及最终的打包交付 (Zip)。
通过问答引导用户把本地 MetaApp 运行时目录/ZIP 与源码目录/ZIP 按 /protocols/metaapp 协议发布到链上。当用户说“发布metaapp”“上传metaapp”“我有一个app要分享”“把应用发到链上”等意图时调用此技能。
将本地技能(SKILL.md + 文件)以 metabot-skill 协议打包发布到链上的技能。当用户说"发布技能"、"上传技能"、"分享技能到社区"、"把这个技能发到链上"时调用此技能。
MetaBot 的全能链上协议编织者 (Omni-Caster)。当用户需要执行 MetaID 生态的各种交互(点赞、评论、加群、发长文等),或者表达需要数据上链时,且没有其他专用技能时,统一调用此通用技能。
| name | weather |
| description | Get current weather and forecasts (no API key required). |
| homepage | https://wttr.in/:help |
| metadata | {"clawdbot":{"emoji":"🌤️","requires":{"bins":["node"]}}} |
| official | true |
Cross-platform weather queries (no API keys required).
node "$SKILLS_ROOT/weather/scripts/index.js" --city "London"
No city provided (auto-detect by wttr.in, network permitting):
node "$SKILLS_ROOT/weather/scripts/index.js"
node "$SKILLS_ROOT/weather/scripts/index.js" --city "New York" --format compact
node "$SKILLS_ROOT/weather/scripts/index.js" --city "Tokyo" --format forecast
node "$SKILLS_ROOT/weather/scripts/index.js" --lat 51.5 --lon -0.12
node "$SKILLS_ROOT/weather/scripts/index.js" --city "San Francisco" --provider open-meteo --units us
wttr and it auto-falls back to Open-Meteo if wttr.in is unreachable.--format supports current (default), compact, and forecast.--units supports metric (default) and us.--help for all options.If you need direct curl calls:
curl -s "https://wttr.in/London?format=3&m"
curl -s "https://wttr.in/London?format=%l:+%c+%t+%h+%w&m"
curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5&longitude=-0.12¤t=temperature_2m,weather_code"