feat(skills): add opt-in Wikipedia packaged skill - #2610
Merged
webbrain-one merged 3 commits intoJul 27, 2026
Conversation
Add a read-only Wikipedia skill for Chrome and Firefox with search and page-summary HTTP tools, register it in the packaged catalog (not default-seeded), and cover opt-in prompt/tool wiring in tests.
|
@Ayush7614 is attempting to deploy a commit to the esokullu's projects Team on Vercel. A member of the Team first needs to authorize it. |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds an opt-in English Wikipedia skill for Chrome and Firefox, independent of issue #357.
Changes:
- Adds Wikipedia search and summary HTTP tools.
- Registers the packaged skill without enabling it by default.
- Tests registration, parsing, visibility, and attribution.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
src/chrome/src/agent/skills.js |
Registers the Chrome skill. |
src/chrome/skills/wikipedia.md |
Defines Chrome Wikipedia tools and workflow. |
src/firefox/src/agent/skills.js |
Registers the Firefox skill. |
src/firefox/skills/wikipedia.md |
Defines Firefox Wikipedia tools and workflow. |
test/run.js |
Tests cross-browser packaged-skill behavior. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+72
to
+80
| "defaultArgs": { | ||
| "action": "query", | ||
| "format": "json", | ||
| "prop": "extracts|info", | ||
| "exintro": "1", | ||
| "explaintext": "1", | ||
| "inprop": "url", | ||
| "redirects": "1" | ||
| }, |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds an opt-in packaged skill for English Wikipedia (Chrome + Firefox):
search_wikipedia— REST page search (/w/rest.php/v1/search/page)get_wikipedia_summary— MediaWiki Action API intro extract + URLNo API key. Not auto-seeded (same model as Open Library / Open-Meteo). Appears under Settings → Skills.
Why
Useful Ask/Act lookup with a real public API. Independent of #357 skill ideas (OTP, file-share, etc., which already have other packaged skills).
Test plan
node test/run.js: 1350 passed, 1 failed (existing changelog test onmain)