用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill weatherkit命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use this skill to create a Polymarket wallet for your agent and trade on prediction markets. Browse markets, place bets, manage positions — all without exposing private keys.
ClawSec suite manager with embedded advisory-feed monitoring, cryptographic signature verification, approval-gated malicious-skill response, and guided setup for additional security skills.
Automated daily security audits for OpenClaw agents with email reporting. Runs deep audits and sends formatted reports.
基于 SOC 职业分类
正在显示 SKILL.md
| name | weatherkit |
| description | Access Apple WeatherKit REST API for detailed weather forecasts using JWT authentication. |
| homepage | https://developer.apple.com/documentation/weatherkitrestapi/ |
| metadata | {"openclaw":{"emoji":"🌤️","requires":{"env":["APPLE_TEAM_ID","APPLE_KEY_ID","APPLE_WEATHERKIT_KEY_PATH","APPLE_SERVICE_ID"]}}} |
While simpler weather tools can provide quick forecasts, the weatherkit skill leverages Apple's robust WeatherKit REST API to deliver:
This skill allows you to fetch current weather and detailed weather forecasts using Apple's WeatherKit REST API. It authenticates using JSON Web Tokens (JWT) based on your Apple Developer Team ID, Key ID, Service ID, and a private key file.
This skill requires the following environment variables to be set:
APPLE_TEAM_ID: Your Apple Developer Team ID.APPLE_KEY_ID: Your WeatherKit API Key ID.APPLE_WEATHERKIT_KEY_PATH: The absolute path to your WeatherKit private key file (.p8).APPLE_SERVICE_ID: The Bundle ID / Service ID associated with your WeatherKit access (e.g., net.free-sky.weatherkit).weatherkit.get_forecastRetrieves a detailed weather forecast for a specified location and date range.
Parameters:
latitude: (Required, float) The latitude of the location.longitude: (Required, float) The longitude of the location.start_date: (Optional, YYYY-MM-DD string) The start date for the forecast. Defaults to today.end_date: (Optional, YYYY-MM-DD string) The end date for the forecast. Defaults to start_date + 5 days.timezone: (Optional, string) The IANA timezone name (e.g., "America/Los_Angeles"). Defaults to "auto".data_sets: (Optional, list of strings) Which data sets to return (e.g., ["forecastDaily", "forecastHourly"]). Defaults to ["forecastDaily", "currentWeather"].country_code: (Optional, string) The ISO 3166-1 alpha-2 country code (e.g., "US", "GB"). Defaults to "US".Example Usage:
exec {
command: "skills/weatherkit/venv/bin/python3 skills/weatherkit/weatherkit.py get_forecast --latitude 33.8121 --longitude -117.9190 --start-date 2026-02-12 --end-date 2026-02-15 --country-code US --timezone America/Los_Angeles"
}