Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Search computer science literature via the CiteSeerX digital library
.claude/skills/brycewang-stanford-citeseerx-api/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-03 | ✗→✓ | ▲ Improved | -54% | 0% |
| case-01 | ✗→✓ | ▲ Improved | -23% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 126% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 28% | 0% |
| case-05 | ✗→✓ | ▲ Improved | -30% | 0% |
CiteSeerX is a scientific literature digital library focusing on computer and information science, with 10M+ documents and 100M+ citations. It provides autonomous citation indexing — extracting and linking citations without manual curation. The API supports document search, citation lookup, and metadata retrieval. Free, no authentication required.
https://citeseerx.ist.psu.edu/apibash# Keyword search curl "https://citeseerx.ist.psu.edu/api/search?q=graph+neural+networks&start=0&rows=20" # Search by title curl "https://citeseerx.ist.psu.edu/api/search?q=title:attention+is+all+you+need" # Search by author curl "https://citeseerx.ist.psu.edu/api/search?q=author:hinton&rows=25" # Filter by year curl "https://citeseerx.ist.psu.edu/api/search?q=federated+learning&year=2024" # Sort by citation count curl "https://citeseerx.ist.psu.edu/api/search?q=reinforcement+learning&sort=citationCount+desc"
bash# Get document metadata curl "https://citeseerx.ist.psu.edu/api/document?doi=10.1.1.123.456" # Get citations for a document curl "https://citeseerx.ist.psu.edu/api/citations?doi=10.1.1.123.456" # Get citing documents curl "https://citeseerx.ist.psu.edu/api/citedby?doi=10.1.1.123.456"
| Parameter | Description | Example | |-----------|-------------|---------| | q | Search query | q=deep+learning | | start | Pagination offset | start=20 | | rows | Results per page | rows=50 | | sort | Sort field | citationCount desc | | year | Filter by year | year=2024 | | doi | CiteSeerX document ID | doi=10.1.1.123.456 |
json{ "response": { "numFound": 5200, "docs": [ { "id": "10.1.1.123.456", "title": "Graph Neural Networks: A Review", "authors": ["Zhou, Jie", "Cui, Ganqu"], "year": 2020, "abstract": "Graph neural networks have been widely applied...", "venue": "AI Open", "citationCount": 3500, "url": "https://citeseerx.ist.psu.edu/doc/10.1.1.123.456" } ] } }
pythonimport requests BASE_URL = "https://citeseerx.ist.psu.edu/api" def search_citeseerx(query: str, rows: int = 20, sort_by_citations: bool = False) -> list: """Search CiteSeerX computer science literature.""" params = { "q": query, "rows": rows, "start": 0, } if sort_by_citations: params["sort"] = "citationCount desc" resp = requests.get(f"{BASE_URL}/search", params=params, timeout=30) resp.raise_for_status() data = resp.json() results = [] for doc in data.get("response", {}).get("docs", []): results.append({ "id": doc.get("id"), "title": doc.get("title"), "authors": doc.get("authors", []), "year": doc.get("year"), "venue": doc.get("venue"), "citations": doc.get("citationCount", 0), "abstract": doc.get("abstract", "")[:300], "url": doc.get("url"), }) return results def get_citations(doc_id: str) -> list: """Get papers cited by a document.""" resp = requests.get( f"{BASE_URL}/citations", params={"doi": doc_id}, timeout=30, ) resp.raise_for_status() return resp.json().get("citations", []) def get_cited_by(doc_id: str) -> list: """Get papers that cite a document.""" resp = requests.get( f"{BASE_URL}/citedby", params={"doi": doc_id}, timeout=30, ) resp.raise_for_status() return resp.json().get("citedby", []) # Example: find most-cited CS papers on a topic papers = search_citeseerx("knowledge distillation", rows=10, sort_by_citations=True) for p in papers: print(f"[{p['year']}] {p['title']} (cited: {p['citations']})") # Example: citation chain analysis if papers: refs = get_citations(papers[0]["id"]) print(f"\nReferences of top paper ({len(refs)} citations):") for r in refs[:5]: print(f" -> {r.get('title', 'Unknown')}")
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-03 | fail→pass | 36,890 | 7,858 | -79% | 1 | 1 | 0% | 6,164 | 2,846 | -54% | 0 | 0 | — |
case-01 | fail→pass | 22,475 | 13,549 | -40% | 1 | 1 | 0% | 4,266 | 3,275 | -23% | 0 | 0 | — |
case-02 | fail→pass | 9,645 | 9,829 | +2% | 1 | 1 | 0% | 1,453 | 3,280 | +126% | 0 | 0 | — |
case-04 | fail→pass | 11,701 | 4,325 | -63% | 1 | 1 | 0% | 1,780 | 2,287 | +28% | 0 | 0 | — |
case-05 | fail→pass | 18,998 | 3,946 | -79% | 1 | 1 | 0% | 3,533 | 2,481 | -30% | 0 | 0 | — |
case-06 | fail→pass | 12,574 | 4,391 | -65% | 1 | 1 | 0% | 2,330 | 2,485 | +7% | 0 | 0 | — |
case-07 | pass→pass | 12,672 | 3,589 | -72% | 1 | 1 | 0% | 1,799 | 2,112 | +17% | 0 | 0 | — |
case-08 | fail→pass | 8,650 | 1,269 | -85% | 1 | 1 | 0% | 1,503 | 1,779 | +18% | 0 | 0 | — |
case-09 | pass→pass | 5,407 | 3,149 | -42% | 1 | 1 | 0% | 1,081 | 2,065 | +91% | 0 | 0 | — |
case-10 | fail→pass | 4,587 | 3,723 | -19% | 1 | 1 | 0% | 738 | 2,085 | +183% | 0 | 0 | — |
case-11 | pass→pass | 7,038 | 3,271 | -54% | 1 | 1 | 0% | 1,043 | 2,084 | +100% | 0 | 0 | — |
case-12 | fail→pass | 18,745 | 8,251 | -56% | 1 | 1 | 0% | 3,603 | 2,914 | -19% | 0 | 0 | — |
case-13 | fail→fail | 16,872 | 9,919 | -41% | 1 | 1 | 0% | 2,570 | 3,119 | +21% | 0 | 0 | — |
case-14 | pass→pass | 13,226 | 9,226 | -30% | 1 | 1 | 0% | 2,151 | 2,892 | +34% | 0 | 0 | — |
case-15 | fail→pass | 9,791 | 2,066 | -79% | 1 | 1 | 0% | 1,741 | 1,971 | +13% | 0 | 0 | — |
case-16 | pass→pass | 20,163 | 17,985 | -11% | 1 | 1 | 0% | 2,844 | 4,209 | +48% | 0 | 0 | — |
case-17 | pass→pass | 8,489 | 5,232 | -38% | 1 | 1 | 0% | 1,426 | 2,561 | +80% | 0 | 0 | — |
case-18 | fail→pass | 9,504 | 1,946 | -80% | 1 | 1 | 0% | 1,451 | 1,866 | +29% | 0 | 0 | — |
case-19 | pass→pass | 4,149 | 2,938 | -29% | 1 | 1 | 0% | 572 | 2,122 | +271% | 0 | 0 | — |
case-20 | pass→pass | 7,301 | 2,325 | -68% | 1 | 1 | 0% | 1,552 | 2,154 | +39% | 0 | 0 | — |
case-21 | pass→pass | 18,784 | 18,289 | -3% | 1 | 1 | 0% | 3,201 | 4,568 | +43% | 0 | 0 | — |
case-22 | fail→pass | 13,918 | 6,379 | -54% | 1 | 1 | 0% | 1,994 | 2,510 | +26% | 0 | 0 | — |
case-23 | pass→pass | 11,813 | 9,869 | -16% | 1 | 1 | 0% | 1,915 | 3,224 | +68% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 23 cases were attempted. The headline lift of +52 percentage points is the difference between those two pass rates over the 23 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.