research-agent

Solid

Forschungspipeline fuer PubMed und arXiv. Schnellrecherche und strukturierte Literatur-Reviews mit reiner Python-Standardbibliothek.

AI & Automation 4 stars 0 forks Updated today MIT

Install

View on GitHub

Quality Score: 83/100

Stars 20%
23
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

<img src="banner.png" width="100%" alt="research-agent banner"> # Research Agent Modulare Forschungspipeline fuer wissenschaftliche Literaturrecherche. Nutzt ausschliesslich Python-Standardbibliothek (urllib, xml, json). ## Architektur ``` ResearchAgent (Orchestrator) sources/ Datenquellen (PubMed, arXiv) base.py Article/SearchResult Dataclasses, Source ABC pubmed.py NCBI E-utilities (esearch + efetch) arxiv.py arXiv Atom API workflows/ Recherche-Ablauefe quick_search.py Schnellrecherche ueber mehrere Quellen literature_review.py 4-Phasen Literatur-Review ``` ## Nutzung als Python-Library ```python from scripts.agent import ResearchAgent agent = ResearchAgent() # Schnellrecherche result = agent.search("machine learning diagnostics", max_results=10) print(result) # Strukturierter Literatur-Review plan = agent.create_review_plan("transformer architectures", years=3) print(plan.total_articles, "Artikel gefunden") # Ergebnis speichern agent.save_result(result, "recherche_ml.md", fmt="markdown") ``` ## Nutzung als CLI ```bash cd scripts python -m ResearchAgent search "quantum computing" --max 20 python -m ResearchAgent review "CRISPR gene editing" --years 5 ``` ## Datenquellen | Quelle | API | Rate-Limit | Zugang | |--------|-----|------------|--------| | PubMed | NCBI E-utilities | 3/s (ohne Key), 10/s (mit Key) | Frei | | arXiv | Atom REST API | Keine dokumentiert | Frei | Erweiterbar: Neue Quellen impl...

Details

Author
ellmos-ai
Repository
ellmos-ai/skills
Created
6 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

scraperapi-research-agent

Autonomous web research agent — takes a research question, uses ScraperAPI to discover and scrape relevant sources, uploads content as file artifacts to the Anthropic Files API, then feeds everything to Claude for synthesis into a cited research report. All in one flow. Use when user asks: "research X for me and give me a cited report", "investigate Y online and summarize what you find", "do a deep dive on Z using real web sources", "find information about X across multiple websites and cite your sources", "run the scraperapi research agent on this topic". Produces a structured markdown report with inline citations and a numbered source list. Invoke whenever the user wants multi-source web research that requires scraping real pages, not just answering from memory. Note: Transmits user-supplied queries, URLs, and content to ScraperAPI; uploads scraped content to the Anthropic Files API.

10 Updated 1 months ago
scraperapi
AI & Automation Listed

agent-reach

Use when the user wants to research a topic, find sources, or search a platform by name - web pages, YouTube, GitHub, RSS/Atom feeds, V2EX, or Exa semantic search. Also when the user shares a URL from one of those platforms and wants it read, summarized, or checked for related content. Routes each request to the right CLI or API (curl plus Jina Reader, yt-dlp, gh, feedparser, mcporter plus Exa, V2EX) so results come back as raw source material, not narrowed by one search engine. Pairs with deep-research: use agent-reach to gather from several platforms, then hand the material over for synthesis. NOT for: writing the final report, analysis, or translation (it only fetches and searches); posting, commenting, or any other write action; Bilibili, which is not supported at all; Twitter/X, Reddit, Facebook, Instagram, LinkedIn, XiaoHongShu, or Xueqiu unless cookies or a login session are already set up - confirm setup first.

1 Updated 1 months ago
M4NUSH7
AI & Automation Listed

bioresearch-literature-analysis

Run a reproducible biomedical literature review via the BioResearch Agent literature workflow (PubMed retrieval, entity co-occurrence knowledge graph, structured review outline). Use when the user asks for a literature review, research-gap analysis, or a synthesized reading of PubMed papers on a biomedical topic.

1 Updated 4 weeks ago
Alim430