Install
openclaw skills install iacuc-protocol-drafterDraft IACUC protocol applications with focus on the 3Rs principles justification
openclaw skills install iacuc-protocol-drafterID: 105
Name: IACUC Protocol Drafter
Description: Draft Institutional Animal Care and Use Committee (IACUC) protocol applications, especially the justification section for the "3Rs principles" (Replacement, Reduction, Refinement).
# Generate local file
python skills/iacuc-protocol-drafter/scripts/main.py --input protocol_input.json --output iacuc_protocol.txt
# Use stdin/stdout
cat protocol_input.json | python skills/iacuc-protocol-drafter/scripts/main.py
| Parameter | Type | Default | Required | Description |
|---|---|---|---|---|
--input, -i | string | - | Yes | Path to input JSON file with protocol details |
--output, -o | string | stdout | No | Output file path for generated protocol |
--template | string | standard | No | Template type (standard, minimal, detailed) |
--format | string | text | No | Output format (text, markdown, docx) |
{
"title": "Experiment Title",
"principal_investigator": "Principal Investigator Name",
"institution": "Research Institution Name",
"species": "Experimental Animal Species",
"number_of_animals": 50,
"procedure_description": "Brief description of experimental procedures",
"pain_category": "B",
"justification": {
"replacement": {
"alternatives_considered": ["In vitro experiments", "Computer simulation"],
"why_animals_needed": "Reasons why animals must be used"
},
"reduction": {
"sample_size_calculation": "Sample size calculation method and rationale",
"minimization_strategies": "Strategies to minimize animal numbers"
},
"refinement": {
"pain_management": "Pain management measures",
"housing_enrichment": "Housing environment optimization",
"humane_endpoints": "Humane endpoint setting"
}
}
}
Generate IACUC-standard application text, including a complete 3Rs principles justification section.
Built-in standard templates cover:
| Risk Indicator | Assessment | Level |
|---|---|---|
| Code Execution | Python/R scripts executed locally | Medium |
| Network Access | No external API calls | Low |
| File System Access | Read input files, write output files | Medium |
| Instruction Tampering | Standard prompt guidelines | Low |
| Data Exposure | Output files saved to workspace | Low |
No additional Python packages required.