AgentSkillsCN

therion-tools

THERION 通用工具路由器——只需一条命令,即可实现网络搜索、天气查询、加密货币行情、新闻资讯的快速获取。它采用原生 CLI 工具(ddgr、curl),完全无需 API 密钥。

SKILL.md
--- frontmatter
name: therion-tools
description: THERION Universal Tool Router - ONE command for web search, weather, crypto prices, news. Uses native CLI tools (ddgr, curl) with NO API keys required.
homepage: https://github.com/therion
metadata:
  {
    "openclaw":
      { "emoji": "⚔️", "requires": { "bins": ["mcporter", "curl", "ddgr"] } },
  }

⚔️ THERION Universal Tools

Use mcporter to access ALL THERION capabilities through ONE unified interface.

Quick Reference

bash
# Weather
mcporter call therion-tools.execute action=weather params='{"location":"Athens"}'

# Crypto prices (specific coins)
mcporter call therion-tools.execute action=crypto_price params='{"coins":"bitcoin,ethereum,solana"}'

# Top cryptocurrencies
mcporter call therion-tools.execute action=crypto_top params='{"limit":10}'

# Web search
mcporter call therion-tools.execute action=web_search params='{"query":"your search query","num_results":5}'

# News search
mcporter call therion-tools.execute action=news_search params='{"query":"bitcoin news","num_results":5}'

# Current date/time
mcporter call therion-tools.execute action=datetime params='{"timezone":"Europe/Athens"}'

# Help (list all actions)
mcporter call therion-tools.execute action=help

Available Actions

ActionDescriptionParams
weatherCurrent weatherlocation (city name)
weather_detailedDetailed forecastlocation
crypto_priceSpecific coin pricescoins (comma-separated)
crypto_topTop coins by market caplimit (default 10)
web_searchDuckDuckGo searchquery, num_results
news_searchNews article searchquery, num_results
datetimeCurrent date/timetimezone (optional)
helpList all actionsnone

Examples

Weather in a city:

bash
mcporter call therion-tools.execute action=weather params='{"location":"New York"}'

Top 5 crypto by market cap:

bash
mcporter call therion-tools.execute action=crypto_top params='{"limit":5}'

Search for latest news:

bash
mcporter call therion-tools.execute action=news_search params='{"query":"AI news today","num_results":5}'

Important Notes

  • All data comes from FREE public sources (no API keys needed)
  • Weather: Use ddgr web search (e.g., ddgr --np -n 3 'City weather today')
  • Crypto: CoinGecko
  • Search: DuckDuckGo (via ddgr)
  • Always use mcporter call for these capabilities