Skill 技能

Weather

Weather 是一套面向一人公司的通用 playbook,帮助你用更少的人力完成更稳的增长、交付与决策。

更新于 2026年4月1日 One Person Company 编辑团队 Skill 执行系统

中文导读

Weather 是一套面向一人公司的通用 playbook,帮助你用更少的人力完成更稳的增长、交付与决策。

说明: 原始步骤、命令与 API 名称保留英文,以避免参数和接口名称失真。

概览

Two free services, no API keys needed. wttr.in (primary) 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:
  • URL-encode spaces: wttr.in/New+York
  • Airport codes: wttr.in/JFK
  • Units: ?m (metric) ?u (USCS)
  • Today only: ?1 · Current only: ?0
  • PNG: curl -s "wttr.in/Berlin.png" -o /tmp/weather.png
  • Open-Meteo (fallback, JSON)
  • Free, no key, good for programmatic use:
  • curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5&longitude=-0.12&current_weather=true"
  • Find coordinates for a city, then query. Returns JSON with temp, windspeed, weathercode.
  • Docs: https://open-meteo.com/en/docs

SKILL.md 原文件

内嵌文档查看器 SKILL.md
Markdown 源文件

预览原始 SKILL.md. 下面可以直接查看完整原文。可滚动阅读、检查结构,再下载精确的 SKILL.md 原文件。

# weather

Weather
Two free services, no API keys needed.
wttr.in (primary)
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:
URL-encode spaces: wttr.in/New+York
Airport codes: wttr.in/JFK
Units: ?m (metric) ?u (USCS)
Today only: ?1 · Current only: ?0
PNG: curl -s "wttr.in/Berlin.png" -o /tmp/weather.png
Open-Meteo (fallback, JSON)
Free, no key, good for programmatic use:
curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5&longitude=-0.12&current_weather=true"
Find coordinates for a city, then query. Returns JSON with temp, windspeed, weathercode.
Docs: https://open-meteo.com/en/docs

评论与讨论

添加评论