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.
73
67%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Passed
No known issues
Optimize this skill with Tessl
npx tessl skill review --optimize ./scientific-skills/Academic Writing/irb-application-assistant/SKILL.mdHelps 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.
scripts/main.py.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 "20260318/scientific-skills/Academic Writing/irb-application-assistant"
python -m py_compile scripts/main.py
python scripts/main.py --helpExample 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.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# 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/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.docxChecks 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.txtGenerates 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.docxValidates that all required documents and fields are present before submission.
python scripts/main.py --task validate-submission \
--package irb_package/ \
--output validation_report.txtFollow these steps for a complete IRB submission:
study_config.json with study title, PI details, participant population, risk level, and procedures.--task compliance-check to identify gaps in the protocol before drafting documents.
--task compliance-check before proceeding. Do not advance to step 3 with unresolved compliance errors.--task consent to produce a compliant informed consent form tailored to the study.--task generate-application to produce the required IRB submission forms.--task validate-submission to confirm all required documents are present and fields are complete.
validation_report.txt → fix each issue → re-run --task validate-submission → only proceed when the report shows zero blocking errors.references/guide.md — Detailed documentation and field descriptionsreferences/examples/ — Sample protocols, consent forms, and completed applicationsSkill ID: 952 | 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 irb-application-assistant 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:
irb-application-assistantonly 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.
8277276
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.