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.