Skills irb-application-assistant
Assists researchers with Institutional Review Board (IRB) application tasks, including drafting informed consent documents, reviewing research protocols for compliance, generating application forms, and preparing submission checklists. Use when the user mentions IRB, Institutional Review Board, research ethics, human subjects research, protocol review, informed consent, or needs help preparing or reviewing an IRB application or submission.
git clone https://github.com/openclaw/skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/aipoch-ai/irb-application-assistant" ~/.claude/skills/openclaw-skills-irb-application-assistant && rm -rf "$T"
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/aipoch-ai/irb-application-assistant" ~/.openclaw/skills/openclaw-skills-irb-application-assistant && rm -rf "$T"
skills/aipoch-ai/irb-application-assistant/SKILL.mdIRB Application Assistant
Helps researchers prepare, review, and submit Institutional Review Board (IRB) applications. Supports drafting informed consent templates, checking protocol compliance, generating application documents, and guiding researchers through the submission workflow.
Quick Start
# Generate an informed consent template python scripts/main.py --task consent --protocol protocol.json --output consent_form.docx # Run a compliance check on a research protocol python scripts/main.py --task compliance-check --protocol protocol.json --verbose # Generate a full IRB application package python scripts/main.py --task generate-application --config study_config.json --output irb_package/
Core Capabilities
1. Generate Informed Consent Documents
Produces compliant informed consent forms based on study parameters such as participant population, risk level, and study type.
python scripts/main.py --task consent \ --protocol protocol.json \ --population "adults 18+" \ --risk-level minimal \ --output consent_form.docx
2. Protocol Compliance Review
Checks a research protocol against IRB requirements and flags missing or non-compliant sections.
python scripts/main.py --task compliance-check \ --protocol protocol.json \ --ruleset federal-common-rule \ --output compliance_report.txt
3. Application Form Generation
Generates completed IRB application forms (e.g., initial review, continuing review, amendment) from structured study data.
python scripts/main.py --task generate-application \ --form-type initial-review \ --config study_config.json \ --output irb_application.docx
4. Submission Checklist Validation
Validates that all required documents and fields are present before submission.
python scripts/main.py --task validate-submission \ --package irb_package/ \ --output validation_report.txt
Recommended Workflow
Follow these steps for a complete IRB submission:
- Prepare study configuration — Populate
with study title, PI details, participant population, risk level, and procedures.study_config.json - Run compliance check — Use
to identify gaps in the protocol before drafting documents.--task compliance-check- ⛔ Checkpoint: If the compliance report flags ANY errors, resolve ALL flagged items and re-run
before proceeding. Do not advance to step 3 with unresolved compliance errors.--task compliance-check
- ⛔ Checkpoint: If the compliance report flags ANY errors, resolve ALL flagged items and re-run
- Generate consent document — Use
to produce a compliant informed consent form tailored to the study.--task consent - Generate application forms — Use
to produce the required IRB submission forms.--task generate-application - Validate submission package — Use
to confirm all required documents are present and fields are complete.--task validate-submission- ⛔ Checkpoint: If validation fails, follow this loop: review errors in
→ fix each issue → re-runvalidation_report.txt
→ only proceed when the report shows zero blocking errors.--task validate-submission
- ⛔ Checkpoint: If validation fails, follow this loop: review errors in
- Review and submit — Manually review any remaining warnings in the compliance and validation reports before submitting to the IRB.
Quality Checklist
- Protocol includes all required sections (purpose, procedures, risks, benefits, confidentiality)
- Informed consent language is at appropriate reading level for participant population
- Risk level classification is justified and documented
- All required attachments (recruitment materials, surveys, data management plan) are included
- Compliance report reviewed and all flagged items resolved
- Submission package validated with zero blocking errors
References
— Detailed documentation and field descriptionsreferences/guide.md
— Sample protocols, consent forms, and completed applicationsreferences/examples/
Skill ID: 952 | Version: 1.0 | License: MIT