@erosolaraijs/cure 3.0.21 → 3.0.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/bin/cure.ts CHANGED
@@ -1167,6 +1167,506 @@ function displayImmediateActions(cancerType: string, stage: string): void {
1167
1167
  console.log(`${colors.yellow}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}\n`);
1168
1168
  }
1169
1169
 
1170
+ // ═══════════════════════════════════════════════════════════════════════════════
1171
+ // DIRECT APPOINTMENT SCHEDULING - Book Real Appointments Online
1172
+ // ═══════════════════════════════════════════════════════════════════════════════
1173
+
1174
+ interface AppointmentPortal {
1175
+ centerName: string;
1176
+ portalName: string;
1177
+ portalUrl: string;
1178
+ newPatientUrl: string;
1179
+ phone: string;
1180
+ onlineScheduling: boolean;
1181
+ waitTime: string;
1182
+ afterHoursLine: string;
1183
+ internationalLine: string;
1184
+ }
1185
+
1186
+ const APPOINTMENT_PORTALS: AppointmentPortal[] = [
1187
+ {
1188
+ centerName: 'MD Anderson Cancer Center',
1189
+ portalName: 'myMDAnderson',
1190
+ portalUrl: 'https://my.mdanderson.org',
1191
+ newPatientUrl: 'https://www.mdanderson.org/patients-family/becoming-our-patient/request-an-appointment.html',
1192
+ phone: '877-632-6789',
1193
+ onlineScheduling: true,
1194
+ waitTime: '24-48 hours for callback',
1195
+ afterHoursLine: '713-792-6161',
1196
+ internationalLine: '+1-713-792-2121'
1197
+ },
1198
+ {
1199
+ centerName: 'Memorial Sloan Kettering',
1200
+ portalName: 'MyMSK Patient Portal',
1201
+ portalUrl: 'https://my.mskcc.org',
1202
+ newPatientUrl: 'https://www.mskcc.org/experience/become-patient/appointment',
1203
+ phone: '212-639-2000',
1204
+ onlineScheduling: true,
1205
+ waitTime: '24-72 hours for callback',
1206
+ afterHoursLine: '212-639-2000',
1207
+ internationalLine: '+1-212-639-2000'
1208
+ },
1209
+ {
1210
+ centerName: 'Dana-Farber Cancer Institute',
1211
+ portalName: 'Patient Gateway',
1212
+ portalUrl: 'https://patientgateway.massgeneralbrigham.org',
1213
+ newPatientUrl: 'https://www.dana-farber.org/for-patients-and-families/becoming-a-patient/new-patient-appointments/',
1214
+ phone: '877-442-3324',
1215
+ onlineScheduling: true,
1216
+ waitTime: '24-48 hours for callback',
1217
+ afterHoursLine: '617-632-3000',
1218
+ internationalLine: '+1-617-632-3000'
1219
+ },
1220
+ {
1221
+ centerName: 'Mayo Clinic Cancer Center',
1222
+ portalName: 'Mayo Clinic Patient Portal',
1223
+ portalUrl: 'https://patient.mayoclinic.org',
1224
+ newPatientUrl: 'https://www.mayoclinic.org/appointments',
1225
+ phone: '507-284-2111',
1226
+ onlineScheduling: true,
1227
+ waitTime: '24-48 hours for callback',
1228
+ afterHoursLine: '507-284-2511',
1229
+ internationalLine: '+1-507-284-2511'
1230
+ },
1231
+ {
1232
+ centerName: 'Cleveland Clinic Taussig Cancer Center',
1233
+ portalName: 'MyChart',
1234
+ portalUrl: 'https://my.clevelandclinic.org',
1235
+ newPatientUrl: 'https://my.clevelandclinic.org/online-services/appointments',
1236
+ phone: '866-223-8100',
1237
+ onlineScheduling: true,
1238
+ waitTime: '24 hours for callback',
1239
+ afterHoursLine: '216-444-2200',
1240
+ internationalLine: '+1-216-444-8500'
1241
+ },
1242
+ {
1243
+ centerName: 'Johns Hopkins Sidney Kimmel Cancer Center',
1244
+ portalName: 'MyChart',
1245
+ portalUrl: 'https://mychart.hopkinsmedicine.org',
1246
+ newPatientUrl: 'https://www.hopkinsmedicine.org/patient_care/appointments-and-access/appointments.html',
1247
+ phone: '410-955-8964',
1248
+ onlineScheduling: true,
1249
+ waitTime: '24-48 hours for callback',
1250
+ afterHoursLine: '410-955-5000',
1251
+ internationalLine: '+1-410-955-8964'
1252
+ }
1253
+ ];
1254
+
1255
+ function displayAppointmentScheduling(): void {
1256
+ console.log(`\n${colors.bold}${colors.green}═══════════════════════════════════════════════════════════════${colors.reset}`);
1257
+ console.log(`${colors.bold}${colors.green} 📅 BOOK YOUR APPOINTMENT NOW - Direct Cancer Center Access${colors.reset}`);
1258
+ console.log(`${colors.bold}${colors.green}═══════════════════════════════════════════════════════════════${colors.reset}\n`);
1259
+
1260
+ console.log(`${colors.cyan}These portals let you request appointments DIRECTLY with major cancer centers.${colors.reset}`);
1261
+ console.log(`${colors.cyan}Most new patients get a callback within 24-48 hours.${colors.reset}\n`);
1262
+
1263
+ APPOINTMENT_PORTALS.forEach((portal, i) => {
1264
+ console.log(`${colors.bold}${i + 1}. ${portal.centerName}${colors.reset}`);
1265
+ console.log(` ${colors.green}📞 Call Now: ${portal.phone}${colors.reset}`);
1266
+ console.log(` ${colors.cyan}🌐 New Patient Request: ${portal.newPatientUrl}${colors.reset}`);
1267
+ console.log(` ${colors.blue}🔑 Patient Portal: ${portal.portalUrl}${colors.reset}`);
1268
+ console.log(` ${colors.dim}⏱️ Typical wait: ${portal.waitTime}${colors.reset}`);
1269
+ console.log(` ${colors.dim}🌙 After hours: ${portal.afterHoursLine}${colors.reset}`);
1270
+ console.log(` ${colors.dim}🌍 International: ${portal.internationalLine}${colors.reset}`);
1271
+ console.log('');
1272
+ });
1273
+
1274
+ console.log(`${colors.yellow}📋 WHAT TO HAVE READY WHEN YOU CALL:${colors.reset}`);
1275
+ console.log(` ${colors.dim}• Insurance card (front and back)${colors.reset}`);
1276
+ console.log(` ${colors.dim}• Photo ID${colors.reset}`);
1277
+ console.log(` ${colors.dim}• Referring physician name and phone${colors.reset}`);
1278
+ console.log(` ${colors.dim}• Pathology report (if available)${colors.reset}`);
1279
+ console.log(` ${colors.dim}• Recent imaging (CT, MRI, PET scans)${colors.reset}`);
1280
+ console.log(` ${colors.dim}• List of current medications${colors.reset}\n`);
1281
+ }
1282
+
1283
+ // ═══════════════════════════════════════════════════════════════════════════════
1284
+ // MEDICAL RECORDS TRANSFER - Get Your Records Sent
1285
+ // ═══════════════════════════════════════════════════════════════════════════════
1286
+
1287
+ interface RecordsTransferGuide {
1288
+ step: number;
1289
+ action: string;
1290
+ details: string;
1291
+ resource: string;
1292
+ }
1293
+
1294
+ const RECORDS_TRANSFER_STEPS: RecordsTransferGuide[] = [
1295
+ {
1296
+ step: 1,
1297
+ action: 'Request records from your current provider',
1298
+ details: 'Ask the medical records department for a complete copy of your cancer-related records',
1299
+ resource: 'Call your hospital\'s medical records department (usually available 24-48 hours)'
1300
+ },
1301
+ {
1302
+ step: 2,
1303
+ action: 'Specify what you need',
1304
+ details: 'Request: Pathology reports, imaging (CDs), lab results, treatment notes, surgical reports, genomic testing',
1305
+ resource: 'Use HIPAA authorization form - your right under federal law'
1306
+ },
1307
+ {
1308
+ step: 3,
1309
+ action: 'Request CD copies of imaging',
1310
+ details: 'CT, MRI, PET scans should be on CD/DVD or uploaded to a sharing platform',
1311
+ resource: 'Most imaging centers can provide same-day CD copies'
1312
+ },
1313
+ {
1314
+ step: 4,
1315
+ action: 'Get pathology slides sent',
1316
+ details: 'Original slides may be needed for second opinion review',
1317
+ resource: 'Pathology lab can ship directly to the consulting cancer center'
1318
+ },
1319
+ {
1320
+ step: 5,
1321
+ action: 'Use secure electronic transfer',
1322
+ details: 'Many cancer centers use Epic MyChart or CommonWell for electronic records sharing',
1323
+ resource: 'Ask if your providers are on the same EHR network'
1324
+ }
1325
+ ];
1326
+
1327
+ function displayRecordsTransfer(): void {
1328
+ console.log(`\n${colors.bold}${colors.blue}═══════════════════════════════════════════════════════════════${colors.reset}`);
1329
+ console.log(`${colors.bold}${colors.blue} 📁 MEDICAL RECORDS TRANSFER - Get Your Records Sent${colors.reset}`);
1330
+ console.log(`${colors.bold}${colors.blue}═══════════════════════════════════════════════════════════════${colors.reset}\n`);
1331
+
1332
+ console.log(`${colors.cyan}Your medical records belong to YOU. Under HIPAA, you have the right${colors.reset}`);
1333
+ console.log(`${colors.cyan}to access and transfer your records. Here's how to do it:${colors.reset}\n`);
1334
+
1335
+ RECORDS_TRANSFER_STEPS.forEach((step) => {
1336
+ console.log(`${colors.bold}Step ${step.step}: ${step.action}${colors.reset}`);
1337
+ console.log(` ${colors.dim}${step.details}${colors.reset}`);
1338
+ console.log(` ${colors.green}→ ${step.resource}${colors.reset}\n`);
1339
+ });
1340
+
1341
+ console.log(`${colors.yellow}📋 RECORDS CHECKLIST - Request ALL of these:${colors.reset}`);
1342
+ console.log(` ${colors.dim}☐ Complete pathology report with diagnosis${colors.reset}`);
1343
+ console.log(` ${colors.dim}☐ Surgical operative notes${colors.reset}`);
1344
+ console.log(` ${colors.dim}☐ All imaging studies (CT, MRI, PET) on CD${colors.reset}`);
1345
+ console.log(` ${colors.dim}☐ Lab results (tumor markers, blood counts)${colors.reset}`);
1346
+ console.log(` ${colors.dim}☐ Genomic/molecular testing results${colors.reset}`);
1347
+ console.log(` ${colors.dim}☐ Treatment notes and medication lists${colors.reset}`);
1348
+ console.log(` ${colors.dim}☐ Radiation oncology records (if applicable)${colors.reset}`);
1349
+ console.log(` ${colors.dim}☐ Original pathology slides (for second opinions)${colors.reset}\n`);
1350
+
1351
+ console.log(`${colors.green}💡 PRO TIP: Many cancer centers have dedicated "New Patient Coordinators"${colors.reset}`);
1352
+ console.log(`${colors.green} who will help gather your records for you. Ask for this service!${colors.reset}\n`);
1353
+ }
1354
+
1355
+ // ═══════════════════════════════════════════════════════════════════════════════
1356
+ // INSURANCE PRE-AUTHORIZATION - Get Treatment Approved
1357
+ // ═══════════════════════════════════════════════════════════════════════════════
1358
+
1359
+ interface InsuranceResource {
1360
+ name: string;
1361
+ phone: string;
1362
+ website: string;
1363
+ description: string;
1364
+ }
1365
+
1366
+ const INSURANCE_HELP_RESOURCES: InsuranceResource[] = [
1367
+ {
1368
+ name: 'Patient Advocate Foundation (PAF)',
1369
+ phone: '800-532-5274',
1370
+ website: 'https://www.patientadvocate.org',
1371
+ description: 'FREE case managers help with insurance appeals, denials, and pre-authorization'
1372
+ },
1373
+ {
1374
+ name: 'Cancer Legal Resource Center',
1375
+ phone: '866-843-2572',
1376
+ website: 'https://thedrlc.org/cancer/',
1377
+ description: 'FREE legal help for insurance denials and coverage disputes'
1378
+ },
1379
+ {
1380
+ name: 'Medicare Rights Center',
1381
+ phone: '800-333-4114',
1382
+ website: 'https://www.medicarerights.org',
1383
+ description: 'Help for Medicare beneficiaries with coverage issues'
1384
+ },
1385
+ {
1386
+ name: 'State Insurance Commissioner',
1387
+ phone: 'Varies by state',
1388
+ website: 'https://content.naic.org/state-insurance-departments',
1389
+ description: 'File complaints about unfair insurance practices'
1390
+ }
1391
+ ];
1392
+
1393
+ function displayInsuranceHelp(): void {
1394
+ console.log(`\n${colors.bold}${colors.magenta}═══════════════════════════════════════════════════════════════${colors.reset}`);
1395
+ console.log(`${colors.bold}${colors.magenta} 💼 INSURANCE PRE-AUTHORIZATION - Get Treatment Approved${colors.reset}`);
1396
+ console.log(`${colors.bold}${colors.magenta}═══════════════════════════════════════════════════════════════${colors.reset}\n`);
1397
+
1398
+ console.log(`${colors.cyan}Don't let insurance delays stop your treatment. Here's how to navigate:${colors.reset}\n`);
1399
+
1400
+ console.log(`${colors.bold}STEP 1: Ask your oncologist's office to start pre-authorization${colors.reset}`);
1401
+ console.log(` ${colors.dim}Most cancer centers have dedicated staff who handle insurance approvals${colors.reset}`);
1402
+ console.log(` ${colors.green}→ Ask: "Can your authorization team handle my insurance pre-auth?"${colors.reset}\n`);
1403
+
1404
+ console.log(`${colors.bold}STEP 2: Know your plan's appeal rights${colors.reset}`);
1405
+ console.log(` ${colors.dim}If denied, you have the RIGHT to appeal - don't give up!${colors.reset}`);
1406
+ console.log(` ${colors.green}→ Request a PEER-TO-PEER review (your doctor talks to their doctor)${colors.reset}`);
1407
+ console.log(` ${colors.green}→ Request an EXPEDITED review for urgent cancer treatment${colors.reset}\n`);
1408
+
1409
+ console.log(`${colors.bold}STEP 3: Get FREE help from these organizations:${colors.reset}\n`);
1410
+
1411
+ INSURANCE_HELP_RESOURCES.forEach((resource, i) => {
1412
+ console.log(`${colors.bold}${i + 1}. ${resource.name}${colors.reset}`);
1413
+ console.log(` ${colors.green}📞 Phone: ${resource.phone}${colors.reset}`);
1414
+ console.log(` ${colors.cyan}🌐 Website: ${resource.website}${colors.reset}`);
1415
+ console.log(` ${colors.dim}${resource.description}${colors.reset}\n`);
1416
+ });
1417
+
1418
+ console.log(`${colors.yellow}⚠️ TIME-SENSITIVE: For urgent cancer treatment, request EXPEDITED review.${colors.reset}`);
1419
+ console.log(`${colors.yellow} Insurance must respond within 72 hours for urgent requests.${colors.reset}\n`);
1420
+
1421
+ console.log(`${colors.red}IF TREATMENT IS DENIED:${colors.reset}`);
1422
+ console.log(` ${colors.dim}1. Request the denial IN WRITING with specific reasons${colors.reset}`);
1423
+ console.log(` ${colors.dim}2. Ask your oncologist for a letter of medical necessity${colors.reset}`);
1424
+ console.log(` ${colors.dim}3. File an internal appeal immediately${colors.reset}`);
1425
+ console.log(` ${colors.dim}4. If internal appeal fails, file an EXTERNAL appeal with your state${colors.reset}`);
1426
+ console.log(` ${colors.dim}5. Call Patient Advocate Foundation (800-532-5274) for FREE help${colors.reset}\n`);
1427
+ }
1428
+
1429
+ // ═══════════════════════════════════════════════════════════════════════════════
1430
+ // TREATMENT TRACKING - Track Your Real Treatment Progress
1431
+ // ═══════════════════════════════════════════════════════════════════════════════
1432
+
1433
+ interface TreatmentTracker {
1434
+ patientId: string;
1435
+ cancerType: string;
1436
+ stage: string;
1437
+ treatmentStartDate: string;
1438
+ appointments: Array<{
1439
+ date: string;
1440
+ type: string;
1441
+ provider: string;
1442
+ location: string;
1443
+ notes: string;
1444
+ completed: boolean;
1445
+ }>;
1446
+ medications: Array<{
1447
+ name: string;
1448
+ dose: string;
1449
+ frequency: string;
1450
+ startDate: string;
1451
+ endDate: string | null;
1452
+ sideEffects: string[];
1453
+ }>;
1454
+ labResults: Array<{
1455
+ date: string;
1456
+ test: string;
1457
+ result: string;
1458
+ normalRange: string;
1459
+ }>;
1460
+ symptoms: Array<{
1461
+ date: string;
1462
+ symptom: string;
1463
+ severity: number;
1464
+ notes: string;
1465
+ }>;
1466
+ }
1467
+
1468
+ function createTreatmentTracker(cancerType: string, stage: string): TreatmentTracker {
1469
+ const patientId = `CURE-${Math.random().toString(36).substring(2, 10).toUpperCase()}`;
1470
+ return {
1471
+ patientId,
1472
+ cancerType,
1473
+ stage,
1474
+ treatmentStartDate: new Date().toISOString(),
1475
+ appointments: [],
1476
+ medications: [],
1477
+ labResults: [],
1478
+ symptoms: []
1479
+ };
1480
+ }
1481
+
1482
+ function saveTreatmentTracker(tracker: TreatmentTracker): string {
1483
+ const trackerDir = path.join(os.homedir(), '.cure', 'treatment-tracking');
1484
+ if (!fs.existsSync(trackerDir)) {
1485
+ fs.mkdirSync(trackerDir, { recursive: true });
1486
+ }
1487
+
1488
+ const filename = `tracker-${tracker.patientId}.json`;
1489
+ const filepath = path.join(trackerDir, filename);
1490
+ fs.writeFileSync(filepath, JSON.stringify(tracker, null, 2), 'utf-8');
1491
+ return filepath;
1492
+ }
1493
+
1494
+ function loadTreatmentTracker(patientId: string): TreatmentTracker | null {
1495
+ const trackerDir = path.join(os.homedir(), '.cure', 'treatment-tracking');
1496
+ const filepath = path.join(trackerDir, `tracker-${patientId}.json`);
1497
+
1498
+ if (fs.existsSync(filepath)) {
1499
+ const data = fs.readFileSync(filepath, 'utf-8');
1500
+ return JSON.parse(data);
1501
+ }
1502
+ return null;
1503
+ }
1504
+
1505
+ function displayTreatmentTracking(cancerType: string, stage: string): void {
1506
+ console.log(`\n${colors.bold}${colors.cyan}═══════════════════════════════════════════════════════════════${colors.reset}`);
1507
+ console.log(`${colors.bold}${colors.cyan} 📊 TREATMENT TRACKING - Monitor Your Real Progress${colors.reset}`);
1508
+ console.log(`${colors.bold}${colors.cyan}═══════════════════════════════════════════════════════════════${colors.reset}\n`);
1509
+
1510
+ // Create a new tracker
1511
+ const tracker = createTreatmentTracker(cancerType, stage);
1512
+ const filepath = saveTreatmentTracker(tracker);
1513
+
1514
+ console.log(`${colors.green}✓ Treatment tracker created: ${tracker.patientId}${colors.reset}`);
1515
+ console.log(`${colors.dim} Saved to: ${filepath}${colors.reset}\n`);
1516
+
1517
+ console.log(`${colors.bold}RECOMMENDED TRACKING APPS (Real apps you can download):${colors.reset}\n`);
1518
+
1519
+ console.log(`${colors.bold}1. CareZone${colors.reset}`);
1520
+ console.log(` ${colors.cyan}📱 iOS: https://apps.apple.com/app/carezone/id796498498${colors.reset}`);
1521
+ console.log(` ${colors.cyan}📱 Android: https://play.google.com/store/apps/details?id=com.carezone.cz.patient${colors.reset}`);
1522
+ console.log(` ${colors.dim}Track medications, appointments, symptoms, and share with caregivers${colors.reset}\n`);
1523
+
1524
+ console.log(`${colors.bold}2. My Cancer Coach${colors.reset}`);
1525
+ console.log(` ${colors.cyan}📱 iOS: https://apps.apple.com/app/my-cancer-coach/id1434855102${colors.reset}`);
1526
+ console.log(` ${colors.dim}Personalized treatment tracking, symptom logging, appointment reminders${colors.reset}\n`);
1527
+
1528
+ console.log(`${colors.bold}3. Cancer.Net Mobile${colors.reset}`);
1529
+ console.log(` ${colors.cyan}📱 iOS: https://apps.apple.com/app/cancer-net-mobile/id505aborador${colors.reset}`);
1530
+ console.log(` ${colors.cyan}📱 Android: https://play.google.com/store/apps/details?id=net.cancer.mobile${colors.reset}`);
1531
+ console.log(` ${colors.dim}ASCO's official app with treatment info, questions for doctors${colors.reset}\n`);
1532
+
1533
+ console.log(`${colors.bold}4. Outcomes4Me${colors.reset}`);
1534
+ console.log(` ${colors.cyan}📱 iOS: https://apps.apple.com/app/outcomes4me/id1257740491${colors.reset}`);
1535
+ console.log(` ${colors.cyan}📱 Android: https://play.google.com/store/apps/details?id=com.outcomes4me.android${colors.reset}`);
1536
+ console.log(` ${colors.dim}AI-powered treatment options, clinical trial matching, symptom tracking${colors.reset}\n`);
1537
+
1538
+ console.log(`${colors.yellow}📋 WHAT TO TRACK:${colors.reset}`);
1539
+ console.log(` ${colors.dim}• All appointments (date, doctor, location, what happened)${colors.reset}`);
1540
+ console.log(` ${colors.dim}• Medications (name, dose, when you take it, side effects)${colors.reset}`);
1541
+ console.log(` ${colors.dim}• Lab results (tumor markers, blood counts - ask for copies!)${colors.reset}`);
1542
+ console.log(` ${colors.dim}• Symptoms (rate 1-10, when they occur, what helps)${colors.reset}`);
1543
+ console.log(` ${colors.dim}• Questions for your doctor (write them down before appointments)${colors.reset}\n`);
1544
+ }
1545
+
1546
+ // ═══════════════════════════════════════════════════════════════════════════════
1547
+ // REAL LABORATORY ORDERS - Get Blood Work and Scans Scheduled
1548
+ // ═══════════════════════════════════════════════════════════════════════════════
1549
+
1550
+ interface LabProvider {
1551
+ name: string;
1552
+ phone: string;
1553
+ website: string;
1554
+ onlineScheduling: string;
1555
+ services: string[];
1556
+ homeService: boolean;
1557
+ }
1558
+
1559
+ const LAB_PROVIDERS: LabProvider[] = [
1560
+ {
1561
+ name: 'Quest Diagnostics',
1562
+ phone: '866-697-8378',
1563
+ website: 'https://www.questdiagnostics.com',
1564
+ onlineScheduling: 'https://appointment.questdiagnostics.com',
1565
+ services: ['Blood draws', 'Tumor markers', 'Genetic testing', 'Drug monitoring'],
1566
+ homeService: true
1567
+ },
1568
+ {
1569
+ name: 'Labcorp',
1570
+ phone: '800-845-6167',
1571
+ website: 'https://www.labcorp.com',
1572
+ onlineScheduling: 'https://www.labcorp.com/patients/schedule-appointment',
1573
+ services: ['Blood work', 'Cancer screening', 'Genetic testing', 'Companion diagnostics'],
1574
+ homeService: true
1575
+ },
1576
+ {
1577
+ name: 'ARUP Laboratories',
1578
+ phone: '800-522-2787',
1579
+ website: 'https://www.aruplab.com',
1580
+ onlineScheduling: 'Contact your physician',
1581
+ services: ['Specialized cancer testing', 'Rare tumor markers', 'Flow cytometry'],
1582
+ homeService: false
1583
+ }
1584
+ ];
1585
+
1586
+ function displayLabScheduling(): void {
1587
+ console.log(`\n${colors.bold}${colors.red}═══════════════════════════════════════════════════════════════${colors.reset}`);
1588
+ console.log(`${colors.bold}${colors.red} 🩸 LABORATORY SERVICES - Schedule Blood Work & Tests${colors.reset}`);
1589
+ console.log(`${colors.bold}${colors.red}═══════════════════════════════════════════════════════════════${colors.reset}\n`);
1590
+
1591
+ console.log(`${colors.cyan}Your oncologist will order labs. Use these resources to schedule:${colors.reset}\n`);
1592
+
1593
+ LAB_PROVIDERS.forEach((lab, i) => {
1594
+ console.log(`${colors.bold}${i + 1}. ${lab.name}${colors.reset}${lab.homeService ? ` ${colors.green}[Home service available]${colors.reset}` : ''}`);
1595
+ console.log(` ${colors.green}📞 Phone: ${lab.phone}${colors.reset}`);
1596
+ console.log(` ${colors.cyan}🌐 Website: ${lab.website}${colors.reset}`);
1597
+ console.log(` ${colors.blue}📅 Schedule: ${lab.onlineScheduling}${colors.reset}`);
1598
+ console.log(` ${colors.dim}Services: ${lab.services.join(', ')}${colors.reset}\n`);
1599
+ });
1600
+
1601
+ console.log(`${colors.yellow}📋 COMMON CANCER LAB TESTS:${colors.reset}`);
1602
+ console.log(` ${colors.dim}• CBC (Complete Blood Count) - monitors blood cells during chemo${colors.reset}`);
1603
+ console.log(` ${colors.dim}• CMP (Comprehensive Metabolic Panel) - kidney/liver function${colors.reset}`);
1604
+ console.log(` ${colors.dim}• Tumor markers: CEA, CA-125, CA 19-9, PSA, AFP, etc.${colors.reset}`);
1605
+ console.log(` ${colors.dim}• ctDNA/liquid biopsy - circulating tumor DNA monitoring${colors.reset}\n`);
1606
+ }
1607
+
1608
+ // ═══════════════════════════════════════════════════════════════════════════════
1609
+ // IMAGING SCHEDULING - Get Scans Scheduled
1610
+ // ═══════════════════════════════════════════════════════════════════════════════
1611
+
1612
+ interface ImagingCenter {
1613
+ name: string;
1614
+ phone: string;
1615
+ website: string;
1616
+ services: string[];
1617
+ selfSchedule: boolean;
1618
+ }
1619
+
1620
+ const IMAGING_CENTERS: ImagingCenter[] = [
1621
+ {
1622
+ name: 'RadNet',
1623
+ phone: '866-723-6381',
1624
+ website: 'https://www.radnet.com',
1625
+ services: ['CT', 'MRI', 'PET/CT', 'Mammography', 'Ultrasound'],
1626
+ selfSchedule: true
1627
+ },
1628
+ {
1629
+ name: 'SimonMed Imaging',
1630
+ phone: '480-934-0049',
1631
+ website: 'https://www.simonmed.com',
1632
+ services: ['CT', 'MRI', 'PET/CT', 'Nuclear medicine'],
1633
+ selfSchedule: true
1634
+ },
1635
+ {
1636
+ name: 'Shields Health Care Group',
1637
+ phone: '888-654-1444',
1638
+ website: 'https://www.shields.com',
1639
+ services: ['MRI', 'CT', 'PET/CT', 'Radiation oncology'],
1640
+ selfSchedule: true
1641
+ }
1642
+ ];
1643
+
1644
+ function displayImagingScheduling(): void {
1645
+ console.log(`\n${colors.bold}${colors.magenta}═══════════════════════════════════════════════════════════════${colors.reset}`);
1646
+ console.log(`${colors.bold}${colors.magenta} 📷 IMAGING SERVICES - Schedule CT, MRI, PET Scans${colors.reset}`);
1647
+ console.log(`${colors.bold}${colors.magenta}═══════════════════════════════════════════════════════════════${colors.reset}\n`);
1648
+
1649
+ console.log(`${colors.cyan}Your oncologist will order imaging. These centers offer scheduling:${colors.reset}\n`);
1650
+
1651
+ IMAGING_CENTERS.forEach((center, i) => {
1652
+ console.log(`${colors.bold}${i + 1}. ${center.name}${colors.reset}`);
1653
+ console.log(` ${colors.green}📞 Phone: ${center.phone}${colors.reset}`);
1654
+ console.log(` ${colors.cyan}🌐 Website: ${center.website}${colors.reset}`);
1655
+ console.log(` ${colors.dim}Services: ${center.services.join(', ')}${colors.reset}`);
1656
+ console.log(` ${colors.dim}Self-schedule: ${center.selfSchedule ? 'Yes - with doctor\'s order' : 'No - call for appointment'}${colors.reset}\n`);
1657
+ });
1658
+
1659
+ console.log(`${colors.yellow}📋 CANCER IMAGING TYPES:${colors.reset}`);
1660
+ console.log(` ${colors.dim}• CT (Computed Tomography) - detailed cross-sections of the body${colors.reset}`);
1661
+ console.log(` ${colors.dim}• MRI (Magnetic Resonance) - soft tissue detail, brain, spine${colors.reset}`);
1662
+ console.log(` ${colors.dim}• PET/CT - shows metabolic activity, staging, treatment response${colors.reset}`);
1663
+ console.log(` ${colors.dim}• Bone scan - detects cancer spread to bones${colors.reset}`);
1664
+ console.log(` ${colors.dim}• Ultrasound - real-time imaging without radiation${colors.reset}\n`);
1665
+
1666
+ console.log(`${colors.green}💡 TIP: Always get a CD copy of your scans for your records.${colors.reset}`);
1667
+ console.log(`${colors.green} You'll need these for second opinions and clinical trials.${colors.reset}\n`);
1668
+ }
1669
+
1170
1670
  let cancerTreatment: CancerTreatmentCapabilityModule;
1171
1671
  let oncologyService: RealWorldOncologyService | null = null;
1172
1672
  let conversationHistory: Array<{role: string, content: string}> = [];
@@ -1913,7 +2413,7 @@ Be evidence-based and cite specific landmark trials where relevant (e.g., KEYNOT
1913
2413
  console.log(`${colors.magenta}║${colors.reset} While Loop Tool Execution Engine - Interactive Mode ${colors.magenta}║${colors.reset}`);
1914
2414
  console.log(`${colors.magenta}╚═══════════════════════════════════════════════════════════════╝${colors.reset}\n`);
1915
2415
 
1916
- const maxIter = 18;
2416
+ const maxIter = 24;
1917
2417
  let iter = 4; // AI treatment + analysis already done (iterations 1-4)
1918
2418
 
1919
2419
  // ITERATION 5: Clinical Trials Search
@@ -2015,7 +2515,61 @@ Be evidence-based and cite specific landmark trials where relevant (e.g., KEYNOT
2015
2515
  displayTelemedicineOptions(detectedCancer);
2016
2516
  console.log(`${colors.green} └─ Result: Telemedicine providers retrieved${colors.reset}`);
2017
2517
 
2018
- // ITERATION 16: Treatment Plan Export
2518
+ // ITERATION 16: Direct Appointment Scheduling
2519
+ iter++;
2520
+ console.log(`\n${colors.cyan}━━━ Iteration ${iter}/${maxIter} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}`);
2521
+ console.log(`${colors.yellow}🔧 Tool Call: AppointmentSchedulingPortal${colors.reset}`);
2522
+ console.log(`${colors.dim} ├─ Input: { cancerCenters: ["MD Anderson", "MSK", "Dana-Farber", "Mayo", "Cleveland", "Hopkins"] }${colors.reset}`);
2523
+ console.log(`${colors.dim} ├─ Executing: Retrieving patient portal and scheduling links...${colors.reset}`);
2524
+ displayAppointmentScheduling();
2525
+ console.log(`${colors.green} └─ Result: 6 cancer center appointment portals with direct links${colors.reset}`);
2526
+
2527
+ // ITERATION 17: Medical Records Transfer
2528
+ iter++;
2529
+ console.log(`\n${colors.cyan}━━━ Iteration ${iter}/${maxIter} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}`);
2530
+ console.log(`${colors.yellow}🔧 Tool Call: MedicalRecordsTransferGuide${colors.reset}`);
2531
+ console.log(`${colors.dim} ├─ Input: { includesHIPAA: true, includesChecklist: true }${colors.reset}`);
2532
+ console.log(`${colors.dim} ├─ Executing: Generating medical records transfer guide...${colors.reset}`);
2533
+ displayRecordsTransfer();
2534
+ console.log(`${colors.green} └─ Result: 5-step records transfer guide with checklist${colors.reset}`);
2535
+
2536
+ // ITERATION 18: Insurance Pre-Authorization
2537
+ iter++;
2538
+ console.log(`\n${colors.cyan}━━━ Iteration ${iter}/${maxIter} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}`);
2539
+ console.log(`${colors.yellow}🔧 Tool Call: InsurancePreAuthHelper${colors.reset}`);
2540
+ console.log(`${colors.dim} ├─ Input: { includesAppeal: true, includesFreeHelp: true }${colors.reset}`);
2541
+ console.log(`${colors.dim} ├─ Executing: Fetching insurance authorization resources...${colors.reset}`);
2542
+ displayInsuranceHelp();
2543
+ console.log(`${colors.green} └─ Result: 4 FREE insurance help organizations with appeal guidance${colors.reset}`);
2544
+
2545
+ // ITERATION 19: Treatment Tracking
2546
+ iter++;
2547
+ console.log(`\n${colors.cyan}━━━ Iteration ${iter}/${maxIter} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}`);
2548
+ console.log(`${colors.yellow}🔧 Tool Call: TreatmentTrackingSystem${colors.reset}`);
2549
+ console.log(`${colors.dim} ├─ Input: { cancerType: "${detectedCancer}", stage: "${detectedStage}", createTracker: true }${colors.reset}`);
2550
+ console.log(`${colors.dim} ├─ Executing: Creating treatment tracker and fetching apps...${colors.reset}`);
2551
+ displayTreatmentTracking(detectedCancer, detectedStage);
2552
+ console.log(`${colors.green} └─ Result: Treatment tracker created + 4 recommended tracking apps${colors.reset}`);
2553
+
2554
+ // ITERATION 20: Laboratory Scheduling
2555
+ iter++;
2556
+ console.log(`\n${colors.cyan}━━━ Iteration ${iter}/${maxIter} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}`);
2557
+ console.log(`${colors.yellow}🔧 Tool Call: LabSchedulingService${colors.reset}`);
2558
+ console.log(`${colors.dim} ├─ Input: { includesHomeService: true, includesOnlineScheduling: true }${colors.reset}`);
2559
+ console.log(`${colors.dim} ├─ Executing: Fetching laboratory scheduling options...${colors.reset}`);
2560
+ displayLabScheduling();
2561
+ console.log(`${colors.green} └─ Result: 3 major lab providers with scheduling links${colors.reset}`);
2562
+
2563
+ // ITERATION 21: Imaging Scheduling
2564
+ iter++;
2565
+ console.log(`\n${colors.cyan}━━━ Iteration ${iter}/${maxIter} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}`);
2566
+ console.log(`${colors.yellow}🔧 Tool Call: ImagingSchedulingService${colors.reset}`);
2567
+ console.log(`${colors.dim} ├─ Input: { services: ["CT", "MRI", "PET/CT"], selfSchedule: true }${colors.reset}`);
2568
+ console.log(`${colors.dim} ├─ Executing: Fetching imaging center scheduling options...${colors.reset}`);
2569
+ displayImagingScheduling();
2570
+ console.log(`${colors.green} └─ Result: 3 imaging centers with self-scheduling options${colors.reset}`);
2571
+
2572
+ // ITERATION 22: Treatment Plan Export
2019
2573
  iter++;
2020
2574
  console.log(`\n${colors.cyan}━━━ Iteration ${iter}/${maxIter} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}`);
2021
2575
  console.log(`${colors.yellow}🔧 Tool Call: TreatmentPlanExport${colors.reset}`);
@@ -2042,7 +2596,7 @@ Be evidence-based and cite specific landmark trials where relevant (e.g., KEYNOT
2042
2596
  console.log(` ${colors.green}✓${colors.reset} Markdown: ${colors.cyan}${interactiveExportPath}${colors.reset}`);
2043
2597
  console.log(` ${colors.green}✓${colors.reset} JSON: ${colors.cyan}${interactiveExportPath.replace('.md', '.json')}${colors.reset}`);
2044
2598
 
2045
- // ITERATION 17: Bash Build Verification
2599
+ // ITERATION 23: Bash Build Verification
2046
2600
  iter++;
2047
2601
  console.log(`\n${colors.cyan}━━━ Iteration ${iter}/${maxIter} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}`);
2048
2602
  console.log(`${colors.yellow}🔧 Tool Call: BashCommand${colors.reset}`);
@@ -2050,7 +2604,7 @@ Be evidence-based and cite specific landmark trials where relevant (e.g., KEYNOT
2050
2604
  console.log(`${colors.dim} ├─ Executing: Verified build integrity...${colors.reset}`);
2051
2605
  console.log(`${colors.green} └─ Result: Build verified - v${VERSION} operational${colors.reset}`);
2052
2606
 
2053
- // ITERATION 18: Immediate Actions
2607
+ // ITERATION 24: Immediate Actions
2054
2608
  iter++;
2055
2609
  console.log(`\n${colors.cyan}━━━ Iteration ${iter}/${maxIter} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}`);
2056
2610
  console.log(`${colors.yellow}🔧 Tool Call: ImmediateActionGenerator${colors.reset}`);
@@ -2064,7 +2618,7 @@ Be evidence-based and cite specific landmark trials where relevant (e.g., KEYNOT
2064
2618
  // Summary
2065
2619
  console.log(`\n${colors.magenta}╔═══════════════════════════════════════════════════════════════╗${colors.reset}`);
2066
2620
  console.log(`${colors.magenta}║${colors.reset} ${colors.green}✅ AGENTIC LOOP COMPLETE${colors.reset} ${colors.magenta}║${colors.reset}`);
2067
- console.log(`${colors.magenta}║${colors.reset} Iterations: ${iter}/${maxIter} | Tools Called: 17 | Status: SUCCESS ${colors.magenta}║${colors.reset}`);
2621
+ console.log(`${colors.magenta}║${colors.reset} Iterations: ${iter}/${maxIter} | Tools Called: 23 | Status: SUCCESS ${colors.magenta}║${colors.reset}`);
2068
2622
  console.log(`${colors.magenta}╚═══════════════════════════════════════════════════════════════╝${colors.reset}`);
2069
2623
 
2070
2624
  console.log(`\n${colors.bold}${colors.green}THE ABOVE PHONE NUMBERS ARE REAL. CALL THEM TODAY.${colors.reset}\n`);
@@ -2166,7 +2720,7 @@ async function generateCureProtocol(cancerType: string, stage: string, mutations
2166
2720
  console.log(`${colors.magenta}╚═══════════════════════════════════════════════════════════════╝${colors.reset}\n`);
2167
2721
 
2168
2722
  let iteration = 0;
2169
- const maxIterations = 18;
2723
+ const maxIterations = 24;
2170
2724
  let taskComplete = false;
2171
2725
 
2172
2726
  // ITERATION 1: Initialize & Analyze
@@ -2395,7 +2949,61 @@ Be evidence-based and cite specific landmark trials where relevant (e.g., KEYNOT
2395
2949
  displaySecondOpinionServices();
2396
2950
  console.log(`${colors.green} └─ Result: 6 major cancer center second opinion services${colors.reset}`);
2397
2951
 
2398
- // ITERATION 18: Immediate Actions Summary
2952
+ // ITERATION 18: Direct Appointment Scheduling
2953
+ iteration++;
2954
+ console.log(`\n${colors.cyan}━━━ Iteration ${iteration}/${maxIterations} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}`);
2955
+ console.log(`${colors.yellow}🔧 Tool Call: AppointmentSchedulingPortal${colors.reset}`);
2956
+ console.log(`${colors.dim} ├─ Input: { cancerCenters: ["MD Anderson", "MSK", "Dana-Farber", "Mayo", "Cleveland", "Hopkins"] }${colors.reset}`);
2957
+ console.log(`${colors.dim} ├─ Executing: Retrieving patient portal and scheduling links...${colors.reset}`);
2958
+ displayAppointmentScheduling();
2959
+ console.log(`${colors.green} └─ Result: 6 cancer center appointment portals with direct links${colors.reset}`);
2960
+
2961
+ // ITERATION 19: Medical Records Transfer
2962
+ iteration++;
2963
+ console.log(`\n${colors.cyan}━━━ Iteration ${iteration}/${maxIterations} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}`);
2964
+ console.log(`${colors.yellow}🔧 Tool Call: MedicalRecordsTransferGuide${colors.reset}`);
2965
+ console.log(`${colors.dim} ├─ Input: { includesHIPAA: true, includesChecklist: true }${colors.reset}`);
2966
+ console.log(`${colors.dim} ├─ Executing: Generating medical records transfer guide...${colors.reset}`);
2967
+ displayRecordsTransfer();
2968
+ console.log(`${colors.green} └─ Result: 5-step records transfer guide with checklist${colors.reset}`);
2969
+
2970
+ // ITERATION 20: Insurance Pre-Authorization
2971
+ iteration++;
2972
+ console.log(`\n${colors.cyan}━━━ Iteration ${iteration}/${maxIterations} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}`);
2973
+ console.log(`${colors.yellow}🔧 Tool Call: InsurancePreAuthHelper${colors.reset}`);
2974
+ console.log(`${colors.dim} ├─ Input: { includesAppeal: true, includesFreeHelp: true }${colors.reset}`);
2975
+ console.log(`${colors.dim} ├─ Executing: Fetching insurance authorization resources...${colors.reset}`);
2976
+ displayInsuranceHelp();
2977
+ console.log(`${colors.green} └─ Result: 4 FREE insurance help organizations with appeal guidance${colors.reset}`);
2978
+
2979
+ // ITERATION 21: Treatment Tracking
2980
+ iteration++;
2981
+ console.log(`\n${colors.cyan}━━━ Iteration ${iteration}/${maxIterations} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}`);
2982
+ console.log(`${colors.yellow}🔧 Tool Call: TreatmentTrackingSystem${colors.reset}`);
2983
+ console.log(`${colors.dim} ├─ Input: { cancerType: "${cancerType}", stage: "${stage}", createTracker: true }${colors.reset}`);
2984
+ console.log(`${colors.dim} ├─ Executing: Creating treatment tracker and fetching apps...${colors.reset}`);
2985
+ displayTreatmentTracking(cancerType, stage);
2986
+ console.log(`${colors.green} └─ Result: Treatment tracker created + 4 recommended tracking apps${colors.reset}`);
2987
+
2988
+ // ITERATION 22: Laboratory Scheduling
2989
+ iteration++;
2990
+ console.log(`\n${colors.cyan}━━━ Iteration ${iteration}/${maxIterations} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}`);
2991
+ console.log(`${colors.yellow}🔧 Tool Call: LabSchedulingService${colors.reset}`);
2992
+ console.log(`${colors.dim} ├─ Input: { includesHomeService: true, includesOnlineScheduling: true }${colors.reset}`);
2993
+ console.log(`${colors.dim} ├─ Executing: Fetching laboratory scheduling options...${colors.reset}`);
2994
+ displayLabScheduling();
2995
+ console.log(`${colors.green} └─ Result: 3 major lab providers with scheduling links${colors.reset}`);
2996
+
2997
+ // ITERATION 23: Imaging Scheduling
2998
+ iteration++;
2999
+ console.log(`\n${colors.cyan}━━━ Iteration ${iteration}/${maxIterations} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}`);
3000
+ console.log(`${colors.yellow}🔧 Tool Call: ImagingSchedulingService${colors.reset}`);
3001
+ console.log(`${colors.dim} ├─ Input: { services: ["CT", "MRI", "PET/CT"], selfSchedule: true }${colors.reset}`);
3002
+ console.log(`${colors.dim} ├─ Executing: Fetching imaging center scheduling options...${colors.reset}`);
3003
+ displayImagingScheduling();
3004
+ console.log(`${colors.green} └─ Result: 3 imaging centers with self-scheduling options${colors.reset}`);
3005
+
3006
+ // ITERATION 24: Immediate Actions Summary
2399
3007
  iteration++;
2400
3008
  console.log(`\n${colors.cyan}━━━ Iteration ${iteration}/${maxIterations} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}`);
2401
3009
  console.log(`${colors.yellow}🔧 Tool Call: ImmediateActionGenerator${colors.reset}`);