Medical-research-skills quadas-c-assessment-for-diagnostic-accuracy-studies
Automated bias assessment for diagnostic accuracy studies using QUADAS-C criteria. Requires full text input.
install
source · Clone the upstream repo
git clone https://github.com/aipoch/medical-research-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aipoch/medical-research-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/scientific-skills/Data Analysis/quadas-c-assessment-for-diagnostic-accuracy-studies" ~/.claude/skills/aipoch-medical-research-skills-quadas-c-assessment-for-diagnostic-accuracy-studi && rm -rf "$T"
manifest:
scientific-skills/Data Analysis/quadas-c-assessment-for-diagnostic-accuracy-studies/SKILL.mdsource content
QUADAS-C Assessment Skill
This skill automates the risk of bias assessment for diagnostic accuracy studies comparing two or more index tests (QUADAS-C).
When to Use
- Use this skill when you need automated bias assessment for diagnostic accuracy studies using quadas-c criteria. requires full text input in a reproducible workflow.
- Use this skill when a data analytics task needs a packaged method instead of ad-hoc freeform output.
- Use this skill when the user expects a concrete deliverable, validation step, or file-based result.
- Use this skill when
is the most direct path to complete the request.scripts/extract_pdf.py - Use this skill when you need the
package behavior rather than a generic answer.quadas-c-assessment for diagnostic accuracy studies
Key Features
- Scope-focused workflow aligned to: Automated bias assessment for diagnostic accuracy studies using QUADAS-C criteria. Requires full text input.
- Packaged executable path(s):
plus 1 additional script(s).scripts/extract_pdf.py - Reference material available in
for task-specific guidance.references/ - Structured execution path designed to keep outputs consistent and reviewable.
Dependencies
:Python
. Repository baseline for current packaged skills.3.10+
:Third-party packages
. Add pinned versions if this skill needs stricter environment control.not explicitly version-pinned in this skill package
Example Usage
See
## Usage above for related details.
cd "20260316/scientific-skills/Data Analytics/quadas-c-assessment-for-diagnostic-accuracy-studies" python -m py_compile scripts/extract_pdf.py python scripts/extract_pdf.py --help
Example run plan:
- Confirm the user input, output path, and any required config values.
- Edit the in-file
block or documented parameters if the script uses fixed settings.CONFIG - Run
with the validated inputs.python scripts/extract_pdf.py - 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:
with additional helper scripts underscripts/extract_pdf.py
.scripts/ - Reference guidance:
contains supporting rules, prompts, or checklists.references/ - 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.
When to Use This Skill
Use this skill when:
- You have the full text of a clinical research paper.
- You need to assess the risk of bias using the QUADAS-C tool.
- The study compares at least two diagnostic methods.
Usage
The skill processes the paper through the following steps:
- Extraction: Identifies diagnostic methods compared in the study.
- Assessment: For each method, runs a QUADAS-2 assessment.
- Signaling Questions: Answers specific QUADAS-C signaling questions for 4 domains:
- Patient Selection
- Index Test
- Reference Standard
- Flow and Timing
- Risk of Bias: Determines "Low", "High", or "Unclear" risk for each domain.
- Reporting: Generates a structured JSON report.
Execution
To run the assessment, use the provided Python script. You can pass the paper text as a command-line argument or via a file.
# Example: Process a text file containing the paper python scripts/quadas_c.py --file "path/to/paper.txt"
Output Format
The output is a JSON object with the following structure:
{ "P": "Low/High/Unclear", "I": "Low/High/Unclear", "R": "Low/High/Unclear", "FT": "Low/High/Unclear" }
Reference
See
references/prompts.md for the specific signaling questions and risk of bias criteria used in the LLM prompts.
Helper Scripts
PDF Text Extraction
When the user provides a PDF file path, use
extract_pdf.py to extract the text content before assessment: