ワンクリックで
weather-lookup
Look up the current weather for a city via a public API and print it.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Look up the current weather for a city via a public API and print it.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Clones a repo with git and prints its latest tag. Declares only the git command.
Prints the current time in the configured timezone. Reads only TZ.
Fetches the latest release of a repo from GitHub and posts a summary.
Reformats a Markdown file in place. Pure text processing, no network.
| name | weather-lookup |
| version | 1.0.0 |
| entry | scripts/lookup.sh |
| description | Look up the current weather for a city via a public API and print it. |
| allowed-tools | Bash(curl:*), WebFetch |
| capabilities | {"net":true,"exec":true,"env":true,"hosts":["api.open-meteo.com"],"env-vars":["WEATHER_UNITS"]} |
A small, honest skill: it fetches weather from a public HTTP endpoint and prints it. Every capability it uses is declared in the frontmatter above:
https://api.open-meteo.com (declared host).curl.WEATHER_UNITS variable.It does not write any files outside its own directory, so fs-write is not
declared and the scanner finds none. skillprov verify returns a green PASS.
WEATHER_UNITS=metric ./scripts/lookup.sh "Berlin"