بنقرة واحدة
wolfram-alpha
Query Wolfram Alpha LLM API for computational knowledge, mathematics, science, and factual data.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Query Wolfram Alpha LLM API for computational knowledge, mathematics, science, and factual data.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Connect to Robinhood Agentic Trading via MCP — view portfolio, analyze positions, place trades, and execute automated strategies through Robinhood's official MCP server.
Interact with SoundCloud API for searching tracks, managing playlists, user operations, and audio discovery. Use when the user asks to search for music on SoundCloud, create/edit playlists, get track information, find user profiles, manage favorites, or work with SoundCloud audio content. Requires SOUNDCLOUD_CLIENT_ID and SOUNDCLOUD_CLIENT_SECRET for all operations; SOUNDCLOUD_USER_TOKEN for write operations (playlists, likes, follows).
Automated daily swing trading strategy — scans pre-market movers, picks momentum stocks, buys at open, manages exits at afternoon check with stop-loss and profit targets. Designed for small cash accounts ($500) using Robinhood Agentic MCP.
Gmail inbox triage with self-learning SQLite pattern database. Multi-account support with whitelist/blacklist, keyword-domain-essence scoring, and daily feedback sweep learning. Use when the user asks to check email, triage inbox, or during automated email triage cron runs.
Graph-based agent memory for tracing relationships between facts. Use when memory_search returns isolated facts and you need to see how they connect — causal chains, hierarchies, related events. LTM-only, stored as JSON graph with typed nodes and weighted edges.
Query WaniKani Japanese learning data — profile, kanji/vocab lookup, review forecast, SRS progress, and study statistics. Requires a WaniKani API token.
| name | wolfram-alpha |
| description | Query Wolfram Alpha LLM API for computational knowledge, mathematics, science, and factual data. |
| metadata | {"author":"github.com/LeoSaucedo"} |
Query Wolfram Alpha's computational knowledge engine.
./scripts/query.sh "QUERY" [OPTIONS]
./scripts/query.sh "What is the population of France?"
./scripts/query.sh "integrate x^2 from 0 to 1"
./scripts/query.sh "convert 100 miles to kilometers"
--maxchars N - Limit response to N characters (default: 6800)--assumption "ASSUMPTION" - Specify query assumption--location "CITY, STATE" - Add location context--latlong "LAT,LONG" - Specify latitude/longitude--time "YYYY-MM-DD" - Specify date for time-sensitive queries--units "metric" - Specify unit system (metric/imperial)--language "en" - Language code (default: en)--timeout N - Timeout in seconds (default: 30)--raw - Return raw API JSON response--simple - Return structured JSON with text and images (default)--text - Return plain text output (legacy)Set your Wolfram Alpha AppID:
export WOLFRAM_APP_ID="your-appid-here"
Common errors and solutions:
# In an OpenClaw session
exec: ./scripts/query.sh "distance from Earth to Moon"
# Get multiple related facts
./scripts/fact.sh "GDP of China"
./scripts/fact.sh "population of China"
./scripts/fact.sh "area of China"
# Solve complex math problems
./scripts/math.sh "integrate e^(-x^2) from -infinity to infinity"
./scripts/math.sh "Fourier transform of sin(x)"
Check examples/ for sample queries and outputs:
examples/mathematics.md - Math query examplesexamples/science.md - Science and engineeringexamples/geography.md - Geography and demographicsexamples/everyday.md - Everyday calculationsreferences/api_reference.md - Complete API documentationreferences/error_codes.md - Error code explanationsreferences/query_guide.md - Query formulation guidereferences/units.md - Supported units and conversions