Search, retrieve metadata, and download PDFs for bioRxiv preprints; use when you need to discover biology preprints by keywords/authors/date ranges and programmatically fetch their details.
64
77%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Fix and improve this skill with Tessl
tessl review fix ./scientific-skills/Evidence Insight/biorxiv-database/SKILL.mdBioRxivSearcher.requests>=2.25.0pip install requestsfrom scripts.biorxiv_search import BioRxivSearcher
def main():
searcher = BioRxivSearcher()
# 1) Search for papers (e.g., "CRISPR" in the last 30 days)
papers = searcher.search_by_keywords(["CRISPR"], days_back=30)
print(f"Found {len(papers)} papers")
# 2) Print basic metadata and download the first PDF (if available)
if papers:
first = papers[0]
print("First result:")
print(f" Title: {first.get('title')}")
print(f" DOI: {first.get('doi')}")
print(f" Authors: {first.get('authors')}")
out_path = "paper.pdf"
print(f"Downloading PDF to: {out_path}")
searcher.download_pdf(first["doi"], out_path)
if __name__ == "__main__":
main()python scripts/biorxiv_search.py "CRISPR" 30BioRxivSearcher in scripts/biorxiv_search.py.keywords: list of strings used to match relevant preprints.days_back: integer lookback window; the search is constrained to items within the last days_back days.title, abstract, doi, and authors (exact keys depend on the API response mapping).references/api_reference.md for endpoint/field details and response formats.biorxiv_database_result.md unless the skill documentation defines a better convention.Run this minimal verification path before full execution when possible:
python scripts/biorxiv_search.py --helpExpected output format:
Result file: biorxiv_database_result.md
Validation summary: PASS/FAIL with brief notes
Assumptions: explicit list if any63c61d3
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.