Determines the appropriate Risk of Bias assessment scale for a medical study based on its design (RCT, Cohort, etc.), using PubMed metadata lookup or text analysis. Use when the user wants to know which quality assessment tool to use for a specific paper (given PMID or abstract).
58
67%
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/Data Analysis/study-design-scale-selector/SKILL.mdThis skill helps identify the study design of a medical paper and selects the appropriate risk of bias assessment scale.
scripts/extract_pdf.py plus 1 additional script(s).references/ for task-specific guidance.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/Data Analytics/study-design-scale-selector"
python -m py_compile scripts/extract_pdf.py
python scripts/extract_pdf.py --helpExample run plan:
CONFIG block or documented parameters if the script uses fixed settings.python scripts/extract_pdf.py with the validated inputs.See ## Workflow above for related details.
scripts/extract_pdf.py with additional helper scripts under scripts/.references/ contains supporting rules, prompts, or checklists.If the user provides a PMID, use the selector.py script to fetch study metadata from PubMed.
python scripts/selector.py "<PMID>"If the script returns a non-empty JSON with study_design:
study_design.If the script returns empty JSON {} or fails:
If metadata is unavailable or no PMID is provided, analyze the Title and Abstract provided by the user.
Action: Identify the study design from the text. Look for keywords like:
Using the identified study_design, consult scale_rules.md to select the correct assessment scale.
Present the result in the following JSON format:
{
"study_design": "<Identified Design>",
"scale": "<Selected Scale>"
}When the user provides a PDF file path, use extract_pdf.py to extract the text content before assessment:
study_design_scale_selector_result.md unless the skill documentation defines a better convention.Run this minimal verification path before full execution when possible:
python scripts/extract_pdf.py --helpExpected output format:
Result file: study_design_scale_selector_result.md
Validation summary: PASS/FAIL with brief notes
Assumptions: explicit list if anyf5ef65b
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.