en un clic
location
Location/geocoding tools using Open-Meteo Geocoding API
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Location/geocoding tools using Open-Meteo Geocoding API
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
知识库分析工具。提供知识库统计、健康检查和优化建议。 分析文档分布、索引状态、查询性能等。
CRITICAL WEATHER TOOL. Use this skill IMMEDIATELY whenever the user asks about: - weather, temperature, forecast, rain, snow, sunny - e.g., "what is the weather in Hangzhou", "今天天气怎么样", "北京气温" - ALWAYS use this BEFORE attempting web search or other fallback tools. (Weather query tools using Open-Meteo with wttr.in fallback)
CRITICAL WEB SEARCH TOOL. Use this skill IMMEDIATELY whenever you need to search the web. IMPORTANT RULE: You MUST NOT use your native `search_web` tool. You MUST use this skill (`houyi_web_search`) instead via the Agent Execution Contract. Use this for: - Searching the internet for real-time information, news, or facts - Browsing websites and extracting content - Researching topics outside your training data (Multi-provider web search with caching, retry, and content extraction)
HouYi 项目设计文档与交付验收文档生成规范。 当需要为新特性创建设计文档(design doc)、验收跟踪文档(acceptance doc), 或维护交付日志时,使用本 skill 提供的标准模板。 中文模板为基准版本(.CN.md),英文模板无后缀(默认)。
知识库文档摄入工具。将文档加载、分块、嵌入并构建索引。 支持多种文件格式:Markdown、TXT、PDF、HTML。 支持增量更新和完整重建。
Task planning skill that creates and manages task plans in markdown files. Tracks progress through a structured plan file, ensuring tasks are completed systematically before marking as done.
| name | location |
| version | 0.1.0 |
| description | Location/geocoding tools using Open-Meteo Geocoding API |
| author | Houyi Team |
| invocationPolicy | {"sideEffect":"network","modelAutoInvoke":"allow_with_consent"} |
| permissions | {"network":{"enabled":true}} |
Provides geocoding capabilities to convert city names to coordinates.
Get geographic coordinates for a city.
Parameters:
city (str, optional): City name to geocode. Defaults to "Hangzhou".Returns: Dictionary containing:
city: City namelat: Latitudelon: Longitudecountry: Country namecountry_code: ISO country codetimezone: Timezone identifierpopulation: City population (if available)Examples:
get_location("Beijing")
# Returns: {"city": "Beijing", "lat": 39.9042, "lon": 116.4074, "country": "China", ...}
get_location("Tokyo")
# Returns: {"city": "Tokyo", "lat": 35.6895, "lon": 139.6917, "country": "Japan", ...}
get_location() # defaults to Hangzhou
# Returns: {"city": "Hangzhou", "lat": 30.2741, "lon": 120.1551, "country": "China", ...}
Uses Open-Meteo Geocoding API - free, no API key required.
Combine with weather skill to get weather for any city:
location = get_location("Shanghai")
weather = get_weather(location["lat"], location["lon"], "today")