원클릭으로
weather
天气查询 workflow:通过 weather CLI 获取当前天气、指定日期天气或小时级预报。用户提到 weather、forecast、温度、降雨、体感或天气趋势时使用。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
天气查询 workflow:通过 weather CLI 获取当前天气、指定日期天气或小时级预报。用户提到 weather、forecast、温度、降雨、体感或天气趋势时使用。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
读取和编辑 HYX 的 Notion Plan / 计划通;当用户要查看、添加或插入计划通日期事项时使用。
读取与写入普通 Notion page / database。用户要在 Notion workspace 中 search、query、create 或 update 非计划通内容时使用。
L2 structured memory:持久化并读取稳定的用户记忆、偏好与长期上下文。
通过 Tavily 执行 Web search 与 page reading。用户需要在线检索、事实核验或读取公开网页时使用。
将 coding task 委托给 Hypo-Coder。用户请求 code change、feature implementation、bug fix 或 code review,且任务适合异步委托时使用。
查询 Hypo-Info 的今日资讯、topic search、AI benchmark 与 section browse。用户询问 news、trends 或 model leaderboard 时使用。
| name | weather |
| description | 天气查询 workflow:通过 weather CLI 获取当前天气、指定日期天气或小时级预报。用户提到 weather、forecast、温度、降雨、体感或天气趋势时使用。 |
| compatibility | linux |
| allowed-tools | exec_command |
| metadata | {"hypo.category":"pure","hypo.backend":"exec","hypo.exec_profile":"cli-json","hypo.triggers":"天气,weather,forecast,温度,降雨,下雨,体感,湿度,风速,天气预报","hypo.risk":"low","hypo.dependencies":"cr-mb-weather-cli","hypo.cli_package":"cr-mb-weather-cli","hypo.cli_commands":"weather","hypo.io_format":"json-stdio"} |
weather 是一个基于外部 CLI 的天气查询 workflow,通过 weather 命令获取当前天气、指定日期天气或 hourly forecast,并以 JSON stdio 形式返回结构化结果。
exec_command 调用 weather CLI。weather ... --format=raw,这样 stdout 会返回 JSON。--lat 和 --lon,因为这条路径最稳定,也避免额外 geocoding。location,但要知道这依赖 geocoding,可能比坐标更慢。--format=raw --timeout 10,必要时再补 --date、--hourly、--units 或 --source=open-meteo。weather "<location>" --format=raw --timeout 10weather --lat <lat> --lon <lon> --format=raw --timeout 10weather "<location>" --date tomorrow --format=raw --timeout 10weather "<location>" --hourly --format=raw --timeout 10metric;只有用户明确要求英制单位时再加 --units imperialopen-meteo,因为它不需要 API key,且适合零配置部署。