wikipedia
Look up encyclopedic facts and article text from Wikipedia via the public MediaWiki API
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Look up encyclopedic facts and article text from Wikipedia via the public MediaWiki API
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Resolve entities, fetch structured facts, and run SPARQL queries against Wikidata
Determine the user's current location from GeoClue data
Search places, find nearby POIs, and get driving directions using OpenStreetMap
Read recent desktop notifications from a JSON history file written by a notification-history daemon.
Onboard or reconfigure other pi-chat skills (URLs, usernames, credentials) by triggering a popup that the user fills in directly — values never travel through chat.
Get the current date and time to answer time-related questions
| name | Wikipedia |
| description | Look up encyclopedic facts and article text from Wikipedia via the public MediaWiki API |
Use wikipedia-cli to search Wikipedia, read a short factual summary, or
pull the full plaintext of an article. No account or API key is needed.
wikipedia-cli search "theory of relativity"
wikipedia-cli search "Einstein" --limit 3
Returns each hit's title, page ID, and a plain-text snippet. Use this first
to resolve a vague query to an exact article title before calling
summary or content.
wikipedia-cli summary "Albert Einstein"
Returns the title, a one-line description, the lead-paragraph extract, and the canonical page URL. This is the fastest path to a single factual answer.
wikipedia-cli content "Albert Einstein"
wikipedia-cli content "Albert Einstein" --intro
Prints the plain-text article body. Pass --intro to get only the lead
section instead of the whole page — cheaper when you just need the opening.
wikipedia-cli search "<query>" to find the exact title, then
wikipedia-cli summary "<title>" for a fast answer or
wikipedia-cli content "<title>" for the full text.--lang <code> (default en) to query a non-English
edition, e.g. wikipedia-cli summary "Berlin" --lang de.search returns over guessing.