スキル一覧に戻る
sfmskywalker

weather-lookup

by sfmskywalker

A .NET implementation of the agentskills standard by Anthropic

2🍴 0📅 2026年1月21日
GitHubで見るManusで実行

SKILL.md


name: weather-lookup description: Get current weather information for any location version: 1.0.0 author: AgentSkills.NET Sample tags:

  • weather
  • information
  • location allowed-tools:
  • get_weather

Weather Lookup Skill

Get current weather information for cities and locations.

Purpose

This skill enables you to retrieve weather information when users ask about weather conditions in specific locations.

Instructions

When a user asks about the weather:

  1. Extract the location from the user's request

    • City name
    • City and country (e.g., "London, UK")
    • Zip code (if applicable)
  2. Call the weather tool: Use get_weather with the location parameter

  3. Format the response with:

    • Location name
    • Current temperature
    • Weather condition (e.g., sunny, cloudy, rainy)
    • Additional details if available

Examples

Example 1: Simple Weather Query

User: "What's the weather in San Francisco?" Action: Call get_weather("San Francisco") Response: "In San Francisco, it's currently 65°F and partly cloudy."

Example 2: Weather with Country

User: "Tell me the weather in Paris, France" Action: Call get_weather("Paris, France") Response: "In Paris, France, it's currently 12°C (54°F) and overcast with light rain."

Example 3: Multiple Location Query

User: "What's the weather in New York and London?" Action: Call get_weather("New York") then get_weather("London") Response: "In New York, it's 72°F and sunny. In London, it's 16°C (61°F) and cloudy."

Tips

  • If the location is ambiguous, you can ask for clarification
  • Provide temperature in the user's preferred unit if known
  • Include relevant details like humidity or wind if the user asks

Notes

  • This skill requires access to the get_weather tool
  • The tool is implemented in the host environment
  • Actual weather data would come from a weather API in a real implementation

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です