Best for
- Finding scientific papers on a research topic.
- Retrieving citable evidence snippets for a scientific question.
- Screening papers by year, venue, DOI, author, title, or metadata fields.
LazyAGI/LazyMind/skills/search/sciverse-paper-search/SKILL.md
Use this skill for scientific literature search, evidence retrieval, paper metadata screening, and cited research synthesis with Sciverse. This LazyLLM-adapted version supports SciverseSearch search, meta_search, meta_catalog, and get_content only; it does not assume full Sciverse MCP resource or attachment APIs are available.
Decision brief
Use this skill for scientific literature search, evidence retrieval, paper metadata screening, and cited research synthesis with Sciverse. This LazyLLM-adapted version supports SciverseSearch search, meta_search, meta_catalog, and get_content only; it does not assume full Sciverse MCP resource or attachment APIs are available.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/LazyAGI/LazyMind --skill "skills/search/sciverse-paper-search"Inspect the Agent Skill "sciverse-paper-search" from https://github.com/LazyAGI/LazyMind/blob/b63cc44f8c68603bc9e802b56d8e243fef2481aa/skills/search/sciverse-paper-search/SKILL.md at commit b63cc44f8c68603bc9e802b56d8e243fef2481aa. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
Classify the user's request:
Classify the user's request:
For natural-language evidence questions:
For the most relevant results:
Separate confirmed full-text evidence from abstract/snippet-only evidence.
Permission review
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 91/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 55 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Use this skill when the user needs scientific literature retrieval, paper metadata screening, citation-ready evidence, or a research synthesis grounded in Sciverse search results.
This skill is adapted to the current LazyLLM SciverseSearch implementation. It must only rely on the currently supported tool capabilities:
sciverse_search.searchsciverse_search.meta_searchsciverse_search.meta_catalogsciverse_search.get_contentDo not assume Sciverse MCP tools, resource APIs, binary attachment downloads, figure/table downloads, DianShi, or SeqStudio capabilities are available unless the runtime explicitly exposes those tools.
Use this skill for:
doc_id is available.Do not use this skill for:
sciverse_search.searchUse this for normal Agent retrieval.
Recommended defaults:
query=<research question or paper topic>
topk=5
search_type="agentic"
include_content=true
Use search_type="agentic" when the user asks a natural-language scientific question and needs evidence passages.
Use search_type="meta" when the user mainly needs paper metadata. You may pass year_from and year_to for year constraints.
Current implementation notes:
topk is capped at 10.extra.extra may include doc_id, doi, year, venue, authors, score, chunk_id, page_no, offset, and content.sciverse_search.meta_searchUse this for advanced metadata search, filtering, pagination, and paper-list tasks.
Important constraints:
query together with sort.cursor together with page > 1.page_size is capped at 200.freshness_boost must be NONE, MILD, or STRONG.Useful parameters:
query
filters
sort
fields
page
page_size
cursor
freshness_boost
include_content
year_from
year_to
Use year_from and year_to for simple publication-year filtering.
sciverse_search.meta_catalogCall this before constructing complex filters or sort clauses if you are unsure which fields and operators are supported.
Use:
include_sample_values=false
Set include_sample_values=true only when enum-like sample values are needed.
sciverse_search.get_contentUse this to read fuller text for one search result.
The current implementation:
doc_id in the item or item.extra.doc_id./content with doc_id.offset and limit.extra.content, snippet, or URL fetching when /content is unavailable.Do not claim full text was read unless get_content actually returns fuller content. If the result only contains an abstract or snippet, say that the analysis is based on metadata/snippets.
Classify the user's request:
get_content on a selected result.For natural-language evidence questions:
sciverse_search.search(query="<question>", topk=5, search_type="agentic", include_content=true)
For paper screening:
sciverse_search.meta_search(
query="<topic>",
fields=["title", "doi", "doc_id", "abstract", "author", "publication_published_year", "publication_venue_name_unified"],
page_size=25,
year_from=<optional>,
year_to=<optional>
)
For precise filters:
sciverse_search.meta_catalog.meta_search.For the most relevant results:
get_content on selected items.offset and limit for chunked reading when needed.Example:
sciverse_search.get_content(item=<selected_result>, offset=0, limit=2000)
When answering:
Use a compact table:
| Paper | Year | Venue | Why relevant | DOI / doc_id |
Use:
Use:
get_content falls back to snippets, clearly label the source as snippet/abstract-based.Alternatives
event4u-app/agent-config
Use when the user says "review the design", "check the UI", or wants a comprehensive UI/UX review. Uses a 7-phase methodology covering interaction, responsiveness, accessibility, and more.
K-Dense-AI/scientific-agent-skills
Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.
K-Dense-AI/scientific-agent-skills
Use NeuroKit2 to build or audit reproducible research workflows for physiological time-series preprocessing, event/interval analysis, multimodal alignment, variability, and complexity. Trigger when code imports neurokit2 or needs its current APIs, schemas, and method-aware validation—not for diagnosis or device validation.
K-Dense-AI/scientific-agent-skills
Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.