-
Notifications
You must be signed in to change notification settings - Fork 328
Expand file tree
/
Copy pathscores.json
More file actions
2054 lines (2054 loc) · 184 KB
/
scores.json
File metadata and controls
2054 lines (2054 loc) · 184 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"slug": "accountants-and-auditors",
"title": "Accountants and auditors",
"exposure": 8,
"rationale": "Accountancy is a fundamentally digital occupation centered on data analysis, regulatory compliance, and reporting, all of which are highly susceptible to AI and robotic process automation. While high-level advisory roles and complex forensic audits require human judgment and relationship management, the core tasks of data organization, tax computation, and anomaly detection are increasingly being automated, significantly increasing worker productivity and restructuring the entry-level labor market."
},
{
"slug": "actors",
"title": "Actors",
"exposure": 7,
"rationale": "While live theater and physical presence on set remain human-centric, the occupation is highly exposed due to AI's ability to generate digital likenesses, synthesize voices, and replace background extras or voiceover artists. The core work product\u2014audio and video\u2014is increasingly susceptible to generative AI, leading to significant industry restructuring and potential displacement in digital media productions."
},
{
"slug": "actuaries",
"title": "Actuaries",
"exposure": 8,
"rationale": "Actuarial work is fundamentally digital, involving the analysis of large datasets, statistical modeling, and financial forecasting\u2014all areas where AI and machine learning excel. While the profession requires high-level human judgment and the ability to explain complex risks to stakeholders, the core technical tasks of data compilation and probability estimation are highly susceptible to automation and significant productivity gains through AI."
},
{
"slug": "administrative-services-managers",
"title": "Administrative services and facilities managers",
"exposure": 5,
"rationale": "This occupation is a hybrid of digital knowledge work and physical site management. While AI can significantly automate administrative tasks like recordkeeping, supply procurement, and energy pattern analysis, the role requires a physical presence to inspect facilities, oversee manual labor (janitors, repair workers), and manage real-world safety and security compliance."
},
{
"slug": "adult-literacy-and-ged-teachers",
"title": "Adult basic and secondary education and ESL teachers",
"exposure": 7,
"rationale": "The core work product\u2014language instruction, literacy training, and test preparation\u2014is fundamentally digital and information-based, making it highly susceptible to AI-driven tutoring and translation tools. While the role requires significant cultural sensitivity and interpersonal motivation, AI can now provide personalized lesson plans, real-time feedback, and adaptive learning paths that significantly increase teacher productivity or replace routine instructional tasks."
},
{
"slug": "advertising-sales-agents",
"title": "Advertising sales agents",
"exposure": 7,
"rationale": "The core of this occupation involves digital knowledge work such as analyzing sales statistics, preparing media kits, and drafting contracts, all of which are highly susceptible to AI automation. While the role requires interpersonal relationship building, the shift toward programmatic advertising and AI-driven ad placement is already reducing the need for human intermediaries in the sales process, as reflected in the projected employment decline."
},
{
"slug": "advertising-promotions-and-marketing-managers",
"title": "Advertising, promotions, and marketing managers",
"exposure": 8,
"rationale": "This occupation is predominantly digital and information-based, involving market research, data analysis, and content strategy\u2014all areas where AI is rapidly advancing. While high-level strategic decision-making and stakeholder management provide some insulation, AI can now automate significant portions of campaign planning, creative drafting, and consumer data processing, leading to major restructuring of the role."
},
{
"slug": "aerospace-engineering-and-operations-technicians",
"title": "Aerospace engineering and operations technologists and technicians",
"exposure": 5,
"rationale": "This occupation involves a significant amount of physical labor, such as building test facilities, installing instruments, and maintaining hardware, which provides a buffer against AI automation. However, the role also includes substantial digital tasks like recording data, running computer simulations, and calibrating systems\u2014areas where AI is rapidly improving and can significantly enhance productivity or automate data analysis."
},
{
"slug": "aerospace-engineers",
"title": "Aerospace engineers",
"exposure": 7,
"rationale": "Aerospace engineering is a high-level knowledge occupation where core tasks like aerodynamic modeling, structural analysis, and propulsion design are increasingly performed using digital simulation and AI-driven optimization tools. While the role requires critical human judgment for safety, regulatory compliance, and physical inspection of prototypes, the heavy reliance on computer-aided design (CAD) and complex data analysis makes it highly susceptible to AI-driven productivity gains and task automation."
},
{
"slug": "agricultural-and-food-science-technicians",
"title": "Agricultural and food science technicians",
"exposure": 4,
"rationale": "This occupation involves a significant amount of physical labor, such as collecting biological samples, maintaining farm equipment, and operating laboratory hardware, which provides a buffer against full automation. However, AI will heavily impact the data-heavy portions of the job, including compiling test results, analyzing chemical properties, and generating reports, making technicians more productive but potentially reducing the number of workers needed for data processing."
},
{
"slug": "agricultural-and-food-scientists",
"title": "Agricultural and food scientists",
"exposure": 6,
"rationale": "This occupation involves a significant amount of digital knowledge work, including data analysis, research synthesis, and report writing, which are highly susceptible to AI enhancement. However, the role is anchored by physical requirements such as field sampling, laboratory experiments, and on-site inspections at farms or processing plants that AI cannot currently replicate."
},
{
"slug": "agricultural-engineers",
"title": "Agricultural engineers",
"exposure": 6,
"rationale": "Agricultural engineering is a hybrid role that combines digital design and data analysis with physical site visits and hardware testing. While AI will significantly automate core tasks like CAD modeling, environmental simulation, and precision farming data analysis, the requirement for physical oversight of construction, equipment testing in the field, and real-world troubleshooting provides a buffer against full automation."
},
{
"slug": "agricultural-workers",
"title": "Agricultural workers",
"exposure": 3,
"rationale": "The core of this occupation involves physical labor, animal handling, and operating machinery in unpredictable outdoor environments, which provides a strong natural barrier to AI. While AI and robotics are increasingly used for precision agriculture and automated harvesting, the high cost of hardware and the need for manual dexterity in varied conditions mean human workers remain essential for the majority of tasks."
},
{
"slug": "air-traffic-controllers",
"title": "Air traffic controllers",
"exposure": 7,
"rationale": "The core work is fundamentally digital and data-driven, involving the monitoring of radar screens and the processing of complex spatial information to ensure aircraft separation. While the high-stakes nature of safety and the need for real-time human communication with pilots provide a buffer, AI and automated systems (like NextGen) are already increasing productivity and handling more traffic per controller, leading to a very low projected growth in human employment."
},
{
"slug": "aircraft-and-avionics-equipment-mechanics-and-technicians",
"title": "Aircraft and avionics equipment mechanics and technicians",
"exposure": 3,
"rationale": "The core of this occupation involves physical labor, manual dexterity, and real-time troubleshooting in a physical environment, which provides a strong barrier against AI automation. While AI will significantly enhance diagnostic capabilities, predictive maintenance, and the interpretation of flight data, the actual repair, assembly, and FAA-regulated physical inspections must still be performed by human technicians."
},
{
"slug": "airline-and-commercial-pilots",
"title": "Airline and commercial pilots",
"exposure": 5,
"rationale": "The occupation is a hybrid of high-level digital information processing and critical physical presence. While AI and advanced automation can handle navigation, flight planning, and system monitoring, the role requires real-time human intervention for physical emergencies, complex sensory awareness in unpredictable weather, and the legal/ethical responsibility of passenger safety in the physical world."
},
{
"slug": "animal-care-and-service-workers",
"title": "Animal care and service workers",
"exposure": 2,
"rationale": "The core duties of this occupation are physical and require real-time presence, such as feeding, grooming, cleaning, and physically training animals. AI may assist with peripheral administrative tasks like scheduling or monitoring animal health data, but it cannot replace the manual labor or the empathetic human-animal interaction required for the job."
},
{
"slug": "announcers",
"title": "Announcers and DJs",
"exposure": 7,
"rationale": "The occupation is split between highly exposed digital work and less exposed physical work. Broadcast and radio roles are under significant threat from AI-generated voices and automated content curation, whereas live event DJs and emcees retain a physical and interpersonal barrier that is harder to automate."
},
{
"slug": "anthropologists-and-archeologists",
"title": "Anthropologists and archeologists",
"exposure": 5,
"rationale": "This occupation is a hybrid of physical fieldwork and digital knowledge work. While AI can significantly automate data analysis, pattern recognition in artifacts, and report writing, it cannot replace the physical requirements of excavation, site surveying, and in-person ethnographic observation."
},
{
"slug": "arbitrators-mediators-and-conciliators",
"title": "Arbitrators, mediators, and conciliators",
"exposure": 7,
"rationale": "This occupation is primarily digital and information-based, involving the analysis of legal documents, evidence, and the drafting of settlement agreements\u2014tasks where AI is rapidly achieving high proficiency. While the role requires significant interpersonal skills and emotional intelligence to manage confrontational parties, the core analytical and administrative functions are highly susceptible to AI-driven productivity gains and partial automation."
},
{
"slug": "architects",
"title": "Architects",
"exposure": 7,
"rationale": "Architects perform high-level knowledge work that is increasingly digital, utilizing CADD and BIM software which is highly susceptible to AI-driven automation in generative design and technical documentation. While the role requires physical site visits and complex client negotiations, a significant portion of the core work\u2014drafting, specification writing, and regulatory compliance\u2014is moving toward high AI integration."
},
{
"slug": "architectural-and-engineering-managers",
"title": "Architectural and engineering managers",
"exposure": 7,
"rationale": "This occupation is predominantly knowledge-based and digital, involving project planning, budgeting, and technical oversight that can be significantly enhanced by AI tools. While the role requires high-level human judgment, leadership, and physical site visits, the core tasks of analyzing technical data, scheduling, and coordinating complex engineering workflows are highly susceptible to AI-driven productivity gains and automation."
},
{
"slug": "curators-museum-technicians-and-conservators",
"title": "Archivists, curators, and museum workers",
"exposure": 6,
"rationale": "This occupation is a hybrid of digital knowledge work and physical preservation. AI will significantly automate archival tasks like cataloging, metadata generation, and electronic record management, while also assisting curators with research and exhibit design. However, the physical requirements of handling artifacts, restoring delicate items, and managing in-person public interactions provide a substantial buffer against full automation."
},
{
"slug": "art-directors",
"title": "Art directors",
"exposure": 8,
"rationale": "Art directors work in a fundamentally digital domain where AI is rapidly advancing in image generation, layout design, and video synthesis. While the role requires high-level human judgment, leadership, and client communication, the core work product can be heavily augmented or automated by AI, significantly increasing productivity and potentially reducing the number of directors needed to oversee creative projects."
},
{
"slug": "assemblers-and-fabricators",
"title": "Assemblers and fabricators",
"exposure": 3,
"rationale": "The core of this occupation involves physical manipulation, manual dexterity, and real-time adjustments in a physical environment, which provides a significant buffer against AI. While AI and robotics are increasing efficiency and automating some repetitive tasks, a substantial portion of the work\u2014especially in complex assembly, prototyping, and custom fabrication\u2014still requires human presence and tactile skill."
},
{
"slug": "athletes-and-sports-competitors",
"title": "Athletes and sports competitors",
"exposure": 1,
"rationale": "The core of this occupation is physical performance, manual dexterity, and real-time human presence in the physical world, which AI cannot replicate. While AI is used as a peripheral tool for performance analytics, strategy optimization, and diet planning, it does not replace the athlete's physical labor or the entertainment value of human competition."
},
{
"slug": "athletic-trainers",
"title": "Athletic trainers",
"exposure": 3,
"rationale": "The core duties of athletic trainers\u2014such as applying tape/braces, providing emergency first aid on the field, and performing manual rehabilitation\u2014require physical presence and tactile skills that AI cannot replicate. While AI can assist with peripheral tasks like injury analysis, record-keeping, and designing recovery protocols, the job remains fundamentally grounded in real-time human interaction and physical healthcare delivery."
},
{
"slug": "atmospheric-scientists-including-meteorologists",
"title": "Atmospheric scientists, including meteorologists",
"exposure": 8,
"rationale": "The core of this occupation involves analyzing digital data, running computer models, and writing code, all of which are highly susceptible to AI advancement. Machine learning is already revolutionizing weather forecasting by outperforming traditional numerical models in speed and efficiency, potentially reducing the number of human forecasters needed for routine data processing and report generation."
},
{
"slug": "audiologists",
"title": "Audiologists",
"exposure": 4,
"rationale": "Audiology is a clinical healthcare profession that requires physical presence for examinations, wax removal, and fitting hardware like hearing aids or cochlear implants. While AI will significantly enhance diagnostic accuracy, signal processing in hearing devices, and automated testing, the core of the job involves interpersonal counseling, physical patient interaction, and complex clinical judgment that cannot be fully digitized."
},
{
"slug": "automotive-body-and-glass-repairers",
"title": "Automotive body and glass repairers",
"exposure": 2,
"rationale": "The core tasks are highly physical, involving manual dexterity, welding, and the use of pneumatic tools in unpredictable repair environments that are difficult to automate. AI's primary impact is limited to peripheral administrative tasks like cost estimation and damage assessment via computer vision, but the physical restoration of vehicles remains a human-centric trade."
},
{
"slug": "automotive-service-technicians-and-mechanics",
"title": "Automotive service technicians and mechanics",
"exposure": 3,
"rationale": "The core of this occupation involves physical labor, manual dexterity, and real-time mechanical repair in a physical environment, which provides a strong barrier against AI automation. While AI will significantly enhance diagnostic capabilities and predictive maintenance software, the actual physical replacement of parts and hands-on troubleshooting remains a human-centric task."
},
{
"slug": "bakers",
"title": "Bakers",
"exposure": 2,
"rationale": "The core duties of a baker are physical and sensory, involving manual dexterity for shaping dough and real-time monitoring of physical products in high-heat environments. While AI can optimize recipes or assist with inventory management and scheduling, the fundamental work of kneading, decorating, and handling equipment remains a physical task resistant to digital automation."
},
{
"slug": "barbers-hairstylists-and-cosmetologists",
"title": "Barbers, hairstylists, and cosmetologists",
"exposure": 2,
"rationale": "The core of this occupation involves manual dexterity and physical interaction in a highly unpredictable environment (human hair and skin). While AI can assist with peripheral tasks like appointment scheduling, marketing, or visualizing hairstyles for clients, the physical act of cutting, coloring, and styling hair remains a significant barrier to automation."
},
{
"slug": "bartenders",
"title": "Bartenders",
"exposure": 2,
"rationale": "The core of bartending involves physical manipulation of objects, manual cleaning, and real-time social interaction in a physical environment. While AI can assist with peripheral tasks like inventory management or automated ordering, the primary value of the role lies in human presence, physical service, and the social 'hospitality' aspect which remains difficult to automate."
},
{
"slug": "bill-and-account-collectors",
"title": "Bill and account collectors",
"exposure": 9,
"rationale": "This occupation is almost entirely digital, consisting of data analysis, skip tracing, and communication via phone or computer. AI and automated systems are already driving a projected 10% decline in employment by handling routine notifications and payment processing, while advanced LLMs are increasingly capable of managing the negotiation and customer service aspects of debt collection."
},
{
"slug": "biochemists-and-biophysicists",
"title": "Biochemists and biophysicists",
"exposure": 7,
"rationale": "This occupation is heavily centered on knowledge work, data analysis, and complex modeling, all of which are being revolutionized by AI (e.g., AlphaFold for protein structure prediction). While physical laboratory work and team management provide a buffer, a significant portion of the role involves literature review, grant writing, and data interpretation\u2014tasks where AI can exponentially increase productivity or automate core analytical functions."
},
{
"slug": "biomedical-engineers",
"title": "Bioengineers and biomedical engineers",
"exposure": 7,
"rationale": "This occupation involves heavy digital knowledge work, including software design, statistical modeling, and technical writing, all of which are highly susceptible to AI augmentation and automation. While physical tasks like equipment maintenance and clinical collaboration provide a buffer, the core engineering and research functions are increasingly driven by AI-enhanced simulations and data analysis."
},
{
"slug": "biological-technicians",
"title": "Biological technicians",
"exposure": 5,
"rationale": "The role is a hybrid of physical laboratory work and digital data analysis. While AI can significantly automate data interpretation, report writing, and experimental modeling, the core duties involve manual tasks like setting up equipment, preparing biological samples, and conducting physical experiments that require a human presence in a lab or field environment."
},
{
"slug": "boilermakers",
"title": "Boilermakers",
"exposure": 2,
"rationale": "The core work is highly physical, involving manual assembly, welding, and repair in unpredictable and cramped environments like boilers and tanks. While AI can assist with peripheral tasks like blueprint analysis or maintenance scheduling, the primary duties require human dexterity and physical presence that current AI and robotics cannot replicate in non-factory settings."
},
{
"slug": "bookkeeping-accounting-and-auditing-clerks",
"title": "Bookkeeping, accounting, and auditing clerks",
"exposure": 9,
"rationale": "This occupation is almost entirely digital and involves routine information processing, data entry, and mathematical verification\u2014tasks that AI and automated software already perform with high accuracy. The BLS already projects a decline in employment due to technological change, and the shift toward 'analytical and advisory' roles is increasingly being encroached upon by advanced LLMs and specialized financial AI agents."
},
{
"slug": "broadcast-and-sound-engineering-technicians",
"title": "Broadcast, sound, and video technicians",
"exposure": 6,
"rationale": "This occupation is a hybrid of physical labor (setting up hardware, rigging lights, running cables) and digital knowledge work (mixing sound, editing video, managing broadcast signals). While the physical installation tasks are resistant to AI, the digital components\u2014such as sound leveling, video editing, and signal monitoring\u2014are being rapidly automated by AI tools, leading to higher productivity and a projected decline in specialized roles like sound and broadcast technicians."
},
{
"slug": "budget-analysts",
"title": "Budget analysts",
"exposure": 8,
"rationale": "Budget analysts perform work that is almost entirely digital, involving data analysis, financial modeling, and report writing\u2014all areas where AI is highly capable. While the role requires human negotiation and communication with stakeholders, the core tasks of consolidating budgets, identifying discrepancies, and performing cost-benefit analyses are highly susceptible to automation and significant productivity gains through AI."
},
{
"slug": "bus-drivers",
"title": "Bus drivers",
"exposure": 4,
"rationale": "While autonomous driving technology is a direct long-term threat to the core task of vehicle operation, the role involves significant physical and interpersonal responsibilities that AI cannot yet replicate. School bus drivers must manage student behavior and safety, while transit and charter drivers assist passengers with disabilities and handle physical luggage, creating a substantial barrier to full automation in the near term."
},
{
"slug": "butchers-and-meat-cutters",
"title": "Butchers",
"exposure": 2,
"rationale": "The core of this occupation involves manual dexterity, physical strength, and real-time interaction with physical products in a cold, unpredictable environment. While AI can assist with peripheral tasks like inventory tracking and sales forecasting, the primary duties of cutting, deboning, and handling meat are resistant to digital automation and require specialized robotics rather than AI software."
},
{
"slug": "calibration-technologists-and-technicians",
"title": "Calibration technologists and technicians",
"exposure": 4,
"rationale": "This occupation involves a significant physical component, requiring manual dexterity to adjust hardware and presence in industrial or laboratory environments. While AI can automate data recording, scheduling, and the analysis of calibration deviations, the core tasks of physical inspection, maintenance, and hands-on equipment manipulation provide a natural barrier to full automation."
},
{
"slug": "cardiovascular-technologists-and-technicians",
"title": "Cardiovascular technologists and technicians",
"exposure": 4,
"rationale": "The role requires significant physical presence for tasks like positioning patients, attaching electrodes, and assisting in invasive surgical procedures. While AI will heavily automate the analysis of EKG and pulmonary data, the core requirements of patient care, physical stamina, and real-time technical assistance in a clinical environment provide a strong barrier to full automation."
},
{
"slug": "career-and-technical-education-teachers",
"title": "Career and technical education teachers",
"exposure": 4,
"rationale": "While AI can significantly automate lesson planning, grading, and the delivery of theoretical knowledge, the core of this occupation involves supervising hands-on activities in physical environments like workshops and labs. Teaching students to safely use physical tools for trades like welding, culinary arts, or auto repair requires real-time human presence and physical intervention that AI cannot currently replicate."
},
{
"slug": "carpenters",
"title": "Carpenters",
"exposure": 2,
"rationale": "Carpentry is a highly physical occupation requiring manual dexterity, strength, and real-time problem-solving in unpredictable physical environments. While AI may assist with peripheral tasks like blueprint analysis, material estimation, or business management, the core work of cutting, fitting, and installing materials remains resistant to automation."
},
{
"slug": "cartographers-and-photogrammetrists",
"title": "Cartographers and photogrammetrists",
"exposure": 8,
"rationale": "The core tasks of collecting, analyzing, and visualizing geospatial data are fundamentally digital and highly susceptible to AI-driven automation. Computer vision and machine learning are already significantly faster than humans at interpreting satellite imagery, LiDAR, and survey data, while generative AI can increasingly automate the design and production of both static and interactive maps."
},
{
"slug": "cashiers",
"title": "Cashiers",
"exposure": 7,
"rationale": "While the job has physical components like bagging and stocking, the core function of processing transactions is highly susceptible to automation through computer vision and AI-driven self-checkout systems. The BLS already projects a significant decline in employment due to these technological shifts, as AI can increasingly handle age verification, fraud detection, and customer inquiries."
},
{
"slug": "chefs-and-head-cooks",
"title": "Chefs and head cooks",
"exposure": 3,
"rationale": "The core of the job is highly physical and sensory, requiring manual dexterity, real-time human leadership in a fast-paced kitchen, and the use of taste and smell. While AI can significantly assist with peripheral digital tasks like menu planning, inventory management, and recipe generation, it cannot replace the physical oversight and hands-on food preparation essential to the role."
},
{
"slug": "chemical-engineers",
"title": "Chemical engineers",
"exposure": 6,
"rationale": "Chemical engineering involves a significant amount of digital knowledge work, including process simulation, CAD design, and data analysis, which are highly susceptible to AI-driven optimization. However, the role is anchored by the need for physical presence in laboratories and industrial plants to monitor equipment, ensure safety compliance, and troubleshoot hardware in the real world."
},
{
"slug": "chemical-technicians",
"title": "Chemical technicians",
"exposure": 5,
"rationale": "The role is a hybrid of physical laboratory work and digital data analysis. While AI can significantly automate the compilation of results, report generation, and predictive modeling of chemical properties, the core duties of setting up equipment, preparing physical solutions, and maintaining laboratory instruments require a human presence in a physical environment."
},
{
"slug": "chemists-and-materials-scientists",
"title": "Chemists and materials scientists",
"exposure": 7,
"rationale": "This occupation is a high-level blend of digital knowledge work and physical laboratory experimentation. AI is already revolutionizing the digital aspects\u2014such as molecular modeling, predictive simulation, and technical reporting\u2014allowing scientists to screen millions of compounds in silico before ever entering a lab. While the physical requirement of conducting experiments and handling chemicals provides a buffer, the massive productivity gains in research and analysis mean AI will fundamentally restructure how these scientists spend their time."
},
{
"slug": "childcare-workers",
"title": "Childcare workers",
"exposure": 2,
"rationale": "The core responsibilities of this role\u2014physical care, safety monitoring, hygiene, and emotional support\u2014require a physical presence and human empathy that AI cannot replicate. While AI may assist with peripheral tasks like lesson planning, record-keeping, or parent communication, the fundamental nature of the work is hands-on and occurs in the physical world."
},
{
"slug": "chiropractors",
"title": "Chiropractors",
"exposure": 3,
"rationale": "The core of chiropractic work is highly physical, requiring manual dexterity for spinal adjustments and real-time physical assessment of a patient's musculoskeletal system. While AI can assist with peripheral tasks like medical imaging analysis, diagnostic suggestions, and administrative business management, it cannot replace the essential hands-on therapeutic interventions that define the profession."
},
{
"slug": "civil-engineering-technicians",
"title": "Civil engineering technologists and technicians",
"exposure": 6,
"rationale": "This occupation is a hybrid of digital knowledge work and physical field work. While AI and advanced CAD software are significantly automating drafting, cost estimation, and data analysis tasks, the role still requires physical site visits, material testing, and real-world inspections that AI cannot currently perform."
},
{
"slug": "civil-engineers",
"title": "Civil engineers",
"exposure": 6,
"rationale": "Civil engineering involves significant digital knowledge work, including CAD design, data analysis, and cost estimation, which are highly susceptible to AI-driven productivity gains. However, the role is anchored by the necessity for physical site inspections, real-world surveying, and the legal accountability of a Professional Engineer (PE) license, which requires human judgment and liability that AI cannot currently replace."
},
{
"slug": "claims-adjusters-appraisers-examiners-and-investigators",
"title": "Claims adjusters, appraisers, examiners, and investigators",
"exposure": 7,
"rationale": "This occupation is heavily focused on information processing, document review, and data-driven decision-making, all of which are highly susceptible to AI automation. While physical inspections and interpersonal negotiations provide some protection, the BLS already projects a decline in employment due to AI's ability to analyze photos of damage and automate claim calculations."
},
{
"slug": "clinical-laboratory-technologists-and-technicians",
"title": "Clinical laboratory technologists and technicians",
"exposure": 5,
"rationale": "This occupation is a hybrid of physical laboratory work and digital data analysis. While AI and computer vision are rapidly automating the interpretation of slides and test results (high exposure), the physical requirements of preparing specimens, maintaining complex hardware, and interacting with patients provide a significant barrier to full automation."
},
{
"slug": "coaches-and-scouts",
"title": "Coaches and scouts",
"exposure": 4,
"rationale": "While AI is significantly impacting the analytical side of the job\u2014such as processing player data, optimizing game strategy, and analyzing opponent film\u2014the core of the occupation remains deeply physical and interpersonal. Coaches must provide real-time motivation, physical instruction, and human leadership on the field, which cannot be replicated by digital tools."
},
{
"slug": "community-health-workers",
"title": "Community health workers",
"exposure": 3,
"rationale": "The core of this occupation is built on trust, cultural sensitivity, and physical presence within specific communities, which AI cannot replicate. While AI can assist with peripheral tasks like data collection, report writing, and resource matching, the primary duties involve home visits, hands-on advocacy, and real-time interpersonal coaching for vulnerable populations."
},
{
"slug": "compensation-and-benefits-managers",
"title": "Compensation and benefits managers",
"exposure": 7,
"rationale": "This occupation is primarily digital and data-driven, involving the analysis of wage trends, benefits structures, and regulatory compliance\u2014tasks where AI excels. While the role requires high-level human judgment for vendor negotiations and strategic decision-making, AI can automate significant portions of the data analysis, reporting, and routine employee communication, leading to higher productivity and potential workforce consolidation."
},
{
"slug": "compensation-benefits-and-job-analysis-specialists",
"title": "Compensation, benefits, and job analysis specialists",
"exposure": 8,
"rationale": "This occupation is fundamentally digital and data-driven, involving core tasks like market research, cost analysis, and report generation that align perfectly with AI's strengths. AI can automate the drafting of job descriptions, perform complex compensation benchmarking, and monitor regulatory changes, significantly increasing individual productivity and reducing the need for manual data processing."
},
{
"slug": "compliance-officers",
"title": "Compliance officers",
"exposure": 8,
"rationale": "Compliance work is primarily digital and involves analyzing vast amounts of regulatory text, auditing data, and generating reports\u2014all areas where LLMs and automated systems excel. While high-level judgment and interpersonal investigations provide some insulation, the core tasks of monitoring, risk assessment, and documentation are highly susceptible to AI-driven automation and productivity gains."
},
{
"slug": "computer-and-information-research-scientists",
"title": "Computer and information research scientists",
"exposure": 9,
"rationale": "This occupation is fundamentally digital, involving high-level coding, algorithm design, and data analysis\u2014all areas where AI is rapidly advancing. While these scientists are the ones building AI, the tools they create are increasingly capable of automating their own core tasks, such as writing code, simplifying algorithms, and analyzing experimental results, leading to extreme productivity gains and role restructuring."
},
{
"slug": "computer-and-information-systems-managers",
"title": "Computer and information systems managers",
"exposure": 7,
"rationale": "This occupation is predominantly digital and knowledge-based, involving strategic planning, analysis, and technical oversight that AI can significantly augment. While high-level leadership, vendor negotiation, and personnel management provide a buffer of human judgment, the core tasks of assessing IT needs, monitoring security, and directing technical workflows are highly susceptible to AI-driven productivity gains and automation."
},
{
"slug": "computer-hardware-engineers",
"title": "Computer hardware engineers",
"exposure": 8,
"rationale": "The core work of designing schematics, analyzing circuits, and testing components is increasingly performed using digital Electronic Design Automation (EDA) tools that are highly susceptible to AI-driven optimization and automation. While there is a physical component to testing and manufacturing oversight, the vast majority of the engineering lifecycle is digital and benefits significantly from AI's ability to optimize complex systems and generate code/hardware descriptions."
},
{
"slug": "computer-network-architects",
"title": "Computer network architects",
"exposure": 8,
"rationale": "The core work of designing, documenting, and configuring networks is fundamentally digital and data-driven, making it highly susceptible to AI-driven automation and optimization tools. While physical hardware deployment and complex stakeholder management provide a slight buffer, AI is rapidly advancing in automated network topology design, security configuration, and predictive troubleshooting, which will significantly increase individual productivity and restructure the role."
},
{
"slug": "computer-programmers",
"title": "Computer programmers",
"exposure": 9,
"rationale": "The core tasks of writing, testing, and debugging code are entirely digital and align perfectly with the strengths of Large Language Models, which are already highly proficient in these domains. The BLS specifically projects a decline in this occupation due to automation and AI, as these tools allow fewer workers to produce the same volume of code and shift higher-level logic to software developers."
},
{
"slug": "computer-support-specialists",
"title": "Computer support specialists",
"exposure": 8,
"rationale": "The core tasks of diagnosing technical issues, documenting problems, and guiding users through digital workflows are highly susceptible to AI automation via advanced chatbots and LLM-driven troubleshooting. While some physical hardware setup and complex onsite networking remain, the vast majority of the work is digital information processing that AI can increasingly handle, as evidenced by the BLS's projected decline in employment due to automation."
},
{
"slug": "computer-systems-analysts",
"title": "Computer systems analysts",
"exposure": 8,
"rationale": "This occupation is fundamentally digital, involving data modeling, system design, and technical analysis that can be performed entirely on a computer. AI is highly capable of automating core tasks such as writing technical documentation, generating system diagrams, analyzing cost-benefit data, and assisting with the programming and debugging aspects of the role."
},
{
"slug": "concierges",
"title": "Concierges",
"exposure": 5,
"rationale": "The role is a hybrid of digital information processing and physical hospitality. While AI can automate core tasks like making reservations, providing local recommendations, and answering emails, the job still requires a physical presence for greeting guests, handling packages, and providing high-touch interpersonal service that is central to the luxury and residential experience."
},
{
"slug": "conservation-scientists",
"title": "Conservation scientists and foresters",
"exposure": 4,
"rationale": "This occupation involves a significant amount of physical field work, such as fire suppression, planting trees, and navigating difficult terrain, which provides a natural barrier to AI automation. However, a substantial portion of the role involves data analysis, GIS mapping, and regulatory compliance\u2014tasks where AI can significantly enhance productivity and decision-making. While AI will reshape the information-processing aspects of the job, the requirement for real-world presence and manual intervention keeps exposure moderate."
},
{
"slug": "construction-and-building-inspectors",
"title": "Construction and building inspectors",
"exposure": 5,
"rationale": "The occupation is a hybrid of physical site visits and digital knowledge work. AI and computer vision can significantly automate the 'plans examiner' and report-writing functions, while remote inspection technology is already projected to reduce labor demand. However, the core requirement for physical presence to navigate tight spaces, use manual testing equipment, and verify real-world conditions provides a substantial barrier to full automation."
},
{
"slug": "construction-equipment-operators",
"title": "Construction equipment operators",
"exposure": 3,
"rationale": "The core of this occupation involves physical operation of heavy machinery in unpredictable, outdoor environments that require real-time human coordination and manual maintenance. While AI and automation are increasingly integrated into equipment via GPS and computerized controls, the physical nature of the work and the need for on-site safety judgment provide a significant barrier to full automation in the near term."
},
{
"slug": "construction-laborers-and-helpers",
"title": "Construction laborers and helpers",
"exposure": 1,
"rationale": "The core duties of this occupation are almost entirely physical, involving manual labor, tool operation, and site preparation in unpredictable outdoor environments. While AI might assist with peripheral tasks like scheduling or specialized robotic equipment control, the vast majority of the work requires human presence, physical strength, and real-time adaptation to physical obstacles."
},
{
"slug": "construction-managers",
"title": "Construction managers",
"exposure": 5,
"rationale": "Construction management is a hybrid role that combines digital knowledge work\u2014such as cost estimation, scheduling, and contract analysis\u2014with essential physical presence. While AI can significantly automate budgeting and logistical planning, the core of the job requires real-world site inspections, physical problem-solving, and high-stakes interpersonal negotiation with tradesworkers and inspectors that cannot be replicated digitally."
},
{
"slug": "cooks",
"title": "Cooks",
"exposure": 3,
"rationale": "The core of the job involves physical dexterity, sensory judgment (taste and smell), and real-time adaptation in a high-heat, unpredictable kitchen environment. While AI-driven automation is already impacting fast food and routine institutional cooking, high-end restaurant and private household cooking remain protected by the need for complex manual skills and human creativity."
},
{
"slug": "correctional-officers",
"title": "Correctional officers and bailiffs",
"exposure": 3,
"rationale": "The core duties are physical and interpersonal, requiring real-time human presence to maintain security, conduct searches, and physically restrain individuals. AI exposure is limited to peripheral administrative tasks like report writing and log entry, or enhancing surveillance systems, but it cannot replace the physical oversight and intervention required in correctional and courtroom environments."
},
{
"slug": "cost-estimators",
"title": "Cost estimators",
"exposure": 8,
"rationale": "Cost estimation is a data-intensive, digital-first occupation centered on analyzing blueprints, technical documents, and historical databases to predict costs. AI and advanced software are already driving a projected decline in employment by automating routine calculations and simulations, though human oversight remains necessary for complex site-specific variables and high-stakes negotiations."
},
{
"slug": "court-reporters",
"title": "Court reporters and simultaneous captioners",
"exposure": 9,
"rationale": "The core product of this occupation is a verbatim digital transcript, a task where AI speech-to-text and natural language processing are already highly proficient. While legal requirements for human oversight and the need to clarify inaudible speech provide a temporary buffer, the rapid advancement of AI in transcription and real-time captioning creates extreme pressure for automation and massive productivity gains that reduce the need for human workers."
},
{
"slug": "craft-and-fine-artists",
"title": "Craft and fine artists",
"exposure": 6,
"rationale": "This occupation is a hybrid of physical craftsmanship and digital creation. While craft artists (potters, glassblowers) and sculptors have low exposure due to the physical nature of their work, digital artists and illustrators face very high exposure as AI can now generate high-quality imagery and complex designs from text prompts. The overall score reflects this split, as AI significantly impacts the commercial and digital segments of the field while leaving traditional physical mediums largely intact."
},
{
"slug": "credit-counselors",
"title": "Credit counselors",
"exposure": 7,
"rationale": "The core tasks of credit counseling\u2014analyzing financial data, creating budgets, and explaining debt management options\u2014are fundamentally digital and information-based, making them highly susceptible to AI automation. While the role requires interpersonal skills and emotional support for clients in financial distress, AI can already perform the complex calculations and personalized recommendation generation that constitute the bulk of the technical work."
},
{
"slug": "customer-service-representatives",
"title": "Customer service representatives",
"exposure": 9,
"rationale": "The core duties of this role\u2014answering questions, processing orders, and resolving complaints\u2014are fundamentally digital and information-based, making them highly susceptible to AI-driven automation. Large Language Models and AI agents are already capable of handling complex natural language interactions, and the BLS specifically projects a decline in employment due to automation in this sector."
},
{
"slug": "dancers-and-choreographers",
"title": "Dancers and choreographers",
"exposure": 2,
"rationale": "The core of this occupation is physical performance, athleticism, and real-time human interaction in physical spaces, which AI cannot replicate. While AI may assist choreographers with music selection or administrative tasks, the fundamental value of the work lies in the human body's movement and live artistic expression."
},
{
"slug": "data-scientists",
"title": "Data scientists",
"exposure": 9,
"rationale": "Data science is a fully digital occupation centered on coding, statistical modeling, and data analysis\u2014all areas where AI is rapidly achieving parity or superiority. While human judgment is still needed for business context and ethical oversight, AI can now automate significant portions of the data pipeline, including cleaning raw data, generating complex code, and even suggesting optimal model architectures."
},
{
"slug": "database-administrators",
"title": "Database administrators and architects",
"exposure": 9,
"rationale": "This occupation is entirely digital, involving coding (SQL), system architecture, and data management\u2014all areas where AI is exceptionally proficient. AI can already automate routine DBA tasks like performance tuning, query optimization, and security monitoring, while LLMs are highly capable of generating and debugging the complex schemas and scripts used by database architects."
},
{
"slug": "delivery-truck-drivers-and-driver-sales-workers",
"title": "Delivery truck drivers and driver/sales workers",
"exposure": 3,
"rationale": "While AI and autonomous vehicle technology are advancing, the core of this job involves significant physical labor, such as loading/unloading cargo and navigating unpredictable 'last-mile' environments. AI may optimize routing and assist with sales communication, but the physical requirement to move goods from a vehicle to a customer's door remains a major barrier to full automation."
},
{
"slug": "dental-and-ophthalmic-laboratory-technicians-and-medical-appliance-technicians",
"title": "Dental and ophthalmic laboratory technicians and medical appliance technicians",
"exposure": 5,
"rationale": "This occupation is a hybrid of physical craftsmanship and digital design, with AI and automation already driving a projected decline in dental technician roles. While the physical assembly, polishing, and repair of medical devices require manual dexterity, the 'knowledge' phase of the job\u2014interpreting prescriptions and designing appliances\u2014is rapidly shifting toward AI-integrated CAD/CAM software and 3D printing."
},
{
"slug": "dental-assistants",
"title": "Dental assistants",
"exposure": 3,
"rationale": "The core of the job involves physical, hands-on tasks such as sterilizing instruments, assisting in surgeries, and providing direct patient care that requires human presence and manual dexterity. While AI can significantly automate the administrative and digital aspects of the role\u2014such as scheduling, billing, and preliminary X-ray analysis\u2014the majority of the workday is spent in the physical dental operatory where AI cannot currently replace human labor."
},
{
"slug": "dental-hygienists",
"title": "Dental hygienists",
"exposure": 2,
"rationale": "The core of this occupation involves high-precision manual dexterity and physical procedures performed on patients in a clinical setting, which AI cannot replicate. While AI may assist with peripheral tasks like analyzing X-rays or automating patient documentation, the primary work of cleaning teeth and conducting physical exams remains insulated from automation."
},
{
"slug": "dentists",
"title": "Dentists",
"exposure": 3,
"rationale": "The core of dentistry involves highly precise physical procedures, manual dexterity, and real-time patient interaction in a clinical setting, which are resistant to AI automation. While AI will significantly enhance diagnostic accuracy through X-ray analysis and streamline administrative practice management, the physical requirement of performing surgery and restorative work creates a strong barrier to high exposure."
},
{
"slug": "desktop-publishers",
"title": "Desktop publishers",
"exposure": 9,
"rationale": "The work product is entirely digital and involves routine information processing, layout design, and basic editing\u2014all areas where AI is highly proficient. Generative AI and automated layout tools can now handle text integration, image adjustment, and formatting with minimal human intervention, leading to a projected decline in the occupation as these tasks are automated or absorbed by other roles using AI tools."
},
{
"slug": "diagnostic-medical-sonographers",
"title": "Diagnostic medical sonographers",
"exposure": 5,
"rationale": "The occupation is a hybrid of physical and digital work; while AI is rapidly advancing in image analysis and diagnostic assistance, the role requires significant physical presence to position patients and manipulate transducers with high hand-eye coordination. Furthermore, the interpersonal aspect of patient care and the real-time physical adjustments needed during a scan provide a substantial barrier to full automation."
},
{
"slug": "diesel-service-technicians-and-mechanics",
"title": "Diesel service technicians and mechanics",
"exposure": 3,
"rationale": "The core of this occupation is highly physical, requiring manual dexterity, strength, and real-time problem-solving in a hands-on environment. While AI will significantly enhance diagnostic software and technical manuals used by technicians, it cannot perform the physical repairs, parts replacement, or tool manipulation that define the job."
},
{
"slug": "dietitians-and-nutritionists",
"title": "Dietitians and nutritionists",
"exposure": 6,
"rationale": "The core tasks of analyzing nutritional data, interpreting research, and creating personalized meal plans are highly digital and data-driven, making them susceptible to AI automation and augmentation. However, the role requires significant interpersonal counseling, empathy, and clinical judgment in medical settings, which provides a buffer against full automation."
},
{
"slug": "drafters",
"title": "Drafters",
"exposure": 9,
"rationale": "Drafters perform work that is almost entirely digital, converting conceptual sketches into technical CAD and BIM models. AI is rapidly advancing in generative design and automated technical drawing, allowing for the immediate translation of engineering specifications into precise models, which significantly reduces the human labor required for these tasks."
},
{
"slug": "drywall-and-ceiling-tile-installers-and-tapers",
"title": "Drywall installers, ceiling tile installers, and tapers",
"exposure": 1,
"rationale": "The core tasks of this occupation are entirely physical, involving manual labor, dexterity, and movement in unpredictable construction environments. While AI might assist with peripheral administrative tasks or material estimation, it cannot perform the physical installation, cutting, or finishing of drywall and ceiling tiles."
},
{
"slug": "economists",
"title": "Economists",
"exposure": 9,
"rationale": "Economists perform work that is almost entirely digital, involving data analysis, mathematical modeling, and technical writing. AI is exceptionally proficient at the core tasks of this role, including processing large datasets, identifying statistical patterns, and generating reports, which significantly increases productivity and reduces the number of human workers needed for routine analysis."
},
{
"slug": "editors",
"title": "Editors",
"exposure": 9,
"rationale": "Editing is a fully digital occupation centered on language processing, a core strength of Large Language Models. AI can already perform high-level copy editing, fact-checking, and rewriting, significantly increasing individual productivity and reducing the total number of human editors required for routine content management."
},
{
"slug": "electrical-and-electronics-engineering-technicians",
"title": "Electrical and electronic engineering technologists and technicians",
"exposure": 5,
"rationale": "This occupation involves a significant amount of physical labor, such as assembling prototypes, soldering circuitry, and repairing hardware, which provides a buffer against full automation. However, a substantial portion of the role involves digital tasks like drafting schematics, analyzing test data, and writing technical reports\u2014all areas where AI is becoming highly proficient. AI will likely augment their troubleshooting capabilities and automate the documentation aspects of the job, increasing individual productivity but potentially reducing overall demand."
},
{
"slug": "electrical-and-electronics-engineers",
"title": "Electrical and electronics engineers",
"exposure": 7,
"rationale": "The core work of designing circuits, modeling systems, and writing documentation is digital and highly susceptible to AI-driven automation and optimization. While physical testing, site visits, and manufacturing supervision provide a buffer, the rapid advancement of AI in CAD, simulation, and coding significantly increases the productivity and exposure of the knowledge-work components."
},
{
"slug": "electrical-and-electronics-installers-and-repairers",
"title": "Electrical and electronics installers and repairers",
"exposure": 3,
"rationale": "The core of this occupation involves physical manipulation of hardware, manual troubleshooting in unpredictable environments, and the use of hand tools, which are highly resistant to AI automation. While AI can significantly enhance diagnostic software and predictive maintenance schedules, the physical acts of disassembling, repairing, and reassembling complex electrical components require human dexterity and presence."
},
{
"slug": "line-installers-and-repairers",
"title": "Electrical power-line installers and repairers",
"exposure": 2,
"rationale": "The core work is highly physical, involving climbing towers, operating heavy machinery, and manual repair in unpredictable outdoor environments. While AI can assist with remote monitoring and diagnostic data analysis, it cannot perform the high-risk physical labor required to install or repair high-voltage infrastructure."
},
{
"slug": "electricians",
"title": "Electricians",
"exposure": 2,
"rationale": "The core work of an electrician is highly physical, involving manual installation, repair, and navigation of complex, unpredictable physical environments like construction sites and crawl spaces. While AI may assist with peripheral tasks like blueprint analysis, diagnostic calculations, or scheduling, it cannot perform the tactile labor or real-time physical problem-solving required for the job."
},
{
"slug": "electro-mechanical-technicians",
"title": "Electro-mechanical and mechatronics technologists and technicians",
"exposure": 4,
"rationale": "This occupation involves a significant amount of physical labor, including soldering, operating metalworking machinery, and repairing hydraulic systems, which provides a strong barrier against full AI automation. However, AI will increasingly assist with the knowledge-based aspects of the job, such as analyzing test results, interpreting complex schematics, and diagnosing faults in the very robotic systems these technicians maintain."
},
{
"slug": "elementary-middle-and-high-school-principals",
"title": "Elementary, middle, and high school principals",
"exposure": 6,
"rationale": "Principals perform significant knowledge work\u2014such as curriculum development, budget management, and data analysis of student performance\u2014that is highly susceptible to AI augmentation and automation. However, the core of the role requires physical presence for school safety, real-time crisis management, and high-stakes interpersonal interactions with students, parents, and staff that AI cannot currently replicate."
},
{
"slug": "elevator-installers-and-repairers",
"title": "Elevator and escalator installers and repairers",
"exposure": 3,
"rationale": "The core of this occupation involves highly physical, manual labor in unpredictable environments, such as elevator shafts and machine rooms, which provides a strong barrier against AI automation. While AI can significantly enhance diagnostic troubleshooting and predictive maintenance through computerized control systems, the actual installation, repair, and physical manipulation of heavy mechanical components still require a human presence. AI acts as a sophisticated tool for the technician rather than a replacement for the physical work."
},
{
"slug": "emergency-management-directors",
"title": "Emergency management directors",
"exposure": 6,
"rationale": "The role involves significant digital knowledge work, such as analyzing hazards, drafting complex response plans, and managing federal funding applications, all of which are highly susceptible to AI augmentation. However, the core of the job requires high-stakes real-time decision-making, physical presence at command centers during disasters, and intense interpersonal coordination with government officials and the public, providing a buffer against full automation."
},
{
"slug": "emts-and-paramedics",
"title": "EMTs and paramedics",
"exposure": 3,
"rationale": "The core of this occupation involves physical intervention, manual dexterity, and real-time human presence in unpredictable environments, which are highly resistant to AI. While AI will significantly assist with peripheral tasks like EKG interpretation, diagnostic decision support, and automated documentation, the physical requirements of patient transport and hands-on emergency care remain essential human functions."
},
{
"slug": "entertainment-and-recreation-managers",
"title": "Entertainment and recreation managers",
"exposure": 5,
"rationale": "This role involves a significant amount of digital knowledge work, such as budgeting, scheduling, and strategic planning, which is highly susceptible to AI optimization. However, the core of the job requires physical presence to inspect facilities, manage real-time emergencies, and provide high-touch interpersonal leadership and customer service in physical environments like parks and fitness centers."
},
{
"slug": "environmental-engineering-technicians",
"title": "Environmental engineering technologists and technicians",
"exposure": 5,
"rationale": "This occupation is a hybrid of physical fieldwork and digital knowledge work. While AI can significantly automate data analysis, report reviewing, and regulatory compliance checks, it cannot physically collect soil and water samples, maintain field equipment, or perform on-site hazardous material disposal. The BLS already notes that automated testing is increasing productivity, which limits job growth even as the core physical tasks remain human-centric."
},
{
"slug": "environmental-engineers",
"title": "Environmental engineers",
"exposure": 6,
"rationale": "Environmental engineering involves a significant amount of digital knowledge work, including data analysis, system design, and report writing, which are highly susceptible to AI augmentation. However, the role is insulated by the necessity for physical site inspections, regulatory compliance monitoring in the field, and the legal accountability associated with Professional Engineer (PE) licensure."
},
{
"slug": "environmental-science-and-protection-technicians",
"title": "Environmental science and protection technicians",
"exposure": 4,
"rationale": "The core of this role involves physical fieldwork, such as collecting soil and water samples and inspecting facilities, which AI cannot perform. However, AI will significantly impact the digital aspects of the job, including data analysis, the preparation of reports and charts, and the modeling of environmental impacts."
},
{
"slug": "environmental-scientists-and-specialists",
"title": "Environmental scientists and specialists",
"exposure": 6,
"rationale": "This occupation involves a significant amount of digital knowledge work, including data analysis, report writing, and regulatory compliance, which are highly susceptible to AI augmentation. However, the role is anchored by a physical component involving fieldwork, site inspections, and laboratory sample analysis that AI cannot currently replicate. AI will likely serve as a powerful tool for modeling environmental impacts and drafting technical documents, increasing individual productivity while leaving the physical data collection and stakeholder relationship management to humans."
},
{
"slug": "epidemiologists",
"title": "Epidemiologists",
"exposure": 7,
"rationale": "Epidemiology is a data-intensive knowledge profession where core tasks like statistical analysis, pattern recognition in large datasets, and literature reviews are highly susceptible to AI augmentation. While the role requires human judgment for policy-making, community outreach, and field investigations, the shift toward digital health records and automated surveillance systems significantly increases the productivity and exposure of the occupation."
},
{
"slug": "exercise-physiologists",
"title": "Exercise physiologists",
"exposure": 4,
"rationale": "The role involves a significant amount of physical presence, including conducting stress tests, measuring vital signs with medical equipment, and providing hands-on rehabilitative care. While AI can highly automate the digital aspects of the job\u2014such as analyzing medical history, processing biometric data, and generating personalized exercise regimens\u2014the core requirement for real-time human interaction, physical assessment, and clinical supervision in a medical setting limits its total exposure."
},
{
"slug": "farmers-ranchers-and-other-agricultural-managers",
"title": "Farmers, ranchers, and other agricultural managers",
"exposure": 4,
"rationale": "The role involves a significant amount of physical labor, equipment maintenance, and real-time management of biological systems that cannot be digitized. However, AI will heavily impact the management side of the job, including crop yield prediction, financial planning, and automated resource allocation, making individual managers significantly more productive and contributing to further farm consolidation."
},
{
"slug": "fashion-designers",
"title": "Fashion designers",
"exposure": 7,
"rationale": "Fashion design is increasingly digital, utilizing CAD and graphics software for sketching, trend analysis, and virtual modeling\u2014all areas where generative AI is rapidly advancing. While the physical aspects of selecting fabrics, creating prototypes, and overseeing production provide a buffer, the core creative and analytical tasks are highly susceptible to AI-driven automation and productivity gains."
},
{
"slug": "film-and-video-editors-and-camera-operators",
"title": "Film and video editors and camera operators",
"exposure": 7,
"rationale": "This occupation is a hybrid of physical camera operation and digital video editing. While camera operators have a physical barrier to AI due to the need for on-site equipment management and real-world positioning, editors work entirely in digital environments where AI is rapidly automating tasks like color grading, sound syncing, and even rough-cut generation. The rise of generative video and AI-driven post-production tools significantly increases the productivity of each worker, potentially reducing the total number of editors needed for complex projects."
},
{
"slug": "financial-analysts",
"title": "Financial analysts",
"exposure": 9,
"rationale": "Financial analysts perform work that is almost entirely digital, involving the processing of large datasets, trend analysis, and the generation of reports\u2014all areas where AI excels. While high-level strategy and client relationships provide some insulation, the core tasks of data evaluation, risk assessment, and financial modeling are being rapidly automated or significantly enhanced by AI, leading to major restructuring of the occupation."
},
{
"slug": "financial-clerks",
"title": "Financial clerks",
"exposure": 9,
"rationale": "Financial clerks perform routine, digital-first tasks such as data entry, record updating, and basic financial calculations that are highly susceptible to AI automation. While some roles involve customer interaction, the core functions\u2014processing claims, verifying credit, and managing payroll\u2014are increasingly handled by AI-driven software, leading to a projected decline in employment."
},
{
"slug": "financial-examiners",
"title": "Financial examiners",
"exposure": 8,
"rationale": "Financial examiners perform work that is almost entirely digital, involving the analysis of balance sheets, loan documentation, and regulatory text. AI is exceptionally well-suited for automating the core tasks of this role, such as identifying anomalies in financial data, summarizing meeting minutes, and checking compliance against complex legal frameworks, though human judgment remains necessary for final risk assessments and high-level management evaluations."
},
{
"slug": "financial-managers",
"title": "Financial managers",
"exposure": 7,
"rationale": "Financial management is a predominantly digital knowledge-work occupation focused on data analysis, reporting, and forecasting, all of which are highly susceptible to AI automation and enhancement. While the role requires significant human judgment, strategic advisory, and leadership, the core technical tasks of monitoring financial details and preparing statements are being rapidly transformed by AI tools."
},
{
"slug": "fire-inspectors-and-investigators",
"title": "Fire inspectors",
"exposure": 4,
"rationale": "The role requires a significant physical presence for onsite inspections, evidence collection in debris, and forest patrolling, which provides a natural barrier to AI. However, AI can substantially assist with digital tasks such as reviewing building blueprints, analyzing fire scene data, and automating the documentation of code violations and legal reports."
},
{
"slug": "firefighters",
"title": "Firefighters",
"exposure": 3,
"rationale": "The core duties of firefighting are intensely physical and require real-time presence in unpredictable, hazardous environments where AI cannot currently operate. While AI may enhance peripheral tasks like incident reporting, equipment maintenance scheduling, and predictive wildfire modeling, the essential work of rescuing victims and extinguishing fires remains a human-centric manual task."
},
{
"slug": "fishers-and-related-fishing-workers",
"title": "Fishing and hunting workers",
"exposure": 2,
"rationale": "The core duties are highly physical and take place in unpredictable outdoor environments, requiring manual labor, mechanical repair, and real-time physical coordination. AI's impact is limited to peripheral enhancements in fish-finding sonar, GPS navigation, and regulatory data processing, but it cannot replace the physical act of hauling nets, trapping animals, or maintaining vessels."
},
{
"slug": "fitness-trainers-and-instructors",
"title": "Fitness trainers and instructors",
"exposure": 3,
"rationale": "The core of this occupation requires physical presence to demonstrate exercises, correct form in real-time to prevent injury, and provide high-touch motivational support. While AI can automate peripheral tasks like workout programming, nutrition planning, and social media marketing, it cannot replace the physical safety monitoring and interpersonal accountability that define the role."
},
{
"slug": "flight-attendants",
"title": "Flight attendants",
"exposure": 3,
"rationale": "The core responsibilities of flight attendants are physical and interpersonal, involving safety enforcement, emergency medical response, and manual service tasks that AI cannot perform. While AI may assist with peripheral digital tasks like report writing or passenger manifest management, the role is largely defined by a physical presence required by law for passenger safety."
},
{
"slug": "tile-and-marble-setters",
"title": "Flooring installers and tile and stone setters",
"exposure": 1,
"rationale": "The core duties of this occupation are entirely physical, involving manual dexterity, heavy lifting, and real-time adaptation to irregular physical surfaces in unpredictable environments. While AI might assist with minor administrative tasks or design visualization, it cannot perform the tactile labor of cutting, laying, and finishing materials on-site."
},
{
"slug": "floral-designers",
"title": "Floral designers",
"exposure": 3,
"rationale": "The core of the job is a physical craft involving the handling of perishable biological materials and manual assembly, which AI cannot perform. However, AI can significantly assist with peripheral digital tasks such as generating design concepts for customers, managing inventory, and automating customer service for online orders."
},
{
"slug": "food-and-beverage-serving-and-related-workers",
"title": "Food and beverage serving and related workers",
"exposure": 3,
"rationale": "The core of this occupation involves physical labor, such as clearing tables, carrying heavy trays, and cleaning, which are difficult to automate with current robotics. However, AI is increasingly handling digital peripheral tasks like order-taking via kiosks or voice-AI drive-thrus and managing reservations, which reduces the need for human staff in front-of-house roles."
},
{
"slug": "food-preparation-workers",
"title": "Food preparation workers",
"exposure": 2,
"rationale": "The core duties are highly physical and require manual dexterity in unpredictable kitchen environments, which are difficult for AI to automate directly. While AI might optimize inventory management or scheduling, the primary tasks of washing, cutting, and preparing food remain resistant to digital replacement, though some labor may be displaced by industrial food processing automation."
},
{
"slug": "food-and-tobacco-processing-workers",
"title": "Food processing equipment workers",
"exposure": 3,
"rationale": "The core of this occupation involves physical labor, such as loading ingredients, cleaning machinery, and manual quality checks, which are resistant to AI. While AI can optimize recipes, monitor sensor data, and automate some equipment controls, the requirement for human presence in a physical manufacturing environment to handle unpredictable mechanical issues and sanitation limits overall exposure."
},
{
"slug": "food-service-managers",
"title": "Food service managers",
"exposure": 4,
"rationale": "While AI can significantly automate administrative tasks like staff scheduling, inventory ordering, and payroll management, the core of the job requires physical presence and real-time human interaction. Managers must physically inspect facilities for safety, handle unpredictable interpersonal conflicts with staff and customers, and perform manual labor during peak hours, which provides a strong buffer against full automation."
},
{
"slug": "forensic-science-technicians",
"title": "Forensic science technicians",
"exposure": 5,
"rationale": "The role is a hybrid of physical evidence collection and digital analysis. While AI can significantly automate pattern recognition (fingerprints, ballistics) and statistical reporting, the job requires physical presence at crime scenes to collect samples and the human credibility necessary to testify in court as an expert witness."
},
{
"slug": "forest-and-conservation-workers",
"title": "Forest and conservation workers",
"exposure": 2,
"rationale": "The core duties of this occupation are highly physical and performed in unpredictable outdoor environments, such as planting seedlings, clearing brush, and suppressing forest fires. While AI and remote sensing can assist with peripheral tasks like tree counting and health monitoring, the primary labor-intensive functions cannot be automated by digital AI systems."
},
{
"slug": "fundraisers",
"title": "Fundraisers",
"exposure": 7,
"rationale": "Fundraising involves significant digital work including donor research, data analysis, and the creation of promotional messaging, all of which are highly susceptible to AI automation and enhancement. While major gift solicitation and event management require high-level interpersonal skills and physical presence, the majority of the administrative, analytical, and communication-based tasks are moving toward AI-driven workflows."
},
{
"slug": "funeral-service-occupations",
"title": "Funeral service workers",
"exposure": 3,
"rationale": "The core of this occupation involves physical tasks like preparing remains and transporting the deceased, alongside high-stakes interpersonal work providing grief counseling and comfort. While AI can streamline administrative duties like filing death certificates, scheduling, and writing obituaries, it cannot replace the physical presence and emotional intelligence required for funeral services."
},
{
"slug": "gaming-services-occupations",
"title": "Gambling services workers",
"exposure": 4,
"rationale": "The occupation is a hybrid of physical hospitality and digital-adjacent information processing. While AI and automation are significantly impacting sports book writers and slot operations through online platforms and automated betting, the core of the job for dealers and managers involves physical presence, manual dexterity, and real-time human interaction to ensure a 'pleasant experience' and monitor for physical rule violations."
},
{
"slug": "general-maintenance-and-repair-workers",
"title": "General maintenance and repair workers",
"exposure": 2,
"rationale": "The core of this occupation involves physical labor, manual dexterity, and real-time problem-solving in unpredictable physical environments, which are currently beyond the reach of AI and robotics. AI may assist with peripheral tasks like diagnosing equipment issues via computer vision or managing supply orders, but the primary work of repairing buildings and machinery remains a hands-on human requirement."
},
{
"slug": "general-office-clerks",
"title": "General office clerks",
"exposure": 9,
"rationale": "The core duties of this role\u2014data entry, document formatting, scheduling, and information processing\u2014are almost entirely digital and routine, making them highly susceptible to AI automation. While some physical tasks like handling mail or greeting visitors remain, the vast majority of the workload can be absorbed by AI agents and automated software, as reflected in the BLS's projected decline for the occupation."
},
{
"slug": "genetic-counselors",
"title": "Genetic counselors",
"exposure": 6,
"rationale": "Genetic counselors perform high-level knowledge work, including analyzing complex DNA data and medical histories, which is highly susceptible to AI optimization. However, the core of the role involves providing psychological support and navigating sensitive ethical decisions with patients, requiring a level of empathy and human connection that limits full automation."
},
{
"slug": "geographers",
"title": "Geographers",
"exposure": 8,
"rationale": "Geographers primarily perform digital knowledge work, including data analysis, GIS modeling, and report writing, all of which are highly susceptible to AI automation and enhancement. While some fieldwork exists, the core of the profession involves processing satellite imagery and census data\u2014tasks where AI and machine learning are rapidly becoming more efficient than humans."
},
{
"slug": "geological-and-petroleum-technicians",
"title": "Geological and hydrologic technicians",
"exposure": 5,
"rationale": "This occupation is a hybrid of physical fieldwork and digital data analysis. While AI and automation (like drones and remote sensors) are increasingly handling data collection and mapping, the role still requires significant physical presence for equipment maintenance, manual sample collection, and laboratory testing that cannot be fully digitized."
},
{
"slug": "geoscientists",
"title": "Geoscientists",
"exposure": 5,
"rationale": "Geoscientists have a balanced mix of physical and digital work. While AI is highly effective at analyzing seismic data, GIS mapping, and predictive modeling, the core of the job requires physical fieldwork, sample collection in remote environments, and laboratory testing that AI cannot perform. Consequently, AI will significantly enhance their analytical productivity but cannot replace the essential physical presence and real-world data gathering required for the profession."
},
{
"slug": "glaziers",
"title": "Glaziers",
"exposure": 2,
"rationale": "The core work of a glazier is highly physical, requiring manual dexterity, strength, and real-time problem-solving in unpredictable construction environments. While AI might assist with peripheral tasks like blueprint analysis or precision measurements, the actual installation, cutting, and securing of glass in the physical world remain well beyond current AI and robotic capabilities."
},
{
"slug": "graphic-designers",
"title": "Graphic designers",
"exposure": 9,
"rationale": "Graphic design is a fundamentally digital occupation where core tasks\u2014image generation, layout creation, and photo editing\u2014are being rapidly transformed by generative AI. While high-level creative direction and client management remain human-centric, the automation of production tasks significantly increases individual productivity, likely reducing the total number of designers needed for routine commercial work."
},
{
"slug": "grounds-maintenance-workers",
"title": "Grounds maintenance workers",
"exposure": 1,
"rationale": "The core duties of this occupation are almost entirely physical and performed in unpredictable outdoor environments, which provides a strong natural barrier against AI. While autonomous mowers or drones may assist with specific tasks, the majority of the work\u2014such as planting, tree climbing, and complex manual maintenance\u2014requires human dexterity and physical presence that AI cannot replicate."
},
{
"slug": "hand-laborers-and-material-movers",
"title": "Hand laborers and material movers",
"exposure": 2,
"rationale": "The core duties of this occupation are fundamentally physical, involving the manual movement, cleaning, and packing of heavy materials in unpredictable real-world environments. While AI can optimize logistics, routing, and inventory tracking, the physical labor itself is resistant to AI and requires advanced robotics rather than software-based intelligence to automate."
},
{
"slug": "hazardous-materials-removal-workers",
"title": "Hazardous materials removal workers",
"exposure": 2,
"rationale": "The core of this occupation involves physical labor in unpredictable environments, such as scrubbing surfaces, constructing containment areas, and operating heavy machinery. While AI may assist with peripheral tasks like record-keeping, regulatory compliance checks, or analyzing sensor data for radiation levels, the primary work requires a physical human presence to navigate complex, hazardous sites."
},
{
"slug": "health-and-safety-engineers",
"title": "Health and safety engineers",
"exposure": 5,
"rationale": "This occupation involves a significant mix of digital knowledge work and physical presence. While AI can assist in reviewing equipment plans, analyzing accident data, and interpreting complex safety regulations, the core duties require physical inspections of facilities, interviewing employees for investigations, and directing the hands-on installation of safety devices."
},
{
"slug": "health-educators",
"title": "Health education specialists",
"exposure": 6,
"rationale": "A significant portion of the role involves digital knowledge work such as analyzing community health data, writing grant proposals, and creating educational materials, all of which are highly susceptible to AI augmentation. However, the core requirements of community advocacy, empathetic interpersonal interaction, and physical presence for local events and training provide a buffer against full automation."
},
{
"slug": "health-information-technologists-and-medical-registrars",
"title": "Health information technologists and medical registrars",
"exposure": 8,
"rationale": "This occupation is almost entirely digital, involving the analysis, organization, and validation of clinical data within computerized systems. AI is exceptionally well-suited for core tasks like data abstraction, classification coding, and generating reports from large datasets, which significantly increases the risk of automation and restructuring."
},
{
"slug": "heating-air-conditioning-and-refrigeration-mechanics-and-installers",
"title": "Heating, air conditioning, and refrigeration mechanics and installers",
"exposure": 2,
"rationale": "The core of this occupation involves physical labor, manual dexterity, and real-time problem solving in unpredictable physical environments, which are highly resistant to AI. While AI may assist with peripheral tasks like diagnostic software, scheduling, or energy load calculations, it cannot perform the physical installation, repair, or handling of hazardous materials required for the job."
},
{
"slug": "heavy-and-tractor-trailer-truck-drivers",
"title": "Heavy and tractor-trailer truck drivers",
"exposure": 5,
"rationale": "While the core task of driving is physical and occurs in a complex real-world environment, it is a primary target for autonomous vehicle AI, which could eventually automate long-haul highway segments. However, the job still requires significant physical presence for non-driving tasks like securing cargo, conducting inspections, and navigating 'last-mile' urban environments that remain challenging for current AI."
},
{
"slug": "heavy-vehicle-and-mobile-equipment-service-technicians",
"title": "Heavy vehicle and mobile equipment service technicians",
"exposure": 3,
"rationale": "The core of this occupation is highly physical, involving manual dexterity, strength, and real-world troubleshooting in unpredictable environments like farms and construction sites. While AI will significantly enhance diagnostic software and predictive maintenance logs, it cannot perform the physical disassembly, repair, and reassembly of heavy mechanical components."
},
{
"slug": "high-school-teachers",
"title": "High school teachers",
"exposure": 7,
"rationale": "High school teachers are heavily exposed because core digital tasks like lesson planning, content creation, and grading are highly susceptible to AI automation and augmentation. While the physical requirement of classroom management and interpersonal mentorship provides a buffer, AI's ability to provide personalized tutoring and automated feedback significantly reshapes the instructional delivery and administrative workload of the profession."
},
{
"slug": "historians",
"title": "Historians",
"exposure": 7,
"rationale": "Historians perform high-level knowledge work\u2014researching, analyzing, and writing\u2014that is increasingly digital and highly susceptible to AI-driven efficiency gains in document processing and synthesis. While the job requires human judgment and physical interaction with artifacts or archives, the core output of reports and articles faces significant restructuring as AI tools become capable of parsing vast historical datasets and drafting complex narratives."
},
{
"slug": "home-health-aides-and-personal-care-aides",
"title": "Home health and personal care aides",
"exposure": 2,
"rationale": "The core duties of this occupation are fundamentally physical and interpersonal, involving manual tasks like bathing, dressing, and lifting patients in unpredictable home environments. While AI may assist with peripheral administrative tasks like scheduling or monitoring vital signs, it cannot replace the essential human presence and physical labor required for personal care."
},
{
"slug": "human-resources-managers",
"title": "Human resources managers",
"exposure": 7,
"rationale": "Human resources management is a digital-heavy knowledge occupation where AI can significantly automate recruitment screening, payroll processing, and regulatory compliance reporting. While the role requires high-level interpersonal skills for dispute mediation and strategic leadership, the vast majority of the administrative and analytical tasks are highly susceptible to AI-driven productivity gains and restructuring."
},
{
"slug": "human-resources-specialists",
"title": "Human resources specialists",
"exposure": 7,
"rationale": "The core tasks of recruiting, screening, and administrative record-keeping are highly digital and data-driven, making them prime targets for AI automation and augmentation. While the role requires significant interpersonal interaction and human judgment for interviewing and employee relations, AI can now handle complex scheduling, initial candidate vetting, and policy inquiries, significantly increasing individual worker productivity and reducing the need for entry-level administrative staff."
},
{
"slug": "hydrologists",
"title": "Hydrologists",
"exposure": 6,
"rationale": "Hydrologists have a high exposure to AI because a significant portion of their work involves data analysis, computer modeling, and report writing\u2014tasks where AI is rapidly advancing. However, the physical requirement of field work, such as collecting water samples and measuring streamflow in remote locations, provides a substantial buffer against full automation."
},
{
"slug": "industrial-designers",
"title": "Industrial designers",
"exposure": 8,
"rationale": "Industrial design is a predominantly digital occupation where core tasks like sketching, 3D modeling, and rendering are being rapidly transformed by generative AI and advanced CAD automation. While the role requires physical prototyping and cross-functional collaboration, the vast majority of the design process is computer-based, making it highly susceptible to AI-driven productivity gains and workflow restructuring."
},
{
"slug": "industrial-engineering-technicians",
"title": "Industrial engineering technologists and technicians",
"exposure": 6,
"rationale": "This occupation involves a significant amount of digital work, such as analyzing production costs, using CAD/CAM software, and conducting statistical studies, all of which are highly susceptible to AI automation. However, the role also requires physical presence on the manufacturing floor to observe workers, assess machinery performance, and evaluate physical layouts, which provides a partial buffer against full automation."
},
{
"slug": "industrial-engineers",
"title": "Industrial engineers",