"I Am Safe" is an AI Agent created through the Microsoft 365 Copilot Studio Lite. It is an emergency guidance agent that helps citizens stay safe during wars, civil unrest, terroristic attacks, and floods. It provides immediate safety steps and verified hotline numbers for the USA, UK, Kenya, Libya, and globally.
# 🛡 I Am Safe — AI Emergency Guidance Agent
> *Calm. Clear. Immediate. Built for people in crisis.*
**I Am Safe** is an AI-powered emergency guidance agent built on **Microsoft Copilot Studio Lite**. It provides real-time, actionable safety advice and verified emergency hotline numbers to people caught in life-threatening situations: wars, floods, civil unrest, fires, terrorist attacks, and medical emergencies.
---
## Coverage
| Country | Languages | Status |
|---|---|---|
| 🇺🇸 United States | English | Active |
| 🇬🇧 United Kingdom | English | Active |
| 🇰🇪 Kenya | English, Swahili | Active |
| 🇱🇾 Libya | English, Arabic | Active |
| 🌍 Global fallback | English | Active |
**Planned expansion:** Sudan, Somalia, DRC, Bangladesh, Ukraine, Pakistan, the UAE, Qatar
---
## Emergency Scenarios
| # | Scenario | Protocol Used |
|---|---|---|
| 1 | War and armed conflict | ICRC civilian protection guidelines |
| 2 | Civil unrest and riots | International public safety standards |
| 3 | Floods and flash floods | FEMA / WHO emergency protocols |
| 4 | General SOS / fallback | Universal 112 routing |
| 5 | Fire and smoke emergencies | PASS technique / fire service standards |
| 6 | Medical emergency (EMT) | American Heart Association guidelines |
| 7 | First aid — CPR, choking, burns | AHA / Red Cross first aid standards |
| 8 | Terrorist attacks | Run-Hide-Tell (UK NaCTSO / US DHS) |
---
## Repository Structure
```
i-am-safe-agent/
├── README.md ← You are here
├── agent-config/
│ ├── system-instructions.md ← Full agent identity prompt
│ ├── suggested-prompts.md ← Starter prompts for the UI
│ └── knowledge-sources.md ← All knowledge URLs and files
├── topics/
│ ├── topic-01-war-conflict.md
│ ├── topic-02-civil-unrest.md
│ ├── topic-03-floods.md
│ ├── topic-04-general-sos.md
│ ├── topic-05-fire.md
│ ├── topic-06-emt-medical.md
│ ├── topic-07-first-aid.md
│ └── topic-08-terrorist-attack.md
├── h …