Fetch and save the original HTML of scientific literature webpages when given a URL, DOI, or PubMed PMID (triggered when you need archival-grade page HTML for downstream parsing or review).
64
76%
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/Other/fulltext-fetcher/SKILL.mdscripts/fulltext_fetcher.py plus 1 additional script(s).Python: 3.10+. Repository baseline for current packaged skills.Third-party packages: not explicitly version-pinned in this skill package. Add pinned versions if this skill needs stricter environment control.cd "20260316/scientific-skills/Others/fulltext-fetcher"
python -m py_compile scripts/fulltext_fetcher.py
python scripts/fulltext_fetcher.py --helpExample run plan:
CONFIG block or documented parameters if the script uses fixed settings.python scripts/fulltext_fetcher.py with the validated inputs.scripts/fulltext_fetcher.py with additional helper scripts under scripts/.Run this minimal command first to verify the supported execution path:
python scripts/fulltext_fetcher.py --help.html file per input and preserves the original HTML.--url / --doi / --pmid flags).--allow-all.The following commands are intended to be runnable as-is from the repository root.
python scripts/fulltext_fetcher.py --url "https://example.org/page"python scripts/fulltext_fetcher.py --doi "10.1038/s41586-020-2649-2"python scripts/fulltext_fetcher.py --pmid "23273568"python scripts/fulltext_fetcher.py \
--url "https://example.org/page1" \
--url "https://example.org/page2" \
--doi "10.1038/s41586-020-2649-2" \
--pmid "23273568" \
--out-dir "outputs"python scripts/fulltext_fetcher.py \
--doi "10.1038/s41586-020-2649-2" \
--allow-all--url (repeatable): Direct webpage URL(s) to fetch.--doi (repeatable): DOI(s) to resolve (typically via doi.org) and fetch.--pmid (repeatable): PubMed PMID(s) to fetch (typically via pubmed.ncbi.nlm.nih.gov / ncbi.nlm.nih.gov).At least one of --url, --doi, or --pmid must be provided.
outputs/--out-dir <path>doi.orgpubmed.ncbi.nlm.nih.govncbi.nlm.nih.gov--allow-all.html files exist and are non-empty.--out-dir values if needed).fulltext_fetcher_result.md unless the skill documentation defines a better convention.Run this minimal verification path before full execution when possible:
python scripts/fulltext_fetcher.py --helpExpected output format:
Result file: fulltext_fetcher_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.