بنقرة واحدة
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 المهني
| 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"
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.