Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Query weather via QWeather Enterprise API with automatic JWT auth + geo resolution, and Open-Meteo fallback for current conditions. --- name: openclaw-qweather description: Query weather via QWeather Enterprise API with automatic JWT auth + geo resolution, and Open-Meteo fallback for current conditions. user-invocable: true metadata: { "openclaw": { "emoji": "☀️" } } --- openclaw-qweather 天气查询 Skill 你能用它做什么 本 Skill 面向「对话/代理」提供结构化天气查询能力: - 实时天气(当前温度、体感、湿度、风等) - 天气预报(日预报 3/7/15 天) - 逐小时预报(24/72/168 小时) - 分钟级降水(未来 2 小时,每 5 分钟) - 气象预警 - 生活指数(穿衣、洗车、运动 Capability contract not published. No trust telemetry is available yet. 2 GitHub stars reported by the source. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
openclaw-qweather is best for general automation workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Query weather via QWeather Enterprise API with automatic JWT auth + geo resolution, and Open-Meteo fallback for current conditions. --- name: openclaw-qweather description: Query weather via QWeather Enterprise API with automatic JWT auth + geo resolution, and Open-Meteo fallback for current conditions. user-invocable: true metadata: { "openclaw": { "emoji": "☀️" } } --- openclaw-qweather 天气查询 Skill 你能用它做什么 本 Skill 面向「对话/代理」提供结构化天气查询能力: - 实时天气(当前温度、体感、湿度、风等) - 天气预报(日预报 3/7/15 天) - 逐小时预报(24/72/168 小时) - 分钟级降水(未来 2 小时,每 5 分钟) - 气象预警 - 生活指数(穿衣、洗车、运动
Public facts
5
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. 2 GitHub stars reported by the source. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 25, 2026
Vendor
Murphys7017
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 2 GitHub stars reported by the source. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/murphys7017/openclaw-qweather.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Murphys7017
Protocol compatibility
OpenClaw
Adoption signal
2 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
js
const { weather_now } = require("{baseDir}/lib/qweather_weather_tool");
(async () => {
const r = await weather_now({ location: "北京" });
console.log(r);
})();js
const { weather_forecast } = require("{baseDir}/lib/qweather_weather_tool");
(async () => {
const r = await weather_forecast({ location: "上海", days: 7 });
console.log(r);
})();js
const { weather_hourly } = require("{baseDir}/lib/qweather_hourly_tool");
(async () => {
const r = await weather_hourly({ location: "广州", hours: "72h" });
console.log(r);
})();js
const { weather_minutely_precipitation } = require("{baseDir}/lib/qweather_precipitation_tool");
(async () => {
const r = await weather_minutely_precipitation({ location: "杭州" });
console.log(r);
})();js
const { weather_warning } = require("{baseDir}/lib/qweather_warning_tool");
(async () => {
const r = await weather_warning({ location: "成都" });
console.log(r);
})();js
const { weather_indices } = require("{baseDir}/lib/qweather_indices_tool");
(async () => {
const r = await weather_indices({ location: "南京", days: "1d", type: "all" });
console.log(r);
})();Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Query weather via QWeather Enterprise API with automatic JWT auth + geo resolution, and Open-Meteo fallback for current conditions. --- name: openclaw-qweather description: Query weather via QWeather Enterprise API with automatic JWT auth + geo resolution, and Open-Meteo fallback for current conditions. user-invocable: true metadata: { "openclaw": { "emoji": "☀️" } } --- openclaw-qweather 天气查询 Skill 你能用它做什么 本 Skill 面向「对话/代理」提供结构化天气查询能力: - 实时天气(当前温度、体感、湿度、风等) - 天气预报(日预报 3/7/15 天) - 逐小时预报(24/72/168 小时) - 分钟级降水(未来 2 小时,每 5 分钟) - 气象预警 - 生活指数(穿衣、洗车、运动
本 Skill 面向「对话/代理」提供结构化天气查询能力:
对外调用只需要传 location(城市名 / 经纬度 / locationId)。
Skill 内部会自动完成:
locationId(必要时提取经纬度)weather_now:当企业 API 异常时自动回退到 Open-Meteo(保证实时天气可用)这符合 OpenClaw Skill 的设计:对外暴露的是“能力”,不是“实现步骤”。
并且 Skill 文档建议在正文中使用{baseDir}引用技能目录路径。 :contentReference[oaicite:1]{index=1}
所有查询 action 通用输入:
location(可选)
"北京""116.4,39.9"(建议使用 lon,lat)"101010100"说明:以下 actions 代表“你应该从用户意图映射到哪种查询”,而不是要求你显式调用 JWT/Geo。
weather_now 实时天气(含回退)适用:用户问“现在XX天气怎样/多少度/风大吗/要不要带伞(当前)”。
特性:企业 API 失败时自动回退 Open-Meteo。
输入
{ location? }输出(成功)
success: truesource: "QWeather Enterprise API" | "Open-Meteo (free tier)"now: { temp, feelsLike, text, humidity?, windDir?, windScale?, obsTime? }fxLink?weather_forecast 日预报(3/7/15 天)适用:用户问“未来几天/本周天气趋势”。
输入
{ location?, days? },days 推荐值:3 | 7 | 15输出(成功)
success: trueforecast: [{ date, tempMax, tempMin, textDay, textNight, precip? }]weather_hourly 逐小时预报(24/72/168 小时)适用:用户需要“今天每小时温度/降水概率变化”。
输入
{ location?, hours? },hours:"24h" | "72h" | "168h"输出(成功)
success: truehourly: [{ time, temp, text, humidity?, precip?, pop?, windDir?, windScale?, windSpeed?, ... }]weather_minutely_precipitation 分钟级降水(2 小时)适用:短时决策(是否马上会下雨、是否要带伞、临近出门提醒)。
输入
{ location? }(内部会自动保证获得经纬度)输出(成功)
success: trueprecipitation: { summary, updateTime, fxLink?, minutely: [{ time, precip, type }] }weather_warning 气象预警适用:安全风险(暴雨、大风、高温、寒潮等)。
输入
{ location? }输出(成功)
success: truewarning: { updateTime, fxLink?, alerts: [...] }weather_indices 生活指数(1d / 3d)适用:穿衣/洗车/运动/紫外线/感冒等建议。
输入
{ location?, days?, type? }days: "1d" | "3d"type: "all" 或具体指数类型输出(成功)
success: trueindices: [{ date, type, name, level, category, text }]注意:示例只演示“天气 action 的调用方式”。
JWT 和 Geo 解析会在这些 action 内部自动完成。
const { weather_now } = require("{baseDir}/lib/qweather_weather_tool");
(async () => {
const r = await weather_now({ location: "北京" });
console.log(r);
})();
const { weather_forecast } = require("{baseDir}/lib/qweather_weather_tool");
(async () => {
const r = await weather_forecast({ location: "上海", days: 7 });
console.log(r);
})();
const { weather_hourly } = require("{baseDir}/lib/qweather_hourly_tool");
(async () => {
const r = await weather_hourly({ location: "广州", hours: "72h" });
console.log(r);
})();
const { weather_minutely_precipitation } = require("{baseDir}/lib/qweather_precipitation_tool");
(async () => {
const r = await weather_minutely_precipitation({ location: "杭州" });
console.log(r);
})();
const { weather_warning } = require("{baseDir}/lib/qweather_warning_tool");
(async () => {
const r = await weather_warning({ location: "成都" });
console.log(r);
})();
const { weather_indices } = require("{baseDir}/lib/qweather_indices_tool");
(async () => {
const r = await weather_indices({ location: "南京", days: "1d", type: "all" });
console.log(r);
})();
weather_now:具备 Open-Meteo 回退,增强可用性(企业 API 异常时仍返回基础实时天气)。
其他 action:以企业 API 为主;失败时返回 success:false 并附带错误信息(不回退)。
分钟级降水:底层依赖经纬度;若无法从位置解析获得坐标,将返回失败。
本 Skill 的企业 API 配置 不通过 OpenClaw 的 env/apiKey 机制注入,也不期望 OpenClaw 读取或管理该配置。
{baseDir}/lib/qweather_config.jsqweather_config.js 内的 PRIVATE_KEY_PATH 指定(技能内部读取本地文件)也就是说:部署者需要在技能目录中自行准备好配置与私钥文件,确保运行时可读。
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/murphys7017-openclaw-qweather/snapshot"
curl -s "https://xpersona.co/api/v1/agents/murphys7017-openclaw-qweather/contract"
curl -s "https://xpersona.co/api/v1/agents/murphys7017-openclaw-qweather/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/murphys7017-openclaw-qweather/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/murphys7017-openclaw-qweather/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/murphys7017-openclaw-qweather/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/murphys7017-openclaw-qweather/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/murphys7017-openclaw-qweather/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/murphys7017-openclaw-qweather/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-16T23:37:03.730Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Murphys7017",
"href": "https://github.com/murphys7017/openclaw-qweather",
"sourceUrl": "https://github.com/murphys7017/openclaw-qweather",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T02:25:26.606Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/murphys7017-openclaw-qweather/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/murphys7017-openclaw-qweather/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T02:25:26.606Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "2 GitHub stars",
"href": "https://github.com/murphys7017/openclaw-qweather",
"sourceUrl": "https://github.com/murphys7017/openclaw-qweather",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T02:25:26.606Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/murphys7017-openclaw-qweather/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/murphys7017-openclaw-qweather/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to openclaw-qweather and adjacent AI workflows.