Resources
5Install
npx skillscat add imoonkey/openweb/src-sites-google-scholar Install via the SkillsCat registry.
SKILL.md
Google Scholar
Overview
Academic paper search engine (Google). Search papers, explore citation graphs, and view researcher profiles with h-index and publication history.
Workflows
Search papers and explore citations
searchPapers(q)→ results withcitescluster IDgetCitations(cites)→ papers citing that paper →citesfor further hops
Research an author
searchPapers(q)→ find paper →userID from author linksgetAuthorProfile(user)→ name, affiliation, h-index, citations, publications
Operations
| Operation | Intent | Key Input | Key Output | Notes |
|---|---|---|---|---|
| searchPapers | find papers by keyword/author | q | title, authors, citedBy, cites, pdfLink | 10 results/page; cites field feeds getCitations |
| getCitations | papers citing a given paper | cites ← searchPapers | title, authors, citedBy, totalResults | same DOM as search |
| getAuthorProfile | researcher profile | user (from author links) | name, hIndex, citationsAll, publications[] | up to 20 publications |
Quick Start
# Search for papers
openweb google-scholar exec searchPapers '{"q": "transformer attention"}'
# Get citing papers (use cites value from search)
openweb google-scholar exec getCitations '{"cites": "10449950798206616151"}'
# Get author profile (use user ID from author links in search)
openweb google-scholar exec getAuthorProfile '{"user": "KROUdngAAAAJ"}'