Can you give me something common for management so that I can speak in all like for cardio, stomach , thorax, gi
cd /home/daytona/workspace/attachments/44a86af7-f7a2-4b35-90a5-9456bc32b10d/ && python3 -c " import pdfplumber with pdfplumber.open('Surgery Skin_260525_212725.pdf') as pdf: print(f'Total pages: {len(pdf.pages)}') for i, page in enumerate(pdf.pages[:5]): text = page.extract_text() if text: print(f'--- PAGE {i+1} ---') print(text[:1500]) "
Use this structure for cardio, GI, thorax, stomach, skin - any case. Just swap the specific content inside each step.
"I will perform hand hygiene, introduce myself, confirm patient identity, and assess the ABC - Airway, Breathing, Circulation."
"I will resuscitate the patient simultaneously while investigating."
"I will take a focused history including onset, duration, severity, associated symptoms, and relevant PMH."
"I will request the following investigations to confirm diagnosis and assess severity."
| System | Key Imaging |
|---|---|
| Cardio | ECG, CXR, Echo, CT angiogram |
| Thorax | CXR, CT chest, ABG |
| GI / Stomach | AXR (obstruction/perforation), CT abdomen/pelvis, Erect CXR (free air) |
| Skin/Soft tissue | USS (abscess/collection), MRI (necrotizing fasciitis) |
| General surgical | CT with contrast is the workhorse |
"I will provide adequate analgesia using the WHO pain ladder."
"I will prescribe antibiotics after taking cultures, guided by local antimicrobial policy."
"The definitive treatment depends on the underlying cause."
| Condition | Definitive Treatment |
|---|---|
| Abscess | Incision & Drainage |
| Appendicitis | Appendicectomy (laparoscopic) |
| Perforated viscus | Emergency laparotomy |
| Bowel obstruction | Conservative (drip & suck) → surgical if failed |
| Empyema/pneumothorax | Chest drain |
| Cardiac tamponade | Pericardiocentesis |
| AAA rupture | Emergency EVAR / open repair |
| Necrotizing fasciitis | Emergency surgical debridement (within 6 hrs) |
"I will prepare the patient for surgery with the anaesthetic team."
"I will reassess the patient regularly and escalate if deteriorating."
"Before discharge, I will counsel the patient on their condition, treatment, and red flags."
| Situation | What to Say |
|---|---|
| Opening any case | "I will follow an ABCDE approach and resuscitate simultaneously while investigating." |
| Asked about investigations | "I will request bedside, bloods, and imaging in a stepwise manner." |
| Asked about antibiotics | "I will take cultures first, then start empirical antibiotics per local protocol." |
| Asked about surgery | "The definitive management is surgical - I will prepare the patient with appropriate pre-op workup and consent." |
| Asked about escalation | "If the patient deteriorates, I will escalate to my senior, involve ITU, and consider emergency intervention." |
| Ending any case | "I will document clearly, communicate with the team, and ensure safe handover." |
Give management for perforation
cd /home/daytona/workspace/attachments/44a86af7-f7a2-4b35-90a5-9456bc32b10d/ && python3 -c " import pdfplumber with pdfplumber.open('Surgery Skin_260525_212725.pdf') as pdf: print(f'Total pages: {len(pdf.pages)}') for i, page in enumerate(pdf.pages): text = page.extract_text() if text and 'perforation' in text.lower(): print(f'--- PAGE {i+1} ---') print(text[:3000]) print() "
cd /home/daytona/workspace/attachments/44a86af7-f7a2-4b35-90a5-9456bc32b10d/ && python3 -c " import pdfplumber with pdfplumber.open('Surgery Skin_260525_212725.pdf') as pdf: # Get pages 83-86 (gastric/duodenal perforation full section) for i in range(82, 87): text = pdf.pages[i].extract_text() if text: print(f'--- PAGE {i+1} ---') print(text) print() "
The core principle is the same across all perforations: Stabilize → Investigate → Operate
| Investigation | What you're looking for |
|---|---|
| Erect CXR | Free air under diaphragm (perforated viscus) |
| CT abdomen/pelvis | Site, extent, cause of perforation |
| AXR | Pneumoperitoneum, dilated bowel |
| Contrast esophagography | Oesophageal leak localization |
| CT chest | Mediastinal contamination (oesophageal) |
| FBC | Leukocytosis, neutrophilia |
| U&E / Creatinine | Renal function, electrolytes |
| CRP | Severity of inflammation |
| Coagulation + G&S | Pre-op prep |
| Blood cultures | Before antibiotics if septic |
| Lactate | Sepsis / bowel ischaemia marker |
| Perforation Type | Definitive Treatment |
|---|---|
| Gastric / Duodenal | Emergency laparotomy + Graham patch repair + peritoneal washout; treat H. pylori post-op |
| Oesophageal (large/symptomatic) | Surgical repair + drainage |
| Oesophageal (small/contained) | Endoscopic stenting |
| Bowel (small/large) | Emergency laparotomy + resection ± stoma (Hartmann's procedure for sigmoid) |
| Appendix perforation | Emergency appendicectomy + washout; if abscess - percutaneous drainage first then interval appendicectomy |
| Diverticular perforation | IV antibiotics; surgery (Hartmann's) if generalised peritonitis |
"This is a surgical emergency. I will stabilize the patient with ABCDE, make them NBM, start broad-spectrum IV antibiotics, get an erect CXR and CT, and prepare for emergency surgery. The definitive treatment is [Graham patch / laparotomy + resection / surgical repair] followed by ICU monitoring and treatment of the underlying cause."