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.