en un clic
weather
Get current weather and forecasts (no API key required).
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Get current weather and forecasts (no API key required).
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
为 acadclaw 调度整条 ECE 学术研究链路,决定何时调用检索、综述、研究空白、实现、实验、写作、引用和评审类 skills。Full-chain pipeline with concrete tool calls for literature search, RAG, experiments, statistics, plotting, writing, review, and citation management.
Specialized in writing research experiment code. Use when spawning a subagent to implement simulations, numerical models, data processing, or statistical analysis. Produces well-structured, documented Python code with proper error handling and result persistence.
学术关系构建指南。指导撰写 Cold Email、会议社交以及建立学术影响力。
Specialized in reviewing academic papers and providing structured feedback. Use when spawning a subagent for peer review, quality assessment, or iterative improvement of academic writing. Triggers: review, 审稿, feedback, critique, improve, 迭代, revise.
面向中文管理类硕士学位论文的多轮评审技能,尤其适用于 MBA、MEM、MPA,也可扩展到相近的专业型与应用研究型论文。
用于润色面向顶级计算机学术会议的研究写作(如 NeurIPS、ICLR、ICML、AAAI、IJCAI、ACL、EMNLP、NAACL、CVPR、WWW、KDD、SIGIR、CIKM 等)。当用户要求改进、润色、精修、编辑或校对学术写作时触发,包括论文草稿、摘要、引言、相关工作、方法描述、实验部分或结论部分;当用户粘贴 LaTeX 内容并请求写作帮助,或提到 camera-ready、rebuttal、paper revision、具体学术会议名称时也应触发。该技能同时支持整篇论文润色与分章节编辑。
| name | weather |
| description | Get current weather and forecasts (no API key required). |
| homepage | https://wttr.in/:help |
| metadata | {"acadclaw":{"emoji":"🌤️","requires":{"bins":["curl"]}}} |
Two free services, no API keys needed.
Quick one-liner:
curl -s "wttr.in/London?format=3"
# Output: London: ⛅️ +8°C
Compact format:
curl -s "wttr.in/London?format=%l:+%c+%t+%h+%w"
# Output: London: ⛅️ +8°C 71% ↙5km/h
Full forecast:
curl -s "wttr.in/London?T"
Format codes: %c condition · %t temp · %h humidity · %w wind · %l location · %m moon
Tips:
wttr.in/New+Yorkwttr.in/JFK?m (metric) ?u (USCS)?1 · Current only: ?0curl -s "wttr.in/Berlin.png" -o /tmp/weather.pngFree, no key, good for programmatic use:
curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5&longitude=-0.12¤t_weather=true"
Find coordinates for a city, then query. Returns JSON with temp, windspeed, weathercode.