Source: https://github.com/aipoch/medical-research-skills
When to Use
- Use this skill when the request matches its documented task boundary.
- Use it when the user can provide the required inputs and expects a structured deliverable.
- Prefer this skill for repeatable, checklist-driven execution rather than open-ended brainstorming.
Key Features
- Scope-focused workflow aligned to: 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).
- Packaged executable path(s):
scripts/fulltext_fetcher.py plus 1 additional script(s).
- Structured execution path designed to keep outputs consistent and reviewable.
Dependencies
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.
Example Usage
cd "20260316/scientific-skills/Others/fulltext-fetcher"
python -m py_compile scripts/fulltext_fetcher.py
python scripts/fulltext_fetcher.py --help
Example run plan:
- Confirm the user input, output path, and any required config values.
- Edit the in-file
CONFIG block or documented parameters if the script uses fixed settings.
- Run
python scripts/fulltext_fetcher.py with the validated inputs.
- Review the generated output and return the final artifact with any assumptions called out.
Implementation Details
- Execution model: validate the request, choose the packaged workflow, and produce a bounded deliverable.
- Input controls: confirm the source files, scope limits, output format, and acceptance criteria before running any script.
- Primary implementation surface:
scripts/fulltext_fetcher.py with additional helper scripts under scripts/.
- Parameters to clarify first: input path, output path, scope filters, thresholds, and any domain-specific constraints.
- Output discipline: keep results reproducible, identify assumptions explicitly, and avoid undocumented side effects.
Validation Shortcut
Run this minimal command first to verify the supported execution path:
python scripts/fulltext_fetcher.py --help
fulltext-fetcher
1. When to Use
- You need to archive the original HTML of a scientific literature webpage for later parsing, auditing, or offline review.
- You have a DOI and need to quickly resolve it to the landing page and save the resulting HTML.
- You have a PubMed PMID and need to fetch the PubMed record page HTML (or resolve onward) for extraction workflows.
- You need to batch fetch multiple public literature pages (URLs/DOIs/PMIDs) into a consistent output directory.
- You want a safer crawl mode that restricts requests to a whitelist unless explicitly overridden.
2. Key Features
- Accepts three input types: URL, DOI, and PubMed PMID.
- Writes one
.html file per input and preserves the original HTML.
- Supports multiple repeated inputs (e.g., multiple
--url / --doi / --pmid flags).
- Default domain whitelist for safer operation; optional override via
--allow-all.
- Built-in timeout and retry behavior to reduce long blocking on network issues.
3. Dependencies
- Python 3.x
- Python Standard Library only (no third-party packages)
4. Example Usage
The following commands are intended to be runnable as-is from the repository root.
Fetch a single URL
python scripts/fulltext_fetcher.py --url "https://example.org/page"
Fetch by DOI
python scripts/fulltext_fetcher.py --doi "10.1038/s41586-020-2649-2"
Fetch by PubMed PMID
python scripts/fulltext_fetcher.py --pmid "23273568"
Batch fetch and customize output directory
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"
Allow crawling non-whitelisted public domains (explicit opt-in)
python scripts/fulltext_fetcher.py \
--doi "10.1038/s41586-020-2649-2" \
--allow-all
5. Implementation Details
Inputs
--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.
Output
- Produces one HTML file per input.
- Default output directory:
outputs/
- Output directory can be changed with:
Domain access control
- Default allowed domains:
doi.org
pubmed.ncbi.nlm.nih.gov
ncbi.nlm.nih.gov
- To fetch from other public domains, you must explicitly enable:
Network behavior
- Uses timeout and retry logic to avoid long-running hangs and to improve robustness against transient network failures.
- Only targets publicly accessible webpages; it is not intended for restricted or authenticated content.
Verification checklist
- After running, confirm:
- The output directory exists.
- Generated
.html files exist and are non-empty.
- For parallel/coexistence runs, ensure output paths do not collide (use distinct
--out-dir values if needed).
When Not to Use
- Do not use this skill when the required source data, identifiers, files, or credentials are missing.
- Do not use this skill when the user asks for fabricated results, unsupported claims, or out-of-scope conclusions.
- Do not use this skill when a simpler direct answer is more appropriate than the documented workflow.
Required Inputs
- A clearly specified task goal aligned with the documented scope.
- All required files, identifiers, parameters, or environment variables before execution.
- Any domain constraints, formatting requirements, and expected output destination if applicable.
Recommended Workflow
- Validate the request against the skill boundary and confirm all required inputs are present.
- Select the documented execution path and prefer the simplest supported command or procedure.
- Produce the expected output using the documented file format, schema, or narrative structure.
- Run a final validation pass for completeness, consistency, and safety before returning the result.
Output Contract
- Return a structured deliverable that is directly usable without reformatting.
- If a file is produced, prefer a deterministic output name such as
fulltext_fetcher_result.md unless the skill documentation defines a better convention.
- Include a short validation summary describing what was checked, what assumptions were made, and any remaining limitations.
Validation and Safety Rules
- Validate required inputs before execution and stop early when mandatory fields or files are missing.
- Do not fabricate measurements, references, findings, or conclusions that are not supported by the provided source material.
- Emit a clear warning when credentials, privacy constraints, safety boundaries, or unsupported requests affect the result.
- Keep the output safe, reproducible, and within the documented scope at all times.
Failure Handling
- If validation fails, explain the exact missing field, file, or parameter and show the minimum fix required.
- If an external dependency or script fails, surface the command path, likely cause, and the next recovery step.
- If partial output is returned, label it clearly and identify which checks could not be completed.
Quick Validation
Run this minimal verification path before full execution when possible:
python scripts/fulltext_fetcher.py --help
Expected output format:
Result file: fulltext_fetcher_result.md
Validation summary: PASS/FAIL with brief notes
Assumptions: explicit list if any
Deterministic Output Rules
- Use the same section order for every supported request of this skill.
- Keep output field names stable and do not rename documented keys across examples.
- If a value is unavailable, emit an explicit placeholder instead of omitting the field.
Completion Checklist
- Confirm all required inputs were present and valid.
- Confirm the supported execution path completed without unresolved errors.
- Confirm the final deliverable matches the documented format exactly.
- Confirm assumptions, limitations, and warnings are surfaced explicitly.
1---2name: fulltext-fetcher3description: 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).4license: MIT5---6> **Source**: [https://github.com/aipoch/medical-research-skills](https://github.com/aipoch/medical-research-skills)
7
8## When to Use
9
10- Use this skill when the request matches its documented task boundary.
11- Use it when the user can provide the required inputs and expects a structured deliverable.
12- Prefer this skill for repeatable, checklist-driven execution rather than open-ended brainstorming.
13
14## Key Features
15
16- Scope-focused workflow aligned to: 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).
17- Packaged executable path(s): `scripts/fulltext_fetcher.py` plus 1 additional script(s).
18- Structured execution path designed to keep outputs consistent and reviewable.
19
20## Dependencies
21
22- `Python`: `3.10+`. Repository baseline for current packaged skills.
23- `Third-party packages`: `not explicitly version-pinned in this skill package`. Add pinned versions if this skill needs stricter environment control.
24
25## Example Usage
26
27```bash
28cd "20260316/scientific-skills/Others/fulltext-fetcher"
29python -m py_compile scripts/fulltext_fetcher.py
30python scripts/fulltext_fetcher.py --help
31```
32
33Example run plan:
341. Confirm the user input, output path, and any required config values.
352. Edit the in-file `CONFIG` block or documented parameters if the script uses fixed settings.
363. Run `python scripts/fulltext_fetcher.py` with the validated inputs.
374. Review the generated output and return the final artifact with any assumptions called out.
38
39## Implementation Details
40
41- Execution model: validate the request, choose the packaged workflow, and produce a bounded deliverable.
42- Input controls: confirm the source files, scope limits, output format, and acceptance criteria before running any script.
43- Primary implementation surface: `scripts/fulltext_fetcher.py` with additional helper scripts under `scripts/`.
44- Parameters to clarify first: input path, output path, scope filters, thresholds, and any domain-specific constraints.
45- Output discipline: keep results reproducible, identify assumptions explicitly, and avoid undocumented side effects.
46
47## Validation Shortcut
48
49Run this minimal command first to verify the supported execution path:
50
51```bash
52python scripts/fulltext_fetcher.py --help
53```
54
55# fulltext-fetcher
56
57## 1. When to Use
58- You need to archive the **original HTML** of a scientific literature webpage for later parsing, auditing, or offline review.
59- You have a **DOI** and need to quickly resolve it to the landing page and save the resulting HTML.
60- You have a **PubMed PMID** and need to fetch the PubMed record page HTML (or resolve onward) for extraction workflows.
61- You need to **batch fetch** multiple public literature pages (URLs/DOIs/PMIDs) into a consistent output directory.
62- You want a safer crawl mode that **restricts requests to a whitelist** unless explicitly overridden.
63
64## 2. Key Features
65- Accepts three input types: **URL**, **DOI**, and **PubMed PMID**.
66- Writes **one `.html` file per input** and preserves the **original HTML**.
67- Supports **multiple repeated inputs** (e.g., multiple `--url` / `--doi` / `--pmid` flags).
68- Default **domain whitelist** for safer operation; optional override via `--allow-all`.
69- Built-in **timeout and retry** behavior to reduce long blocking on network issues.
70
71## 3. Dependencies
72- Python **3.x**
73- Python Standard Library only (no third-party packages)
74
75## 4. Example Usage
76> The following commands are intended to be runnable as-is from the repository root.
77
78### Fetch a single URL
79```bash
80python scripts/fulltext_fetcher.py --url "https://example.org/page"
81```
82
83### Fetch by DOI
84```bash
85python scripts/fulltext_fetcher.py --doi "10.1038/s41586-020-2649-2"
86```
87
88### Fetch by PubMed PMID
89```bash
90python scripts/fulltext_fetcher.py --pmid "23273568"
91```
92
93### Batch fetch and customize output directory
94```bash
95python scripts/fulltext_fetcher.py \
96 --url "https://example.org/page1" \
97 --url "https://example.org/page2" \
98 --doi "10.1038/s41586-020-2649-2" \
99 --pmid "23273568" \
100 --out-dir "outputs"
101```
102
103### Allow crawling non-whitelisted public domains (explicit opt-in)
104```bash
105python scripts/fulltext_fetcher.py \
106 --doi "10.1038/s41586-020-2649-2" \
107 --allow-all
108```
109
110## 5. Implementation Details
111
112### Inputs
113- `--url` (repeatable): Direct webpage URL(s) to fetch.
114- `--doi` (repeatable): DOI(s) to resolve (typically via `doi.org`) and fetch.
115- `--pmid` (repeatable): PubMed PMID(s) to fetch (typically via `pubmed.ncbi.nlm.nih.gov` / `ncbi.nlm.nih.gov`).
116
117At least one of `--url`, `--doi`, or `--pmid` must be provided.
118
119### Output
120- Produces **one HTML file per input**.
121- Default output directory: `outputs/`
122- Output directory can be changed with:
123 - `--out-dir <path>`
124
125### Domain access control
126- Default allowed domains:
127 - `doi.org`
128 - `pubmed.ncbi.nlm.nih.gov`
129 - `ncbi.nlm.nih.gov`
130- To fetch from other public domains, you must explicitly enable:
131 - `--allow-all`
132
133### Network behavior
134- Uses timeout and retry logic to avoid long-running hangs and to improve robustness against transient network failures.
135- Only targets **publicly accessible** webpages; it is not intended for restricted or authenticated content.
136
137### Verification checklist
138- After running, confirm:
139 - The output directory exists.
140 - Generated `.html` files exist and are **non-empty**.
141- For parallel/coexistence runs, ensure output paths do not collide (use distinct `--out-dir` values if needed).
142
143## When Not to Use
144
145- Do not use this skill when the required source data, identifiers, files, or credentials are missing.
146- Do not use this skill when the user asks for fabricated results, unsupported claims, or out-of-scope conclusions.
147- Do not use this skill when a simpler direct answer is more appropriate than the documented workflow.
148
149## Required Inputs
150
151- A clearly specified task goal aligned with the documented scope.
152- All required files, identifiers, parameters, or environment variables before execution.
153- Any domain constraints, formatting requirements, and expected output destination if applicable.
154
155## Recommended Workflow
156
1571. Validate the request against the skill boundary and confirm all required inputs are present.
1582. Select the documented execution path and prefer the simplest supported command or procedure.
1593. Produce the expected output using the documented file format, schema, or narrative structure.
1604. Run a final validation pass for completeness, consistency, and safety before returning the result.
161
162## Output Contract
163
164- Return a structured deliverable that is directly usable without reformatting.
165- If a file is produced, prefer a deterministic output name such as `fulltext_fetcher_result.md` unless the skill documentation defines a better convention.
166- Include a short validation summary describing what was checked, what assumptions were made, and any remaining limitations.
167
168## Validation and Safety Rules
169
170- Validate required inputs before execution and stop early when mandatory fields or files are missing.
171- Do not fabricate measurements, references, findings, or conclusions that are not supported by the provided source material.
172- Emit a clear warning when credentials, privacy constraints, safety boundaries, or unsupported requests affect the result.
173- Keep the output safe, reproducible, and within the documented scope at all times.
174
175## Failure Handling
176
177- If validation fails, explain the exact missing field, file, or parameter and show the minimum fix required.
178- If an external dependency or script fails, surface the command path, likely cause, and the next recovery step.
179- If partial output is returned, label it clearly and identify which checks could not be completed.
180
181## Quick Validation
182
183Run this minimal verification path before full execution when possible:
184
185```bash
186python scripts/fulltext_fetcher.py --help
187```
188
189Expected output format:
190
191```text
192Result file: fulltext_fetcher_result.md
193Validation summary: PASS/FAIL with brief notes
194Assumptions: explicit list if any
195```
196
197## Deterministic Output Rules
198
199- Use the same section order for every supported request of this skill.
200- Keep output field names stable and do not rename documented keys across examples.
201- If a value is unavailable, emit an explicit placeholder instead of omitting the field.
202
203## Completion Checklist
204
205- Confirm all required inputs were present and valid.
206- Confirm the supported execution path completed without unresolved errors.
207- Confirm the final deliverable matches the documented format exactly.
208- Confirm assumptions, limitations, and warnings are surfaced explicitly.