Automate gathering of patient medical histories. Use this skill when creating patient intake forms, anamnesis, or collecting medical history. Triggers: patient intake, anamnese, formulário de paciente, histórico médico, medical history, new patient form, patient registration.
This skill is designed to streamline and standardize the collection of patient information by generating and processing comprehensive medical history forms. It helps healthcare professionals gather detailed data from patients in a structured format, covering everything from personal details and chief complaints to past medical history, family history, social history, and review of systems. By automating this process, the skill reduces administrative workload, minimizes errors, and ensures that clinicians have a complete and accurate patient profile before the first consultation.
ALWAYS activate this skill when user mentions:
This skill is particularly useful in the following scenarios:
The skill can generate customized intake forms based on the specific needs of the clinic or the patient's presenting complaint. You can specify which sections to include or exclude.
Example: Generating a form for a new patient with a musculoskeletal issue.
# This is a conceptual example of how a tool could use this skill
manus --skill patient-intake --action generate-form --type new-patient --specialty orthopedics
The forms can be generated in multiple languages to accommodate a diverse patient population. The default language is English, but you can specify others as needed.
After the patient completes the form, the skill processes the information and organizes it into a structured format (e.g., JSON or a formatted Markdown file). This makes it easy to integrate with Electronic Health Record (EHR) systems.
Example of a JSON output:
{
"patient_details": {
"full_name": "John Doe",
"dob": "1985-04-12",
"gender": "Male"
},
"chief_complaint": "Chronic lower back pain for the last 6 months.",
"history_of_present_illness": {
"onset": "6 months ago",
"location": "Lower back, radiating to the left leg",
"duration": "Constant, with intermittent sharp pains",
"character": "Dull ache with episodes of sharp, shooting pain",
"aggravating_factors": ["Sitting for long periods", "Lifting heavy objects"],
"relieving_factors": ["Stretching", "Lying down"],
"timing": "Worse in the morning and after a long day of work",
"severity": "7/10"
},
"past_medical_history": [
{
"condition": "Hypertension",
"diagnosed_year": 2018
},
{
"condition": "Appendectomy",
"surgery_year": 2005
}
]
}
The skill includes several pre-built templates for different types of intake forms. These can be used as-is or customized.
full_intake.md: A comprehensive form for new patients.follow_up.md: A shorter form for returning patients.pain_management.md: A specialized form for patients with chronic pain.mental_health.md: A form focused on psychological and emotional well-being.Select or Create a Form Template:
ls /skills/patient-intake/templates
Customize the Form (Optional):
Generate the Patient-Facing Form:
Patient Completes the Form:
Process the Submitted Data:
Review and Integrate:
notifications skill to send reminders to patients to fill out the form, or a data-visualization skill to create summaries of the patient's history.This example shows the content of a full_intake.md template.
# New Patient Intake Form
## Personal Information
- Full Name:
- Date of Birth:
- Gender:
- Address:
- Phone Number:
- Email Address:
- Emergency Contact Name & Phone:
## Chief Complaint
What is the main reason for your visit today?
## History of Present Illness
- When did the problem start?
- What were you doing when it started?
- Where is the problem located?
- Does the pain radiate to other areas?
- How long do the symptoms last?
- What does the pain feel like (e.g., sharp, dull, aching, burning)?
- What makes it better?
- What makes it worse?
- How severe is the pain on a scale of 1-10?
## Past Medical History
- **Medical Conditions:** (e.g., Hypertension, Diabetes, Asthma)
- **Surgeries:** (Include type and year)
- **Hospitalizations:** (Include reason and year)
- **Allergies:** (Medications, food, environmental)
- **Current Medications:** (Include name, dose, and frequency)
- **Immunizations:** (Are you up to date?)
## Family History
Do any of your immediate family members (parents, siblings, children) have a history of the following?
- Heart Disease
- Cancer (specify type)
- Diabetes
- High Blood Pressure
- Stroke
- Mental Health Conditions
- Other:
## Social History
- **Marital Status:**
- **Occupation:**
- **Living Situation:**
- **Tobacco Use:** (Never, former, current - specify amount and duration)
- **Alcohol Use:** (Never, occasional, daily - specify amount)
- **Recreational Drug Use:** (Never, former, current - specify type)
- **Diet:** (e.g., balanced, vegetarian, vegan, low-carb)
- **Exercise:** (Type, frequency, duration)
## Review of Systems
Are you currently experiencing any of the following? (Please check all that apply)
- **General:** [ ] Fever, [ ] Chills, [ ] Fatigue, [ ] Weight loss/gain
- **Head/Eyes/Ears/Nose/Throat (HEENT):** [ ] Headaches, [ ] Vision changes, [ ] Hearing loss, [ ] Sore throat
- **Cardiovascular:** [ ] Chest pain, [ ] Palpitations, [ ] Swelling in legs
- **Respiratory:** [ ] Shortness of breath, [ ] Cough, [ ] Wheezing
- **Gastrointestinal:** [ ] Nausea, [ ] Vomiting, [ ] Diarrhea, [ ] Constipation, [ ] Abdominal pain
- **Genitourinary:** [ ] Painful urination, [ ] Frequent urination, [ ] Blood in urine
- **Musculoskeletal:** [ ] Joint pain, [ ] Muscle weakness, [ ] Back pain
- **Neurological:** [ ] Dizziness, [ ] Numbness, [ ] Tingling, [ ] Seizures
- **Psychiatric:** [ ] Anxiety, [ ] Depression, [ ] Mood swings
- **Skin:** [ ] Rashes, [ ] Itching, [ ] Sores
This is a snippet from a pain_management.md template, focusing on pain-specific questions.
# Pain Management Intake Form
## Pain Assessment
- **Pain Diagram:** Please mark the areas on the diagram below where you feel pain.
*(A body diagram would be included here in a graphical format)*
- **Pain Description:**
- What words best describe your pain? (e.g., Aching, Burning, Stabbing, Throbbing, Sharp, Dull)
- Is the pain constant or does it come and go?
- **Pain Triggers:**
- What activities or movements trigger your pain?
- Are there specific times of day when the pain is worse?
- **Previous Treatments:**
- What treatments have you tried for this pain? (e.g., Medications, Physical Therapy, Injections, Surgery)
- How effective were these treatments?
- **Pain Impact on Daily Life:**
- How does the pain affect your ability to work?
- How does it affect your sleep?
- How does it affect your mood and relationships?