Automated abstract screening tool for systematic literature reviews with PRISMA workflow support.
Automated abstract screening tool for systematic literature reviews with PRISMA workflow support.
See ## Features above for related details.
scripts/main.py.references/ for task-specific guidance.See above for related details.
## PrerequisitesPython: 3.10+. Repository baseline for current packaged skills.dataclasses: unspecified. Declared in requirements.txt.yaml: unspecified. Declared in requirements.txt.See ## Usage above for related details.
cd "20260318/scientific-skills/Evidence Insight/systematic-review-screener"
python -m py_compile scripts/main.py
python scripts/main.py --help
Example run plan:
CONFIG block or documented parameters if the script uses fixed settings.python scripts/main.py with the validated inputs.See ## Workflow above for related details.
scripts/main.py.references/ contains supporting rules, prompts, or checklists.Use this command to verify that the packaged script entry point can be parsed before deeper execution.
python -m py_compile scripts/main.py
Use these concrete commands for validation. They are intentionally self-contained and avoid placeholder paths.
python -m py_compile scripts/main.py
python scripts/main.py --help
python scripts/main.py -h
python scripts/main.py --help
This skill screens academic abstracts against predefined inclusion/exclusion criteria, generating PRISMA-compliant outputs with decision rationale and confidence scores.
Technical Difficulty: High ⚠️ Manual verification recommended for final inclusion decisions.
# Run with default settings
python scripts/main.py --input references.csv --criteria criteria.yaml
python scripts/main.py --input references.xml --criteria criteria.yaml \
--output results/ --prisma --format excel
python scripts/main.py --input refs.txt --criteria criteria.yaml \
--threshold 0.8 --conflict-only
Required columns: title, abstract (optional: authors, year, doi, pmid)
title,abstract,authors,year
title,abstract,authors,year
Standard .txt export from PubMed search.
Export from EndNote with abstracts included.
See references/criteria_template.yaml for complete example:
study_type:
include:
- "randomized controlled trial"
- "systematic review"
exclude:
- "case report"
- "letter"
- "editorial"