بنقرة واحدة
weather
天气查询与预报。支持全球城市天气查询、多日预报、详细气象数据。无需 API Key。当用户询问天气、气温、是否下雨、穿衣建议、出行天气等场景时使用。JSON 输出已优化,只返回关键信息。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
天气查询与预报。支持全球城市天气查询、多日预报、详细气象数据。无需 API Key。当用户询问天气、气温、是否下雨、穿衣建议、出行天气等场景时使用。JSON 输出已优化,只返回关键信息。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Query foreign LLM for chat. Use this skill if a foreign LLM like OpenAI ChatGPT, Google Gemini, DeepSeek or xAI Grok should be queried with a single chat message.
Query Multiple AIs for Quorum Answer.
Safety-reviewed guide for @xquik/tweetclaw, the Xquik OpenClaw plugin for structured X/Twitter workflows. Covers setup, credential boundaries, explicit approval for writes and paid actions, spending limits, private-data handling, and monitor controls.
Use when the user needs X (Twitter) data through Xquik: REST API integration, MCP setup, SDK setup, tweet search, user lookup, timeline reads, follower export, media download, monitoring, webhooks, bulk extraction, giveaway draws, or confirmation-gated publishing workflows. Read-only by default, API-key only, no X login material, and every write, private read, monitor, webhook, or metered bulk job requires explicit approval.
Use when the user wants to add ONE table (typically a newly-added Dataverse table) to an existing offline profile without re-running the full /setup-offline-profile wizard. Parallel to /add-dataverse — same single-table flow.
Use when the user wants to change ONE aspect of an existing offline profile (row scope for a table, column list, sync frequency) without re-running the full /setup-offline-profile wizard. Mirrors the /edit-app gated edit pattern.
| name | weather |
| description | 天气查询与预报。支持全球城市天气查询、多日预报、详细气象数据。无需 API Key。当用户询问天气、气温、是否下雨、穿衣建议、出行天气等场景时使用。JSON 输出已优化,只返回关键信息。 |
| homepage | https://github.com/countbot-ai/CountBot |
免费天气服务,无需 API Key,支持中文。
# 查询城市天气(默认简洁一行输出)
python3 skills/weather/scripts/weather.py query 北京
# 详细模式(多行格式化输出)
python3 skills/weather/scripts/weather.py query 上海 --detailed
# 查看多日预报
python3 skills/weather/scripts/weather.py forecast 深圳
# 仅今天
python3 skills/weather/scripts/weather.py forecast 广州 --days 1
# JSON 输出(推荐 AI 使用,已优化为精简格式)
python3 skills/weather/scripts/weather.py query 东莞 --json
# 英文城市名
python3 skills/weather/scripts/weather.py query London --lang en
# 指定单位(metric/uscs)
python3 skills/weather/scripts/weather.py query Tokyo --units uscs
用户说"今天北京天气怎么样":
python3 skills/weather/scripts/weather.py query 北京 --json
用户说"这周末适合出去玩吗":
python3 skills/weather/scripts/weather.py forecast 当前城市 --json
用户说"明天要不要带伞":
python3 skills/weather/scripts/weather.py query 当前城市 --json
如果 Python 脚本不可用,可直接使用 curl:
# 快速查询
curl -s "wttr.in/Beijing?format=3"
# 完整预报
curl -s "wttr.in/Beijing?lang=zh"
# 自定义格式
curl -s "wttr.in/Beijing?format=%l:+%c+%t+%h+%w"
格式码:%c 天气 · %t 温度 · %h 湿度 · %w 风速 · %l 地点 · %m 月相
+ 替代?m 公制 / ?u 美制