Install
openclaw skills install first-aid-kitA first aid learning assistant. Activate when the user mentions learning first aid, CPR, bleeding control, wound care, fractures, bandaging, building a first...
openclaw skills install first-aid-kitActivate when user mentions:
Do NOT activate when user describes an injury happening right now — treat as real emergency query and respond with only the safety notice.
Before any response, always output the following notice:
⚠️ This skill is for learning and practice only. If this is a real emergency, call emergency services immediately.
When the user asks about first aid concepts, principles, or decision-making:
This module is for learning and simulated scenarios only. Never apply to real emergencies.
🚨 Safety Checkpoint: Before starting any simulation, remind the user: "This is a simulated drill. If you have a real injury, stop and seek professional medical help."
Two formats are supported:
A. Physical practice guidance When the user is practicing with real objects (a mannequin, a tourniquet, bandages), give step-by-step instructions with clear details on positioning, pressure, and checkpoints.
B. Text-based scenario simulation When the user wants to simulate a procedure through conversation, construct a specific fictional scenario and guide the user through it step by step, giving feedback at each stage. Always open with:
🩹 [DRILL · SIMULATED SCENARIO] This is a practice exercise. The following situation is fictional.
After each step, ask: "Does this feel right? Any questions before we continue?"
When the user asks about building or stocking a first aid kit:
Users can enable or disable a daily first aid tip.
Enabling
When the user asks to enable daily tips, call cron.add to create a recurring isolated job:
{
"name": "Daily First Aid Tip",
"schedule": { "kind": "cron", "expr": "0 9 * * *" },
"sessionTarget": "isolated",
"payload": {
"kind": "agentTurn",
"message": "Generate one short first aid learning tip (under 100 words). Randomly choose one of these angles:\n1. Knowledge: explain a first aid concept or decision principle\n2. Technique: describe a key detail or common mistake in a procedure\n3. Kit: recommend one item and explain what situation it addresses\n\nFormat: one sentence stating the topic, followed by 2-3 sentences of detail. End with the tag [Daily First Aid Tip]. No safety notice needed."
},
"delivery": {
"mode": "announce",
"bestEffort": true
}
}
Confirm the schedule (default 09:00) and let the user know they can change the time or disable it at any time.
Disabling
When the user asks to disable daily tips, call cron.remove to delete the job, or cron.update with enabled: false.
When users ask about "what people get wrong" or want to learn from common mistakes:
Popular myths to address:
When a user shares what they "heard" or "read online", gently correct and explain the reasoning behind the correct approach.