Install
$ agentstack add skill-yogsoth-ai-literature-engine-literature-overview ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Literature Overview SOP
Layer Rules
- Layer: sop — wraps MCP tools directly
- Called by: Any tactic or strategy requiring a quick literature landscape scan
- Calls: alphaxiv MCP tools, semantic-scholar MCP tools (never calls other SOPs)
Purpose
Fast landscape scan. Understand what papers exist on a topic, who the key authors are, and rough citation counts. No full-text reading. This skill is for orientation — getting a bird's-eye view before committing to deeper reading.
Use this when you need to:
- Quickly assess how much literature exists on a topic
- Identify key papers and authors in a field
- Get citation counts to gauge paper impact
- Decide which papers deserve deeper reading (via literature-search or literature-research)
Tools
| Tool | Purpose | Returns | |------|---------|---------| | alphaxiv.discover_papers | Semantic search for arXiv papers | Ranked paper list with title, abstract snippet, arXiv ID | | ss.relevanceSearch | Keyword search across all venues | Title, abstract, authors, year, citationCount, paperId |
Tool Roles
- alphaxiv.discover_papers = primary search for arXiv-covered fields (CS, math, physics, stats, EE, quant-bio/finance)
- ss.relevanceSearch = supplementary search for non-arXiv papers (biomedical, clinical, social science, humanities)
HARD-GATE
This skill returns abstracts and metadata ONLY.
Do NOT draw conclusions about:
- Methodology details
- Experimental results
- Specific contributions or findings
- Comparative analysis between papers
Abstracts are for ORIENTATION — identifying what exists and what looks promising.
For any substantive analysis, escalate to:
literature-search— read AI-summarized reports (medium depth)literature-research— read raw full text (deep)
Treating abstracts as sufficient for research conclusions is PROHIBITED.
Workflow
Step 1: Search arXiv via alphaxiv
alphaxiv.discover_papers(
keywords: ["keyword1", "keyword2", "keyword3"],
question: "Detailed semantic description of desired papers",
difficulty: 3
)
Parameters:
keywords: 3-4 concise terms (method names, acronyms, authors)question: Detailed description of what papers you're looking fordifficulty: 1-10 (use 3 for overview, higher = more retrieval effort)
Step 2: Supplement with semantic-scholar
ss.relevanceSearch(
query: "search terms",
limit: 20,
year: "2022-2024",
fields_of_study: "Computer Science"
)
Parameters:
query: keyword search stringlimit: max results (default 10, max 100)year: year range filter (e.g., "2023-2024", "2020-")fields_of_study: field filter (optional)min_citation_count: citation threshold (optional)open_access_only: boolean (optional)
Step 3: Merge and Deduplicate
- Combine results from both sources
- Deduplicate by title similarity or matching arXiv IDs
- Sort by citation count (descending) as default ranking
Step 4: Return Structured Results
For each paper, present:
- Title
- Authors (first author + et al. for brevity)
- Year
- Citation Count (from ss if available)
- Abstract Snippet (first 2-3 sentences)
- Source (alphaxiv / semantic-scholar / both)
Tool-Specific Notes
alphaxiv.discover_papers
- Covers: computer science, mathematics, physics, statistics, quantitative biology/finance, electrical engineering
- Does NOT cover: biomedical, clinical, life science (PubMed, Cell, Nature)
- Returns: paper ID, title, authors, publication date, abstract snippet
difficultyparameter: 1-3 for quick scans, 5-7 for thorough discovery, 8-10 for exhaustive
ss.relevanceSearch
- Covers: all academic venues (broader than arXiv)
- Returns: title, abstract, authors, year, citationCount, paperId, externalIds
- ID formats in results: S2 ID, arXiv ID, DOI, PMID
- Rate limit: 1 req/s without API key, 100 req/s with SSAPIKEY
Example
Quick scan: "graph neural networks for drug discovery"
# Step 1: arXiv search
alphaxiv.discover_papers(
keywords: ["GNN", "drug discovery", "molecular"],
question: "Papers applying graph neural networks to drug discovery and molecular property prediction",
difficulty: 3
)
# Step 2: Supplement
ss.relevanceSearch(
query: "graph neural network drug discovery",
limit: 15,
year: "2022-2024",
min_citation_count: 50
)
# Step 3-4: Merge, deduplicate, return sorted list
Expected output: A list of 15-30 papers with titles, authors, years, and citation counts — enough to understand the landscape and pick papers for deeper reading.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: yogsoth-ai
- Source: yogsoth-ai/literature-engine
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.