Simplifies informed consent documents into patient-friendly language while maintaining regulatory compliance. Readability assessment targeting 6th-8th grade level, risk/benefit clarification in table format, and FDA 21CFR50/ICH-GCP/HIPAA compliance validation.
52
60%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./scientific-skills/Other/patient-consent-simplifier/SKILL.mdTransform complex informed consent documents into patient-friendly language while maintaining regulatory compliance and ethical standards.
Use this command to verify that the packaged script entry point can be parsed before deeper execution.
python -m py_compile scripts/main.pyUse 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 --text "Audit validation sample with explicit methods, findings, and conclusion."from scripts.consent_simplifier import ConsentSimplifier
simplifier = ConsentSimplifier()
# Simplify consent form
simplified = simplifier.simplify(
document="clinical_trial_consent.pdf",
reading_level="8th_grade",
preserve_legal=True
)result = simplifier.simplify_section(
section="procedure_description",
text="Lumbar puncture will be performed under sterile conditions...",
max_sentences=3
)Simplification Rules:
risks = simplifier.clarify_risks(
original_text="Potential adverse events include...",
format="table",
severity_scale="emoji" # or "color", "text"
)Risk Presentation:
| Risk | Likelihood | Severity |
|---|---|---|
| Headache | Common (1 in 10) | Mild 😊 |
| Infection | Rare (1 in 1000) | Serious ⚠️ |
metrics = simplifier.assess_readability(document)
print(f"Current grade level: {metrics.grade_level}")
print(f"Suggested improvements: {metrics.suggestions}")Target Levels:
compliance = simplifier.check_compliance(
simplified_document,
regulations=["FDA_21CFR50", "ICH-GCP", "HIPAA"]
)Required Elements:
# Simplify PDF
python scripts/consent_simplifier.py \
--input consent_form.pdf \
--output simplified_consent.pdf \
--grade-level 8
# Check compliance only
python scripts/consent_simplifier.py \
--check compliance \
--input document.pdfDo:
Don't:
Skill ID: 208 | Version: 1.0 | License: MIT
Every final response should make these items explicit when they are relevant:
scripts/main.py fails, report the failure point, summarize what still can be completed safely, and provide a manual fallback.This skill accepts requests that match the documented purpose of patient-consent-simplifier and include enough context to complete the workflow safely.
Do not continue the workflow when the request is out of scope, missing a critical input, or would require unsupported assumptions. Instead respond:
patient-consent-simplifieronly handles its documented workflow. Please provide the missing required inputs or switch to a more suitable skill.
Use the following fixed structure for non-trivial requests:
If the request is simple, you may compress the structure, but still keep assumptions and limits explicit when they affect correctness.
63c61d3
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.