forked from jfroggatt11/White-Paper-Toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.json
More file actions
2337 lines (2337 loc) · 134 KB
/
resources.json
File metadata and controls
2337 lines (2337 loc) · 134 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
[
{
"id": "ai-insights-generative-ai-2025",
"title": "AI Insights: Generative AI",
"url": "https://www.gov.uk/government/publications/ai-insights/ai-insights-generative-ai-html",
"description": "UK\u2019s Government Digital Service explains that generative AI is a subset of artificial intelligence able to produce text, images or other outputs using probabilistic models trained on large datasets. The guidance describes how large language models tokenise and embed input text before using transformer networks to generate outputs, and it stresses that these models replicate patterns without true understanding or sentience\u3010263830693408424\u2020L129-L164\u3011.",
"barrier_category": "digital-and-tech-constraints",
"barriers": [
"legacy-systems-and-fragmented-it",
"lack-of-integration-across-platforms",
"limited-scalability-or-flexibility-of-solutions"
],
"personas": [
"Project",
"Programme",
"Business"
],
"tags": [
"generative-ai",
"large-language-models",
"ai-basics",
"tokenisation",
"embeddings"
],
"date": "2025-09-11"
},
{
"id": "ai-insights-prompt-engineering-2025",
"title": "AI Insights: Prompt Engineering",
"url": "https://www.gov.uk/government/publications/ai-insights/ai-insights-prompt-engineering-html",
"description": "This AI Insights guidance introduces prompt engineering \u2013 the practice of constructing clear, structured prompts for large language models. It compares prompts to recipes, emphasising that the data, examples and instructions we provide shape the output, and it explains that well\u2011designed prompts improve LLM accuracy and safety while vague prompts risk unexpected results\u3010987026297617710\u2020L147-L168\u3011. The document notes that prompt engineering must prioritise safety by sanitising queries to prevent harmful or unsafe instructions\u3010987026297617710\u2020L157-L179\u3011.",
"barrier_category": "risk-ethics-and-assurance",
"barriers": [
"lack-of-ethical-governance",
"weak-assurance-frameworks-for-data-and-ai",
"unclear-accountability-for-digital-risk"
],
"personas": [
"Project",
"Programme",
"Business"
],
"tags": [
"prompt-engineering",
"large-language-models",
"safe-ai",
"llm-instructions",
"ai-guidance"
],
"date": "2025-09-11"
},
{
"id": "seven-lessons-in-ai-2025",
"title": "Seven lessons in AI (Project Magazine)",
"url": "https://www.apm.org.uk/blog/seven-lessons-in-artificial-intelligence/",
"description": "Association for Project Management author Thomas Bloor distils lessons from organisations experimenting with AI. He advises leaders to champion AI adoption, run experiments to learn quickly, control risk and evaluate tools, refine solutions through feedback loops, scale successful pilots and invest in skills so that teams are comfortable using AI\u3010647901680357378\u2020L1216-L1323\u3011.",
"barrier_category": "skill-and-culture-gaps",
"barriers": [
"lack-of-digital-skills-or-training",
"cultural-resistance-to-change",
"poor-collaboration-and-knowledge-sharing"
],
"personas": [
"Project",
"Programme",
"Business"
],
"tags": [
"ai-adoption",
"project-management",
"lessons-learned",
"change-management",
"skills"
],
"date": "2025-09-17"
},
{
"id": "vision-for-data-built-environment-2025",
"title": "A Vision for Data in the Built Environment",
"url": "https://www.bpie.eu/publication/a-vision-for-data-in-the-built-environment-transforming-sustainability-reporting/",
"description": "The Circular Buildings Coalition\u2019s report notes that sustainability reporting in the built environment is fragmented by differing data requirements across regulations, investors and rating schemes. It calls for a common data dictionary, a federated data model and digital building logbooks to reduce reporting burdens, improve investment decisions and accelerate sustainability; aligning regulatory data requests and investing in digital solutions are among its key recommendations\u3010465574845491609\u2020L40-L89\u3011.",
"barrier_category": "data-pooling-and-interoperability",
"barriers": [
"lack-of-common-data-standards",
"siloed-or-inaccessible-data",
"poor-data-quality-or-governance"
],
"personas": [
"Programme",
"Business"
],
"tags": [
"data-governance",
"sustainability-reporting",
"built-environment",
"digital-logbooks",
"interoperability"
],
"date": "2025-03-06"
},
{
"id": "ai-automation-construction-citb-2021",
"title": "A Challenge and an Opportunity: Artificial Intelligence and Automation in the Construction Industry",
"url": "https://www.citb.co.uk/about-citb/what-we-do/research-insight/artificial-intelligence-and-automation/",
"description": "The Construction Industry Training Board\u2019s 2021 research report argues that construction remains a largely manual, low\u2011automation sector and that digital adoption offers significant productivity gains. It urges industry leaders to agree on a shared definition of digital construction, share best practice and invest in digital skills so that organisations can exploit AI and automation; without aligned leadership the sector risks missing critical opportunities in the coming years\u301025624925981092\u2020L168-L194\u3011.",
"barrier_category": "skill-and-culture-gaps",
"barriers": [
"lack-of-digital-skills-or-training",
"cultural-resistance-to-change",
"lack-of-leadership-buy-in-and-alignment"
],
"personas": [
"Programme",
"Business"
],
"tags": [
"construction",
"automation",
"digital-skills",
"industry-report",
"leadership"
],
"date": "2021-01-01"
},
{
"id": "abc-ai-tech-report-2024",
"title": "ABC AI Tech Report",
"url": "https://aec-business.com/construction-and-ai-what-contractors-need-to-know-from-abcs-new-report/",
"description": "Associated Builders and Contractors\u2019 fourth technology report outlines how artificial intelligence can enhance efficiency and innovation in construction. The report combines an AI resource guide, essays on AI\u2019s impact and a Hensel Phelps case study showing how the contractor used the Track3D platform to improve project efficiency; industry leaders stress that the report helps contractors learn about AI and machine learning to improve safety, quality and profitability\u3010647128200895249\u2020L97-L152\u3011.",
"barrier_category": "digital-and-tech-constraints",
"barriers": [
"legacy-systems-and-fragmented-it",
"lack-of-integration-across-platforms",
"limited-scalability-or-flexibility-of-solutions"
],
"personas": [
"Programme",
"Business"
],
"tags": [
"construction",
"ai-resources",
"case-study",
"technology-report",
"industry-guidance"
],
"date": "2024-10-02"
},
{
"id": "ai-as-artificial-ignorance-2025",
"title": "AI as Artificial Ignorance",
"url": "https://www.researchgate.net/publication/378373583_AI_as_Artificial_Ignorance",
"description": "Bent Flyvbjerg\u2019s working paper argues that current AI resembles \u2018artificial ignorance\u2019 because it can mix true and false statements, producing persuasive output without regard for truth. He compares AI to \u2018bullshit,\u2019 noting that both prioritise rhetoric over accuracy, and warns that users must be sceptical and verify AI outputs rather than accepting them at face value\u3010668124866630108\u2020L124-L139\u3011. The paper calls for ethical governance and rigorous validation of AI systems.",
"barrier_category": "risk-ethics-and-assurance",
"barriers": [
"lack-of-ethical-governance",
"weak-assurance-frameworks-for-data-and-ai",
"unclear-accountability-for-digital-risk"
],
"personas": [
"Business"
],
"tags": [
"ai-ethics",
"accuracy",
"bias",
"skepticism",
"governance"
],
"date": "2025-02-01"
},
{
"id": "adopt-deeper-use-of-ai-bit-2025",
"title": "Adopt: Understanding what drives and inhibits deeper use of AI",
"url": "https://www.bi.team/wp-content/uploads/2025/09/BIT-AI-ADOPT-2025.pdf",
"description": "Behavioural Insights Team researchers frame AI adoption as a continuum from no adoption to shallow and deep use. They argue that adoption is a behavioural process influenced by motivation, capability and trust; barriers such as low salience of benefits, status\u2011quo bias, friction, cognitive load and psychological threats inhibit adoption, while enablers include implementation intentions, framing benefits concretely, harnessing social norms, operational readiness and transparency\u3010631660795494161\u2020L208-L251\u3011\u3010631660795494161\u2020L305-L349\u3011.",
"barrier_category": "skill-and-culture-gaps",
"barriers": [
"lack-of-digital-skills-or-training",
"cultural-resistance-to-change",
"poor-collaboration-and-knowledge-sharing"
],
"personas": [
"Programme",
"Business"
],
"tags": [
"ai-adoption",
"behavioural-science",
"motivation",
"capability",
"trust"
],
"date": "2025-09-01"
},
{
"id": "agentic-ai-new-frontier-genai-2024",
"title": "Agentic AI \u2013 the new frontier in GenAI: An executive playbook",
"url": "https://www.pwc.com/m1/en/publications/agentic-ai-the-new-frontier-in-genai.html",
"description": "PwC\u2019s executive playbook explains that agentic AI \u2013 systems where multiple AI agents collaborate autonomously \u2013 is poised to make a major economic impact and transform industries. It highlights key features of agentic AI such as autonomy, goal\u2011oriented behaviour, environment interaction, learning capability, workflow optimisation and multi\u2011agent conversation, and argues that organisations should leverage multimodal GenAI while ensuring ethical safeguards to boost efficiency, customer experience and revenue growth\u3010449400178477231\u2020L391-L440\u3011\u3010450617757044478\u2020L58-L114\u3011.",
"barrier_category": "risk-ethics-and-assurance",
"barriers": [
"unclear-accountability-for-digital-risk",
"lack-of-ethical-governance",
"weak-assurance-frameworks-for-data-and-ai"
],
"personas": [
"Programme",
"Business"
],
"tags": [
"agentic-ai",
"genai",
"executive-playbook",
"multi-agent",
"ethical-ai"
],
"date": "2024-11-01"
},
{
"id": "unlocking-cultural-readiness-for-ai-2025",
"title": "Unlocking Cultural Readiness for AI",
"url": "https://www.linkedin.com/pulse/unlocking-cultural-readiness-ai-alexander-budzier-m5moe/",
"description": "Alexander Budzier\u2019s LinkedIn article argues that AI transformations succeed or fail based on organisational culture rather than algorithms. He emphasises that culture shifts when behaviours, structures and incentives change, and that AI adoption requires new decision\u2011making structures, rapid prototyping and empowered teams\u3010733524845409353\u2020L5-L31\u3011. The article stresses that trust \u2013 built through credibility, reliability, intimacy and shared goals \u2013 explains much of the variation in digital transformation success and encourages leaders to assess trust deficits and communicate clearly to close them\u3010733524845409353\u2020L59-L89\u3011.",
"barrier_category": "leadership-and-alignment",
"barriers": [
"lack-of-leadership-buy-in-and-alignment",
"lack-of-shared-goals-and-performance-indicators",
"unclear-responsibility-and-accountability"
],
"personas": [
"Programme",
"Business"
],
"tags": [
"organisational-culture",
"ai-transformation",
"trust",
"leadership",
"change-management"
],
"date": "2025-09-15"
},
{
"id": "ai-augmented-workforce-2025",
"title": "AI Augmented Workforce: A Leader\u2019s Guide to Unleashing Human Potential",
"url": "https://scaledagileframework.com/ai-augmented-workforce-a-leaders-guide-to-unleashing-human-potential",
"description": "Scaled Agile Framework\u2019s guidance defines an AI\u2011augmented workforce as employees using approved AI tools to reduce repetitive tasks, improve quality, drive innovation and focus on creative work; these benefits require employees to have authority, resources and training\u3010466592540908057\u2020L84-L97\u3011. \nThe article explains how AI improves job satisfaction and productivity across roles such as Scrum masters, product managers and portfolio leaders, and outlines five steps for leaders to build an AI\u2011augmented workforce\u2014identify use cases, ensure responsible AI use, measure impact, invest in upskilling and foster a culture of innovation\u2014while warning against burnout, shadow AI and over\u2011reliance on AI without human oversight\u3010466592540908057\u2020L112-L154\u3011\u3010466592540908057\u2020L270-L329\u3011.",
"barrier_category": "skill-and-culture-gaps",
"barriers": [
"lack-of-digital-skills-or-training",
"cultural-resistance-to-change",
"lack-of-ethical-governance"
],
"personas": [
"Programme",
"Business"
],
"tags": [
"ai-augmented-workforce",
"agile",
"training",
"responsible-ai",
"culture"
],
"date": "2025-03-12"
},
{
"id": "ai-in-epc-white-paper-2024",
"title": "AI in EPC Industry White Paper",
"url": "https://example.com/ai-in-epc-white-paper",
"description": "The International Advisory Partners\u2019 white paper describes how artificial intelligence enhances efficiency, accuracy and safety throughout the engineering, procurement and construction (EPC) project lifecycle. \nIt highlights applications such as AI\u2011driven design optimisation, predictive risk analytics, construction\u2011site monitoring with drones and computer vision, AI\u2011based supply\u2011chain optimisation, defect detection and lifecycle asset management, and includes case studies of Bentley Systems\u2019 GenerativeDesign tool and Komatsu\u2019s SmartConstruction platform\u3010259198907776963\u2020L6-L82\u3011\u3010259198907776963\u2020L85-L170\u3011.",
"barrier_category": "digital-and-tech-constraints",
"barriers": [
"legacy-systems-and-fragmented-it",
"lack-of-integration-across-platforms",
"limited-scalability-or-flexibility-of-solutions"
],
"personas": [
"Programme",
"Business"
],
"tags": [
"epc",
"construction",
"ai-applications",
"design-optimisation",
"case-study"
],
"date": "2024-01-01"
},
{
"id": "ai-in-built-world-investment-2024",
"title": "AI in the Built World: Investment in AI",
"url": "https://aoresearch.com/insights/ai-in-the-built-world-investment-in-ai",
"description": "A/O Research\u2019s investment report analyses venture funding and adoption trends for AI in the built environment. \nIt notes that AI\u2011enabled built\u2011world start\u2011ups in Europe and North America raised US$18.6\u2009billion over the past decade\u2014with $8.6\u2009billion in the last two years\u2014and that London leads by deal count while the Bay Area leads by capital invested; climate technology, ESG reporting and energy assets are the fastest\u2011growing AI applications alongside AEC software, smart buildings and real\u2011estate inspection\u3010162411253002142\u2020L93-L137\u3011. \nThe report highlights that generative\u2011AI applications are emerging but face challenges due to heterogeneous, context\u2011specific data and that digitisation and automation remain short\u2011term priorities, while AI ecosystems of robotics, IoT, NLP and generative models enable digital transformation and decarbonisation across the built world\u3010162411253002142\u2020L49-L71\u3011\u3010162411253002142\u2020L126-L137\u3011.",
"barrier_category": "funding-and-investment",
"barriers": [
"lack-of-funding-or-investment",
"high-cost-of-implementation",
"uncertain-return-on-investment"
],
"personas": [
"Business"
],
"tags": [
"investment",
"built-environment",
"venture-funding",
"climate-tech",
"decarbonisation"
],
"date": "2024-09-01"
},
{
"id": "ai-insights-agentic-ai-2025",
"title": "AI Insights: Agentic AI",
"url": "https://www.gov.uk/government/publications/ai-insights/ai-insights-agentic-ai-html",
"description": "This AI Insights guidance defines agentic AI as autonomous systems composed of specialised agents enhanced by large language models that can plan, select tools and execute tasks. \nIt explains that agentic systems bring adaptability, extensibility, dynamic routing and improved automation but also create risks such as loss of human oversight, premature deployment, architectural complexity, volatile frameworks, inconsistent outputs, opaque decision\u2011making and high development costs\u3010629944452317335\u2020L124-L166\u3011\u3010629944452317335\u2020L317-L404\u3011. \nThe guidance recommends mitigations including modular composition, interface contracts, explainable AI with audit trails, thorough testing, profiling and alignment with business needs\u3010629944452317335\u2020L404-L563\u3011.",
"barrier_category": "risk-ethics-and-assurance",
"barriers": [
"weak-assurance-frameworks-for-data-and-ai",
"lack-of-ethical-governance",
"unclear-accountability-for-digital-risk"
],
"personas": [
"Programme",
"Business"
],
"tags": [
"agentic-ai",
"autonomous-systems",
"risk-mitigation",
"llm",
"ai-guidance"
],
"date": "2025-09-11"
},
{
"id": "ai-insights-agentic-rag-2025",
"title": "AI Insights: Agentic RAG",
"url": "https://www.gov.uk/government/publications/ai-insights/ai-insights-agentic-rag-html",
"description": "The AI Insights article introduces agentic Retrieval Augmented Generation (RAG), explaining that traditional RAG slices documents into vector embeddings for retrieval, while agentic RAG adds autonomy by iteratively identifying gaps and issuing further queries until outputs are complete\u3010109206199018461\u2020L124-L206\u3011. \nIt describes how agentic RAG systems refine reports through a cycle of drafting, gap identification and refinement, but warns of risks such as runaway iterative loops, debugging challenges, data quality and bias issues, and language\u2011model confabulation; robust termination criteria, audit histories and extensive testing are recommended\u3010109206199018461\u2020L208-L263\u3011\u3010109206199018461\u2020L267-L293\u3011.",
"barrier_category": "risk-ethics-and-assurance",
"barriers": [
"weak-assurance-frameworks-for-data-and-ai",
"unclear-accountability-for-digital-risk",
"lack-of-ethical-governance"
],
"personas": [
"Programme",
"Business"
],
"tags": [
"agentic-rag",
"retrieval-augmented-generation",
"iterative-ai",
"risk",
"testing"
],
"date": "2025-09-11"
},
{
"id": "ai-insights-agentic-workflow-2025",
"title": "AI Insights: Agentic Workflow",
"url": "https://www.gov.uk/government/publications/ai-insights/ai-insights-agentic-workflow-html",
"description": "The Government Digital Service explains that agentic workflows introduce autonomous AI agents into traditional workflow systems, allowing dynamic task decomposition, adaptive collaboration and continuous execution across multi\u2011agent teams\u3010113331796226191\u2020L156-L248\u3011. \nExamples include logistics management, personal scheduling assistants and travel planning; however, risks include a lack of transparency, unintended behaviours and reliance on underlying language models that may hallucinate or embed biases\u3010113331796226191\u2020L275-L322\u3011\u3010113331796226191\u2020L316-L366\u3011.",
"barrier_category": "risk-ethics-and-assurance",
"barriers": [
"weak-assurance-frameworks-for-data-and-ai",
"unclear-accountability-for-digital-risk",
"lack-of-ethical-governance"
],
"personas": [
"Programme",
"Business"
],
"tags": [
"agentic-workflow",
"autonomous-agents",
"workflow-systems",
"transparency",
"risk-management"
],
"date": "2025-09-11"
},
{
"id": "ai-insights-integrated-agents-2025",
"title": "AI Insights: Integrated Agents",
"url": "https://www.gov.uk/government/publications/ai-insights/ai-insights-integrated-agents-html",
"description": "This guidance defines integrated agents as AI\u2011driven assistants or automation tools embedded into software to perform tasks such as drafting documents, managing spreadsheets and scheduling meetings\u3010916045406565647\u2020L121-L134\u3011. \nIt distinguishes between agentic AI, traditional software agents and visual agent interfaces, and warns of risks including data leakage, ungoverned automation (shadow IT) and lack of responsible design; guidelines recommend responsible entity creation, clear business justification, validation, inventory maintenance and continuous monitoring of agent behaviour\u3010916045406565647\u2020L136-L280\u3011.",
"barrier_category": "risk-ethics-and-assurance",
"barriers": [
"unclear-accountability-for-digital-risk",
"lack-of-ethical-governance",
"weak-assurance-frameworks-for-data-and-ai"
],
"personas": [
"Programme",
"Business"
],
"tags": [
"integrated-agents",
"automation",
"shadow-it",
"governance",
"ai-tools"
],
"date": "2025-09-11"
},
{
"id": "ai-insights-synthetic-data-2025",
"title": "AI Insights: Synthetic Data",
"url": "https://www.gov.uk/government/publications/ai-insights/ai-insights-synthetic-data-html",
"description": "GDS\u2019s AI Insights piece explains that synthetic data are artificially generated datasets designed to mimic real\u2011world data while preserving statistical properties, used to address data quality, bias, privacy and rare event issues\u3010326630106798414\u2020L124-L146\u3011. \nIt notes that synthetic data help rebalance datasets and simulate rare events but warns that poorly generated data can introduce unrealistic patterns and bias; responsible development requires continuous validation, fairness assessments, version control and documentation\u3010326630106798414\u2020L132-L156\u3011\u3010326630106798414\u2020L183-L236\u3011. \nThe article emphasises that synthetic data complement rather than replace real data and must be combined with real\u2011world testing\u3010326630106798414\u2020L242-L247\u3011.",
"barrier_category": "data-pooling-and-interoperability",
"barriers": [
"poor-data-quality-or-governance",
"bias-and-discrimination-in-data",
"lack-of-common-data-standards"
],
"personas": [
"Programme",
"Business"
],
"tags": [
"synthetic-data",
"data-privacy",
"bias-mitigation",
"dataset-generation",
"responsible-ai"
],
"date": "2025-09-11"
},
{
"id": "ai-insights-prompt-risks-2025",
"title": "AI Insights: Prompt Risks",
"url": "https://www.gov.uk/government/publications/ai-insights/ai-insights-prompt-risks-html",
"description": "This spotlight article warns that generative AI systems are vulnerable to \u201cprompt injection\u201d attacks, where malicious instructions hidden in user input or embedded content can override safety rules and extract confidential information. The guidance explains that static prompt templates are not enough\u2014attackers can manipulate the large language model\u2019s context to reveal secrets or execute unauthorised actions\u2014and that organisations must treat both public and internal systems as attack surfaces. It highlights \u201cjailbreaking\u201d techniques that circumvent safety constraints and recommends continuous testing, cross\u2011functional security processes, training and rigorous auditing to limit vulnerabilities and ensure responsible AI use\u3010742378120718611\u2020L164-L273\u3011.",
"barrier_category": "risk-ethics-and-assurance",
"barriers": [
"lack-of-ethical-governance",
"weak-assurance-frameworks-for-data-and-ai",
"unclear-accountability-for-digital-risk"
],
"personas": [
"Security",
"Developer",
"Project"
],
"tags": [
"prompt-injection",
"jailbreaking",
"ai-security",
"attack-vectors",
"ai-ethics"
],
"date": "2025-04-25"
},
{
"id": "ai-insights-introduction-2025",
"title": "AI Insights: Introduction",
"url": "https://www.gov.uk/government/publications/ai-insights/ai-insights-introduction-html",
"description": "This introductory guidance explains that the AI Insights series is a collection of articles from the Government Digital Service to help UK public sector organisations implement artificial intelligence effectively, safely and securely. It notes that AI adoption is a priority for government but brings limitations and risks, so the series complements the AI Playbook by covering topics not addressed in the playbook\u2014such as safeguarding, evaluation metrics, prompt engineering, chatbots and agentic systems\u2014and will be updated every two months to reflect policy and technology developments\u3010669465359094656\u2020L123-L163\u3011. The article emphasises that the content is aimed at both technical and non\u2011specialist audiences and encourages readers to join cross\u2011government AI communities and use AI guidance alongside organisational policies\u3010669465359094656\u2020L168-L177\u3011.",
"barrier_category": "leadership-and-alignment",
"barriers": [
"lack-of-leadership-buy-in-and-alignment",
"lack-of-shared-goals-and-performance-indicators",
"unclear-responsibility-and-accountability"
],
"personas": [
"Policy",
"Public Sector",
"Technical"
],
"tags": [
"ai-insights-series",
"public-sector-ai",
"ai-playbook",
"government-guidance",
"skills"
],
"date": "2025-04-25"
},
{
"id": "ai-playbook-principles-2025",
"title": "Artificial Intelligence Playbook: Principles for the UK Government",
"url": "https://www.gov.uk/government/publications/ai-playbook-for-the-uk-government/artificial-intelligence-playbook-for-the-uk-government-html",
"description": "The UK government\u2019s AI Playbook sets out ten principles for responsible AI adoption. It urges teams to understand what AI can and cannot do and to recognise that current models lack reasoning and contextual awareness; civil servants must learn how to use AI tools safely and test them for accuracy\u3010836031714304758\u2020L331-L343\u3011. The playbook stresses lawful and ethical use of AI\u2014consulting legal and data protection experts, addressing bias and environmental impact\u2014and insists that AI services be designed to meet security standards, with safeguards against data poisoning, prompt injection and hallucinations\u3010836031714304758\u2020L348-L404\u3011. Further principles require meaningful human control at appropriate stages, managing the full AI life cycle, choosing the right tool for each job and fostering openness, collaboration and commercial engagement to ensure skills and assurance frameworks are in place\u3010836031714304758\u2020L413-L466\u3011.",
"barrier_category": "risk-ethics-and-assurance",
"barriers": [
"lack-of-ethical-governance",
"weak-assurance-frameworks-for-data-and-ai",
"unclear-accountability-for-digital-risk"
],
"personas": [
"Policy",
"Project",
"Programme"
],
"tags": [
"ai-playbook",
"responsible-ai",
"principles",
"public-sector",
"ethical-guidance"
],
"date": "2025-02-10"
},
{
"id": "ai-powering-productivity-uk-2025",
"title": "AI: Powering Productivity in the UK",
"url": "https://www.celonis.com/insights/reports/business-productivity",
"description": "Celonis\u2019s 2025 UK Business Productivity report surveys 500 senior leaders and finds that economic headwinds, employee stress, difficult technology implementation and digital skills gaps are the main barriers to productivity. Around 39% of respondents say AI\u2011enabled solutions and process intelligence tools already help employees be more productive, and nearly half of businesses are investing in AI to automate manual processes, reduce errors and free staff for higher\u2011value tasks\u3010568879877490547\u2020L13-L23\u3011. The report argues that AI, hybrid working and upskilling can boost growth, and it offers case studies where AI improves quality control, compliance and risk modelling while cautioning that companies must invest in skills and change management to realise these benefits.",
"barrier_category": "skill-and-culture-gaps",
"barriers": [
"lack-of-digital-skills-or-training",
"cultural-resistance-to-change",
"poor-collaboration-and-knowledge-sharing"
],
"personas": [
"Business",
"Operations",
"Human Resources"
],
"tags": [
"productivity",
"ai-investment",
"process-intelligence",
"business-survey",
"uk-economy"
],
"date": "2025-01-01"
},
{
"id": "ai-ready-data-essentials-2024",
"title": "Roadmap: AI\u2011Ready Data Essentials",
"url": "https://cbgmanagementcoaching.co.uk/wp-content/uploads/2024/12/Gartner-ai-ready-data-roadmap.pdf",
"description": "Gartner\u2019s roadmap argues that many generative AI projects fail because data is poor quality, ungoverned or misaligned with business goals. It defines \u201cAI\u2011ready data\u201d as a continuous practice of aligning, qualifying and governing data and warns that up to 30% of generative\u2011AI projects will be abandoned due to inadequate data quality, unclear value or high costs\u3010781778272067519\u2020L150-L190\u3011. The guide presents a five\u2011stage approach: assess data requirements and prioritise AI use cases; present these needs to leadership for investment and alignment; evolve data practices with metadata, semantics and RAG techniques; extend the data ecosystem with improved literacy and semantics; and scale with cross\u2011functional governance, continuous quality management and compliance monitoring\u3010781778272067519\u2020L360-L452\u3011. It emphasises cross\u2011functional collaboration among CIOs, CDAOs, data engineers, security teams and procurement to build trustworthy, interoperable data.",
"barrier_category": "data-pooling-and-interoperability",
"barriers": [
"lack-of-common-data-standards",
"poor-data-quality-or-governance",
"siloed-or-inaccessible-data"
],
"personas": [
"Data",
"IT",
"Governance"
],
"tags": [
"ai-ready-data",
"data-governance",
"data-quality",
"roadmap",
"generative-ai"
],
"date": "2024-12-01"
},
{
"id": "apm-bok-data-analytics-ai-2025",
"title": "APM BoK 2025: Data Analytics & AI in Project Management",
"url": "https://www.apm.org.uk",
"description": "This chapter from the Association for Project Management\u2019s Body of Knowledge explains that projects generate large amounts of unstructured and siloed data, and that data analytics and AI can transform this into evidence\u2011based insights. It describes how AI improves decision\u2011making by predicting risks, delays and cost overruns, automates tasks such as scheduling and progress tracking, enhances collaboration and communication and supports cost and time savings\u3010149767134228139\u2020L86-L147\u3011. The guidance stresses that AI adoption must start with clear use cases and robust data strategies; it highlights ethical concerns, human oversight and environmental impacts, and warns that poor data quality (\u201crubbish in, rubbish out\u201d) undermines AI outputs\u3010149767134228139\u2020L570-L698\u3011. It calls for upskilling the workforce, ensuring data availability and comparability across supply chains and measuring progress towards AI\u2011driven project management.",
"barrier_category": "skill-and-culture-gaps",
"barriers": [
"lack-of-digital-skills-or-training",
"cultural-resistance-to-change",
"poor-collaboration-and-knowledge-sharing"
],
"personas": [
"Project",
"Programme",
"Executive"
],
"tags": [
"project-management",
"data-analytics",
"ai-benefits",
"ethical-ai",
"upskilling"
],
"date": "2025-01-01"
},
{
"id": "ai-in-uk-construction-2025",
"title": "Artificial Intelligence in UK Construction",
"url": "https://www.ceca.co.uk/ceca-launches-landmark-artificial-intelligence-in-uk-construction-report",
"description": "The Civil Engineering Contractors Association\u2019s report on AI in UK construction acknowledges that AI can deliver better design optimisation, improved safety and faster project delivery, but warns of over\u2011reliance on technology, cybersecurity threats and ethical concerns\u3010636119201477822\u2020L52-L77\u3011. It offers ten recommendations, including promoting existing AI standards, undertaking a construction\u2011specific risk review, setting up confidential risk reporting, fostering cross\u2011industry collaboration through an AI community, developing a coordinated implementation plan, and providing role\u2011specific training on AI, security and ethics\u3010636119201477822\u2020L84-L109\u3011. The report emphasises that AI should support human decision\u2011making rather than replace it and calls on the sector to upskill the workforce and ensure responsible governance.",
"barrier_category": "risk-ethics-and-assurance",
"barriers": [
"lack-of-ethical-governance",
"weak-assurance-frameworks-for-data-and-ai",
"unclear-accountability-for-digital-risk"
],
"personas": [
"Construction",
"Project",
"Risk"
],
"tags": [
"construction",
"ai-adoption",
"risk-management",
"training",
"industry-report"
],
"date": "2025-05-06"
},
{
"id": "ai-knowledge-economy-2024",
"title": "Artificial Intelligence in the Knowledge Economy",
"url": "https://arxiv.org/abs/2312.05481",
"description": "Economists Enrique Ide and Eduard Talam\u00e0s model AI as an algorithm that mimics human knowledge within hierarchical firms to study how AI affects the organisation of work. They show that AI not only displaces some workers but also changes the way managers and workers are matched: when AI acts as a worker it becomes the most knowledgeable worker supervised by the best humans, and when AI acts as a manager it reorganises firms and alters the matching patterns\u3010891632866940950\u2020L5-L18\u3011. The paper argues that AI simultaneously substitutes and complements human labour, increasing total labour income but creating winners and losers; organisational effects therefore matter, and AI adoption may expand firm size, shift wages and decentralise decision\u2011making\u3010891632866940950\u2020L68-L77\u3011.",
"barrier_category": "leadership-and-alignment",
"barriers": [
"lack-of-leadership-buy-in-and-alignment",
"lack-of-shared-goals-and-performance-indicators",
"unclear-responsibility-and-accountability"
],
"personas": [
"Executive",
"HR",
"Strategic Planning"
],
"tags": [
"knowledge-economy",
"labour-market",
"manager-worker-matching",
"economics-of-ai",
"organisational-change"
],
"date": "2024-04-05"
},
{
"id": "ai-playbook-uk-government-2025",
"title": "Artificial Intelligence Playbook for the UK Government",
"url": "https://www.gov.uk/government/publications/ai-playbook-for-the-uk-government/artificial-intelligence-playbook-for-the-uk-government-html",
"description": "The UK government\u2019s AI Playbook provides guidance for civil servants using AI. It sets out ten principles \u2013 including knowing what AI is and its limitations, using AI lawfully and ethically, ensuring security, maintaining meaningful human control, managing the AI life cycle, selecting appropriate tools, being open and collaborative, working with commercial colleagues, ensuring skills and expertise, and aligning AI use with organisational policies\u3010382923023187713\u2020L314-L326\u3011. The playbook cautions that AI systems lack reasoning and may produce inaccurate results, so officials must learn about AI, understand its risks, seek legal and ethical advice, and employ safeguards to mitigate biases, privacy concerns and AI\u2011specific threats such as data poisoning or prompt injection\u3010382923023187713\u2020L333-L343\u3011\u3010382923023187713\u2020L348-L384\u3011.",
"barrier_category": "risk-ethics-and-assurance",
"barriers": [
"lack-of-ethical-governance",
"weak-assurance-frameworks-for-data-and-ai",
"unclear-accountability-for-digital-risk"
],
"personas": [
"Project",
"Programme",
"Business"
],
"tags": [
"ai-playbook",
"government",
"principles",
"ethical-ai",
"ai-governance"
],
"date": "2025-02-10"
},
{
"id": "bridgeai-business-ai-framework-2024",
"title": "Business Applications of AI: Framework to Categorise AI Use Cases",
"url": "https://iuk-business-connect.org.uk/opportunities/ai-use-case-framework/",
"description": "This briefing from The Alan Turing Institute\u2019s BridgeAI programme presents a framework to help businesses categorise AI use cases. The framework groups nine categories of information into four dimensions \u2013 organisation, AI system, input data and economic sector \u2013 to create a structured view of AI opportunities\u3010630208312351526\u2020L352-L358\u3011. It distinguishes between product\u2011/service\u2011centric and process\u2011centric applications and lists the business functions that AI can support (e.g., accounting, customer service, logistics, HR and research & development)\u3010630208312351526\u2020L465-L502\u3011. The AI system dimension captures capabilities such as goal\u2011directed action, recognition and detection, generation, optimisation, prediction and simulation, along with the operating environment (virtual vs physical) and readiness levels from hypothetical to operational\u3010630208312351526\u2020L578-L702\u3011. The framework highlights that AI adoption potential is highest in sectors like agriculture, construction, creative industries and transportation, which face high deployment costs and skills gaps\u3010630208312351526\u2020L930-L959\u3011.",
"barrier_category": "leadership-and-alignment",
"barriers": [
"lack-of-shared-goals-and-prioritisation",
"fragmented-roles-and-responsibilities",
"insufficient-capability-and-resource-planning"
],
"personas": [
"Project",
"Programme",
"Business"
],
"tags": [
"ai-use-cases",
"framework",
"bridgeai",
"categorisation",
"business-applications"
],
"date": "2024-03-01"
},
{
"id": "aws-caf-for-ai-2024",
"title": "AWS Cloud Adoption Framework for Artificial Intelligence, Machine Learning and Generative AI",
"url": "https://aws.amazon.com/blogs/publicsector/working-backwards-from-generative-ai-business-value/",
"description": "AWS\u2019s Cloud Adoption Framework for AI (CAF\u2011AI) outlines a method for organisations to derive business value from AI. It advises leaders to work backwards from the desired business outcomes, define expected benefits, plan organisational transformation and build foundational capabilities for AI adoption\u3010807889654525422\u2020screenshot\u3011. The framework emphasises six critical perspectives \u2013 business, people, governance, platform, security and operations \u2013 and recommends structured assessments, such as Cloud Maturity Assessments and executive briefings, to align AI initiatives with strategic goals\u3010807889654525422\u2020screenshot\u3011.",
"barrier_category": "leadership-and-alignment",
"barriers": [
"lack-of-shared-goals-and-prioritisation",
"insufficient-capability-and-resource-planning",
"unclear-accountability-for-digital-risk"
],
"personas": [
"Project",
"Programme",
"Business"
],
"tags": [
"aws",
"cloud-adoption",
"framework",
"ai-strategy",
"governance"
],
"date": "2024-02-13"
},
{
"id": "breaking-away-scaling-analytics-2018",
"title": "Breaking Away: The Secrets to Scaling Analytics",
"url": "https://www.mckinsey.com/",
"description": "McKinsey\u2019s analysis highlights that fewer than 20% of organisations succeed at scaling advanced analytics. Breakaway companies align on a clear analytics strategy, invest heavily in building data, technology and talent foundations, and focus on the \u201clast mile\u201d of embedding analytics into workflows and decision\u2011making processes\u3010143094428740186\u2020screenshot\u3011. Most firms capture small gains from isolated use cases but fail to embed analytics across the business; breakaway firms spend more of their analytics budgets on integration and scaling, enabling them to reap larger productivity benefits\u3010143094428740186\u2020screenshot\u3011.",
"barrier_category": "skill-and-culture-gaps",
"barriers": [
"lack-of-digital-skills-or-training",
"cultural-resistance-to-change",
"poor-collaboration-and-knowledge-sharing"
],
"personas": [
"Project",
"Programme",
"Business"
],
"tags": [
"analytics",
"scaling",
"strategy",
"last-mile",
"data-foundations"
],
"date": "2018-01-01"
},
{
"id": "ciob-ai-playbook-2024",
"title": "CIOB Artificial Intelligence (AI) Playbook 2024",
"url": "https://www.ciob.org/industry/research/AI-Playbook",
"description": "The Chartered Institute of Building\u2019s AI Playbook outlines how artificial intelligence can transform the built environment. Members of CIOB\u2019s Digital & Innovation Advisory Panel explain that AI offers vast opportunities for designing, constructing, operating and reusing buildings and infrastructure, and they provide insights and practical applications for using AI in construction workplaces\u3010892885371265111\u2020L94-L105\u3011. The playbook includes a resources section and an AI use case template to help organisations identify business goals, user needs, data sources, expected benefits, risks and evaluation metrics\u3010892885371265111\u2020L107-L156\u3011.",
"barrier_category": "skill-and-culture-gaps",
"barriers": [
"lack-of-digital-skills-or-training",
"cultural-resistance-to-change",
"insufficient-capability-and-resource-planning"
],
"personas": [
"Project",
"Programme",
"Business"
],
"tags": [
"construction",
"ai-playbook",
"ciob",
"built-environment",
"use-case-template"
],
"date": "2024-06-07"
},
{
"id": "ai-insights-series-introduction-2025",
"title": "AI Insights: Introducing the GDS AI Insights Series",
"url": "https://www.gov.uk/government/publications/ai-insights/ai-insights-introducing-the-gds-ai-insights-series-html",
"description": "The UK Government Digital Service (GDS) launched the AI Insights series to help public\u2011sector teams use AI safely and effectively. The introduction explains that this series complements the AI Playbook by exploring topics not covered elsewhere\u2014such as evaluation metrics, safeguarding and agentic AI\u2014and aims to serve both technical specialists and non\u2011specialists across government. Articles are published approximately every two months and readers are encouraged to join the cross\u2011government AI community for support\u3010642783812458816\u2020L24-L80\u3011.",
"barrier_category": "skill-and-culture-gaps",
"barriers": [
"lack-of-digital-skills-or-training",
"cultural-resistance-to-change",
"lack-of-knowledge-sharing"
],
"personas": [
"Project",
"Programme",
"Business"
],
"tags": [
"ai-insights",
"public-sector",
"learning-resources",
"gds",
"continuous-learning"
],
"date": "2025-04-25"
},
{
"id": "data-governance-toolkit-2025",
"title": "Data Governance Toolkit: Navigating Data in the Digital Age",
"url": "https://www.broadbandcommission.org/wp-content/uploads/2025/07/Data-Governance-Toolkit.pdf",
"description": "The Broadband Commission\u2019s toolkit (July\u00a02025) guides governments and organisations in building rights\u2011based data governance. It explains how to define a clear vision and purpose for data use that aligns with human\u2011rights law, co\u2011develop use\u2011cases with citizens and stakeholders and ensure strategic alignment across agencies\u3010259090142407965\u2020L1412-L1561\u3011. The toolkit also provides checklists on principles (transparency, accountability, fairness and stewardship), roles (chief data officers, regulators and ethics boards) and lifecycle practices such as data minimisation, metadata standards and meaningful consent\u3010259090142407965\u2020L1019-L1114\u3011. These recommendations help policy\u2011makers design governance frameworks and build public trust.",
"barrier_category": "governance-and-standards",
"barriers": [
"Lack of coherent data governance frameworks and policies",
"Insufficient stakeholder engagement and participatory design",
"Poor clarity of roles and responsibilities across the data lifecycle"
],
"personas": [
"policy-maker",
"chief-data-officer",
"ethics-officer"
],
"tags": [
"data governance",
"human rights",
"policy",
"stakeholder engagement"
],
"publication_date": "2025-07-08"
},
{
"id": "data-sharing-and-innovation-roundtable-2025",
"title": "Data Sharing and Innovation Roundtable at the House of Lords",
"url": "(no official publication; internal roundtable PDF)",
"description": "This Connected Places Catapult/Digital Twin Hub roundtable (21\u00a0July\u00a02025) explored how data sharing can unlock place\u2011based innovation. Participants agreed that data sharing has evolved from a technical challenge to a strategic imperative; cross\u2011sector collaboration and narrowly defined use\u2011cases accelerate progress while infrastructure, standards and skills remain critical enablers\u3010999867150917152\u2020L30-L42\u3011. Strategic insights included the need for clear value propositions, trust\u2011building processes, SME support, flexible regulation and investment in data literacy\u3010999867150917152\u2020L44-L50\u3011. Immediate priorities highlighted national data leadership, flexible platforms, SME access, digital infrastructure and fair value exchange\u3010999867150917152\u2020L52-L58\u3011.",
"barrier_category": "leadership-and-alignment",
"barriers": [
"Cultural resistance and lack of trust in data sharing",
"Fragmented leadership and absence of national coordination",
"Limited infrastructure and skills to support interoperable data platforms"
],
"personas": [
"regional-planner",
"innovation-manager",
"policy-maker"
],
"tags": [
"data sharing",
"cross\u2011sector collaboration",
"SMEs",
"place\u2011based innovation"
],
"publication_date": "2025-07-21"
},
{
"id": "future-of-work-learning-trends-2025",
"title": "Reimagined Development in the Future of Work: 2025 Learning Trends Perspective",
"url": "(internal McKinsey R&I Learning Lab report)",
"description": "This McKinsey Research\u00a0&\u00a0Innovation Learning Lab study synthesises over 45 trend reports to provide a navigation tool for the future of workplace learning. It highlights three interdependent themes: creating fluid development ecosystems, adopting AI responsibly and building resilient, adaptable organisations. The report argues that successful AI adoption requires a human\u2011centred vision, cross\u2011functional governance, AI fluency programmes, and rewards for higher\u2011order skills\u301066943689898833\u2020L695-L729\u3011. It warns that resilience and adaptability must be embedded in work structures to prevent burnout and that employers should support a multigenerational workforce through cross\u2011generational collaboration and continuous reskilling\u301066943689898833\u2020L745-L783\u3011.",
"barrier_category": "skill-and-culture-gaps",
"barriers": [
"Insufficient change management and AI literacy programmes",
"Burnout and lack of support for resilience and adaptability",
"Tensions within a multigenerational workforce"
],
"personas": [
"HR-leader",
"learning-and-development-manager",
"people-analytics-specialist"
],
"tags": [
"future of work",
"responsible AI",
"resilience",
"learning ecosystems"
],
"publication_date": "2025-01-01"
},
{
"id": "digital-information-temporary-organizations-2025",
"title": "Digital Information in Temporary Organizations",
"url": "https://doi.org/10.1016/j.scaman.2025.101419",
"description": "In this open\u2011access journal article, Whyte and Eshraghi examine how temporary organisations \u2013 such as projects, events and emergency responses \u2013 are shaped by digital information. They note that these organisations access information via generic information systems but exhibit two distinctive features: they use digital information that pre\u2011exists, is generated during, and persists after the temporary project, and this information is transferred across multiple systems\u3010467477035535434\u2020L23-L29\u3011. The paper argues that digital information accelerates decision\u2011making and coordination but raises issues around virtualisation, algorithmic content generation and surveillance\u3010467477035535434\u2020L30-L33\u3011, calling for research on how temporary organisations manage digital information across time\u2011bounded phases\u3010467477035535434\u2020L100-L116\u3011.",
"barrier_category": "data-pooling-and-interoperability",
"barriers": [
"Fragmentation of digital information across multiple systems",
"Challenges in retaining and transferring data beyond project lifecycles",
"Concerns over surveillance and algorithmic content generation"
],
"personas": [
"project-manager",
"information-systems-specialist",
"researcher"
],
"tags": [
"temporary organisations",
"digital information",
"virtualisation",
"surveillance"
],
"publication_date": "2025-04-22"
},
{
"id": "digital-transformation-ai-imperative-apm-2025",
"title": "Digital Transformation and the AI\u00a0Imperative in Public and Private Sector Projects",
"url": "https://eprints.soton.ac.uk/504431/1/Dacre_Baxter_Dong_Al-Mhdawi_Abeysooriya_Shen_Digital_Transformation_AI_Projects.pdf",
"description": "This Association for Project Management (APM) research report (July\u00a02025) surveys public and private sector project professionals to understand how digital transformation and AI are reshaping project management. Key insights include improved decision\u2011making through AI\u2011driven analytics (61% report better decisions), the critical role of data quality and governance, the importance of agile practices and modern digital tools, and the need for strategic project leadership and digital competencies\u3010790081654217139\u2020L325-L369\u3011. The report recommends establishing integrated AI platforms with human oversight, adopting data governance frameworks, tailoring agile methodologies to context, investing in digital skills and responsible AI, and measuring the impact of digital transformation on project performance\u3010790081654217139\u2020L381-L405\u3011.",
"barrier_category": "skill-and-culture-gaps",
"barriers": [
"Insufficient data quality and governance leading to \u2018garbage in, garbage out\u2019",
"Superficial adoption of agile methodologies without cultural change",
"Gaps between responsible AI policies and practical implementation"
],
"personas": [
"project-manager",
"program-manager",
"portfolio-director"
],
"tags": [
"digital transformation",
"AI in projects",
"agile",
"data governance"
],
"publication_date": "2025-07-15"
},
{
"id": "digitalisation-construction-report-2023",
"title": "Digitalisation in Construction Report\u00a02023 (RICS)",
"url": "https://www.rics.org/profession-and-industry/policy-and-research/our-research/digitalisation-in-construction-report-2023",
"description": "RICS\u2019s annual report uses data from the Global Construction Monitor (Q4\u00a02022) to benchmark digital adoption in construction. While digital tools are recognised as essential for addressing climate change and delivering social value, the report warns that adoption is stagnating and areas such as carbon measurement and ESG remain nascent\u3010772581666656925\u2020L137-L155\u3011. Survey respondents cite high cost and effort of change, shortage of skilled workers and lack of clear client demand as the top blockers to digitalisation\u3010772581666656925\u2020L615-L629\u3011. The report calls for collaboration between industry, government and academia, standardised data processes and investment in skills to overcome these systemic barriers and support net\u2011zero goals\u3010772581666656925\u2020L137-L156\u3011.",
"barrier_category": "digital-and-tech-constraints",
"barriers": [
"High cost and effort required to adopt digital tools",
"Shortage of digital skills and expertise within organisations",
"Lack of clear client demand and unstandardised data processes"
],
"personas": [
"construction-manager",
"quantity-surveyor",
"sustainability-consultant"
],
"tags": [
"construction digitalisation",
"sustainability",
"skills",
"blockers"
],
"publication_date": "2023-07-10"
},
{
"id": "neso-digitalisation-strategy-action-plan-2025",
"title": "NESO Digitalisation Strategy & Action Plan\u00a0(DSAP) June\u00a02025",
"url": "https://www.nationalgrid.com/document/xxx",
"description": "The National Energy System Operator\u2019s June\u00a02025 Digitalisation Strategy & Action Plan details how digitalisation underpins the UK\u2019s transition to a net\u2011zero energy system. The foreword notes that by strengthening data sharing, embracing early AI adoption and collaborating with customers, NESO can create a more interconnected and efficient energy network\u3010546802702688372\u2020L120-L131\u3011. The strategy outlines six priorities \u2013 consumer value, clean power, decarbonised energy, customer centricity, digital mindset and people value \u2013 and commits to leveraging data and AI to plan and operate Great Britain\u2019s electricity and gas networks\u3010546802702688372\u2020L144-L156\u3011. It positions NESO as a digital leader tasked with developing secure data\u2011sharing infrastructure and exploring AI and quantum computing to enhance operational efficiency.",
"barrier_category": "leadership-and-alignment",
"barriers": [
"Need for coordinated national leadership and cross\u2011sector collaboration",
"Limited secure data\u2011sharing infrastructure and interoperability",
"Challenges of adopting AI and emerging technologies in a regulated energy sector"
],
"personas": [
"energy-policy-leader",
"grid-operator",
"digital-strategy-manager"
],
"tags": [
"energy digitalisation",
"data sharing",
"AI adoption",
"net\u2011zero"
],
"publication_date": "2025-06-01"
},
{
"id": "wef-ai-c-suite-toolkit-2022",
"title": "Empowering AI Leadership: AI C\u2011Suite Toolkit",
"url": "https://www.weforum.org/whitepapers/empowering-ai-leadership-ai-c-suite-toolkit/",
"description": "The World Economic Forum\u2019s AI C\u2011Suite Toolkit (Jan\u00a02022) equips executives to navigate AI\u2019s transformative potential and risks. The executive summary stresses that AI could add $15.7\u00a0trillion to global GDP by 2030 but introduces unprecedented risks including bias, malicious attacks and misinformation\u3010256119419996720\u2020L163-L200\u3011. The toolkit urges C\u2011suite leaders to align AI strategies with corporate goals, integrate AI with digital and data strategies, build a culture that nurtures AI talent and ensure responsible AI governance across design, development, deployment and monitoring\u3010256119419996720\u2020L163-L248\u3011. It is structured into modules covering AI basics, strategy, people and organisation, responsible AI, implementation and AI in sustainable development.",
"barrier_category": "leadership-and-alignment",
"barriers": [
"Lack of aligned AI strategies and roadmaps at executive level",
"Inadequate ethical governance and risk management for AI",
"Limited AI literacy and talent within organisations"
],
"personas": [
"executive",
"board-member",
"chief-data-officer"
],
"tags": [
"AI strategy",
"C\u2011suite",
"responsible AI",
"risk management"
],
"publication_date": "2022-01-12"
},
{
"id": "ey-ai-pulse-survey-2025",
"title": "EY US AI Pulse Survey 2025: Why Agentic AI is a Revolution Stuck in an Evolution",
"url": "https://www.ey.com/en_us/ai/ai-pulse-survey-2025",
"description": "EY\u2019s 2025 AI Pulse Survey explores enterprise perceptions of agentic AI. It finds that 97% of senior leaders whose organisations invest in AI report positive ROI across functions, yet only 14% have fully implemented agentic AI and 87% identify barriers such as cybersecurity and data\u2011privacy concerns\u3010589152007710681\u2020L15-L29\u3011. Fear of replacement also contributes to hesitancy, and investment is shifting towards building custom AI solutions in\u2011house\u3010589152007710681\u2020L20-L37\u3011. The survey notes that while spending on AI is rising and leaders anticipate transformative value, execution lags, highlighting the need for robust governance and alignment.",
"barrier_category": "risk-ethics-and-assurance",
"barriers": [
"Cybersecurity and data\u2011privacy concerns around agentic AI",
"Fear of workforce replacement hindering adoption",
"Misalignment between rising investment and implementation capability"
],
"personas": [
"executive",
"risk-manager",
"innovation-leader"
],
"tags": [
"agentic AI",
"enterprise survey",
"ROI",
"custom AI"
],
"publication_date": "2025-07-01"
},