-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMODULABS_2025_AI_TREND_REPORT.html
More file actions
1356 lines (1214 loc) · 53.1 KB
/
MODULABS_2025_AI_TREND_REPORT.html
File metadata and controls
1356 lines (1214 loc) · 53.1 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MODULABS AI TREND REPORT 2025</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<link rel="stylesheet" as="style" crossorigin
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css" />
<style>
:root {
--primary: #4338CA;
--primary-light: #6366F1;
--secondary: #10B981;
--accent: #F59E0B;
--dark: #1F2937;
--gray: #6B7280;
--light: #F3F4F6;
--white: #FFFFFF;
--gradient-cover: linear-gradient(135deg, #DD3F43 0%, #B93236 100%);
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
/* Reduced radius for more professional/compact look */
--radius: 8px;
/* Was 12px */
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
background: #E5E7EB;
color: var(--dark);
line-height: 1.5;
/* Slightly tighter line height */
-webkit-font-smoothing: antialiased;
}
.page {
width: 210mm;
min-height: 297mm;
padding: 15mm 18mm;
margin: 20px auto;
background: var(--white);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
position: relative;
display: flex;
flex-direction: column;
}
/* Cover Page */
.cover-page {
background: var(--gradient-cover);
color: var(--white);
justify-content: center;
align-items: center;
text-align: center;
}
.cover-logo {
font-size: 24px;
font-weight: 700;
letter-spacing: 4px;
margin-bottom: 50px;
/* Reduced */
opacity: 0.9;
}
.cover-title-wrap {
border: 4px solid rgba(255, 255, 255, 0.3);
padding: 30px;
/* Reduced */
backdrop-filter: blur(10px);
margin-bottom: 50px;
/* Reduced */
}
.cover-title {
font-size: 56px;
/* Reduced from 64px */
font-weight: 900;
line-height: 1.1;
letter-spacing: -1px;
}
.cover-subtitle {
font-size: 20px;
/* Reduced from 24px */
font-weight: 300;
margin-top: 8px;
opacity: 0.9;
}
.cover-stats-row {
display: flex;
gap: 40px;
/* Reduced from 60px */
margin-top: 30px;
/* Reduced from 40px */
}
.cover-stat-item {
text-align: center;
}
.cover-stat-num {
font-size: 48px;
/* Reduced from 56px */
font-weight: 800;
line-height: 1;
}
.cover-stat-desc {
font-size: 14px;
/* Reduced from 16px */
font-weight: 400;
opacity: 0.8;
margin-top: 5px;
}
.cover-footer {
position: absolute;
bottom: 15mm;
font-size: 14px;
opacity: 0.7;
letter-spacing: 1px;
}
/* Standard Layout */
.header {
border-bottom: 2px solid var(--light);
padding-bottom: 12px;
margin-bottom: 25px;
display: flex;
justify-content: space-between;
align-items: flex-end;
flex-shrink: 0;
}
.header-title h2 {
font-size: 28px;
font-weight: 800;
color: var(--dark);
letter-spacing: -0.5px;
}
.header-tag {
font-size: 12px;
font-weight: 700;
color: var(--primary);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 4px;
display: block;
}
.header-desc {
font-size: 14px;
color: var(--gray);
max-width: 50%;
text-align: right;
line-height: 1.5;
}
/* Cards & Content */
.card-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
margin-bottom: 20px;
}
.card-grid-3 {
grid-template-columns: repeat(3, 1fr);
gap: 12px;
}
.card-grid-3 .card {
padding: 14px;
}
.card-grid-3 .card-title {
font-size: 15px;
margin-bottom: 8px;
}
.card {
background: var(--white);
border: 1px solid var(--light);
border-radius: var(--radius);
padding: 18px;
box-shadow: var(--shadow-sm);
}
.card.highlight {
background: linear-gradient(135deg, #EEF2FF 0%, #FFFFFF 100%);
border-color: #E0E7FF;
}
.card-title {
font-size: 17px;
font-weight: 700;
color: var(--dark);
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 8px;
}
/* Typography */
h3 {
font-size: 20px;
font-weight: 700;
margin: 25px 0 15px;
color: var(--dark);
display: flex;
align-items: center;
}
h3::before {
content: '';
display: block;
width: 4px;
height: 20px;
background: var(--primary);
margin-right: 10px;
border-radius: 2px;
}
p {
font-size: 15px;
color: #4B5563;
margin-bottom: 12px;
line-height: 1.7;
}
/* Charts */
.chart-container {
position: relative;
height: 180px;
width: 100%;
}
.chart-container.small {
height: 120px;
}
.chart-container.tall {
height: 260px;
}
/* Status Bar / Progress */
.progress-item {
margin-bottom: 14px;
}
.progress-header {
display: flex;
justify-content: space-between;
margin-bottom: 6px;
font-size: 15px;
font-weight: 600;
}
.progress-bar {
height: 8px;
background: var(--light);
border-radius: 4px;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: var(--primary);
border-radius: 3px;
}
.progress-fill.secondary {
background: var(--secondary);
}
.progress-fill.accent {
background: var(--accent);
}
/* Key Insight Box */
.insight-box {
background: #F0FDF4;
border: 1px solid #BBF7D0;
border-radius: var(--radius);
padding: 18px 20px;
margin-top: 20px;
display: flex;
gap: 14px;
align-items: flex-start;
}
.insight-icon {
font-size: 22px;
}
.insight-content h4 {
color: #15803D;
font-size: 16px;
font-weight: 700;
margin-bottom: 6px;
}
.insight-content p {
font-size: 14px;
color: #166534;
margin: 0;
line-height: 1.6;
}
/* Ranking List */
.rank-list {
list-style: none;
}
.rank-item {
display: flex;
align-items: center;
padding: 10px 0;
border-bottom: 1px solid var(--light);
}
.rank-num {
width: 24px;
height: 24px;
background: var(--primary);
color: white;
font-size: 12px;
font-weight: 700;
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 12px;
}
.rank-num.silver {
background: #9CA3AF;
}
.rank-num.bronze {
background: #B45309;
}
.rank-text {
flex: 1;
font-size: 15px;
font-weight: 500;
}
.rank-val {
font-weight: 700;
color: var(--primary);
font-size: 15px;
}
/* Footer */
.page-footer {
margin-top: auto;
border-top: 1px solid var(--light);
padding-top: 12px;
display: flex;
justify-content: space-between;
font-size: 11px;
color: #9CA3AF;
}
/* Analysis Box (New in v2.1 - Optimized) */
.analysis-box {
background-color: #F8FAFC;
border-left: 4px solid #6366F1;
padding: 16px 18px;
margin-top: 20px;
border-radius: 0 8px 8px 0;
margin-bottom: 20px;
}
.analysis-title {
font-size: 13px;
font-weight: 800;
color: #4338CA;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 6px;
}
.analysis-title::before {
content: '📊';
font-size: 14px;
}
.analysis-text {
font-size: 14px;
color: #334155;
line-height: 1.7;
text-align: justify;
margin-bottom: 0;
}
@media print {
body {
background: white;
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
}
.page {
margin: 0;
padding: 15mm 18mm;
box-shadow: none;
page-break-after: always;
width: 210mm;
min-height: 297mm;
}
}
/* CSS Cover Design (Restored & Updated) */
.cover-page {
background: var(--gradient-cover);
color: var(--white);
display: flex;
/* Verify flex is set */
flex-direction: column;
justify-content: space-between;
/* Space out top/center/bottom */
align-items: center;
text-align: center;
position: relative;
}
.cover-top {
margin-top: 40px;
}
.cover-logo {
font-size: 24px;
font-weight: 700;
letter-spacing: 4px;
opacity: 0.9;
}
.cover-center {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 60px;
/* Visual balance */
}
.cover-title {
font-size: 64px;
font-weight: 900;
line-height: 1.1;
letter-spacing: -1px;
}
.cover-year {
font-size: 48px;
font-weight: 300;
opacity: 0.9;
letter-spacing: 2px;
}
.cover-footer-text {
margin-bottom: 40px;
font-size: 16px;
font-weight: 400;
opacity: 0.8;
line-height: 1.6;
}
.cover-link {
font-weight: 600;
letter-spacing: 1px;
}
</style>
</head>
<body>
<!-- COVER PAGE -->
<div class="page cover-page">
<div class="cover-top">
<div class="cover-logo">MODULABS</div>
</div>
<div class="cover-center">
<h1 class="cover-title">AI TREND<br>REPORT</h1>
<div class="cover-year">2025</div>
</div>
<div class="cover-footer-text">
<div>모두의연구소</div>
<div class="cover-link">modulabs.co.kr</div>
</div>
</div>
<!-- TABLE OF CONTENTS -->
<div class="page">
<div class="header">
<div class="header-title">
<h2>Table of Contents</h2>
</div>
</div>
<div style="display: flex; flex-direction: column; gap: 20px; margin-top: 40px;">
<!-- Item -->
<div style="display: flex; align-items: baseline; border-bottom: 1px solid #E5E7EB; padding-bottom: 10px;">
<span
style="font-size: 14px; font-weight: 800; color: var(--primary); width: 80px; flex-shrink: 0;">PART
0</span>
<span style="font-size: 16px; font-weight: 600; flex: 1;">Executive Summary</span>
<span style="font-size: 16px; font-weight: 700; color: var(--gray);">03</span>
</div>
<!-- Item -->
<div style="display: flex; align-items: baseline; border-bottom: 1px solid #E5E7EB; padding-bottom: 10px;">
<span
style="font-size: 14px; font-weight: 800; color: var(--primary); width: 80px; flex-shrink: 0;">PART
1 & 2</span>
<span style="font-size: 16px; font-weight: 600; flex: 1;">응답자 프로필 & 기술 트렌드</span>
<span style="font-size: 16px; font-weight: 700; color: var(--gray);">04</span>
</div>
<!-- Item -->
<div style="display: flex; align-items: baseline; border-bottom: 1px solid #E5E7EB; padding-bottom: 10px;">
<span
style="font-size: 14px; font-weight: 800; color: var(--primary); width: 80px; flex-shrink: 0;">PART
3</span>
<span style="font-size: 16px; font-weight: 600; flex: 1;">생성형 AI 활용 현황</span>
<span style="font-size: 16px; font-weight: 700; color: var(--gray);">05</span>
</div>
<!-- Item -->
<div style="display: flex; align-items: baseline; border-bottom: 1px solid #E5E7EB; padding-bottom: 10px;">
<span
style="font-size: 14px; font-weight: 800; color: var(--primary); width: 80px; flex-shrink: 0;">PART
4</span>
<span style="font-size: 16px; font-weight: 600; flex: 1;">성장과 교육 니즈 (Needs)</span>
<span style="font-size: 16px; font-weight: 700; color: var(--gray);">06</span>
</div>
<!-- Item -->
<div style="display: flex; align-items: baseline; border-bottom: 1px solid #E5E7EB; padding-bottom: 10px;">
<span
style="font-size: 14px; font-weight: 800; color: var(--primary); width: 80px; flex-shrink: 0;">PART
5</span>
<span style="font-size: 16px; font-weight: 600; flex: 1;">커뮤니티와 연결</span>
<span style="font-size: 16px; font-weight: 700; color: var(--gray);">07</span>
</div>
<!-- Item -->
<div style="display: flex; align-items: baseline; border-bottom: 1px solid #E5E7EB; padding-bottom: 10px;">
<span
style="font-size: 14px; font-weight: 800; color: var(--primary); width: 80px; flex-shrink: 0;">PART
6</span>
<span style="font-size: 16px; font-weight: 600; flex: 1;">2025 Overall Insights</span>
<span style="font-size: 16px; font-weight: 700; color: var(--gray);">08</span>
</div>
<!-- Item -->
<div style="display: flex; align-items: baseline; border-bottom: 1px solid #E5E7EB; padding-bottom: 10px;">
<span
style="font-size: 14px; font-weight: 800; color: var(--gray); width: 80px; flex-shrink: 0;">APPENDIX</span>
<span style="font-size: 16px; font-weight: 600; flex: 1;">About ModuLabs</span>
<span style="font-size: 16px; font-weight: 700; color: var(--gray);">09</span>
</div>
</div>
<div class="page-footer">
<span>Copyright ©2025 MODULABS. All Rights Reserved.</span>
<span>02</span>
</div>
</div>
<!-- EXECUTIVE SUMMARY -->
<div class="page">
<div class="header">
<div class="header-title">
<span class="header-tag">PART 0. EXECUTIVE SUMMARY</span>
<h2>2025 AI Trend Overview</h2>
</div>
<p class="header-desc">국내 최대 AI 커뮤니티가 꼽은 2025년 핵심 키워드:<br>Agent, Automation, and Reality</p>
</div>
<!-- New: About This Report Section -->
<div class="card highlight" style="margin-bottom: 25px; background: #F8FAFC; border-color: #E2E8F0;">
<div class="card-title" style="color: var(--primary); margin-bottom: 12px;">📌 About This Report</div>
<p style="margin-bottom: 8px; font-weight: 600; color: var(--dark);">"왜 이 리포트에 주목해야 하는가?"</p>
<p style="font-size: 13.5px; line-height: 1.6; color: #475569; margin-bottom: 12px;">
본 리포트는 단순한 대중 설문이 아닙니다. 국내 최대 AI 연구/개발 커뮤니티 컨퍼런스인 <strong>'MODUCON 2025'</strong>에 참여한
<strong>2,133명의 Core AI 유저</strong>들을 대상으로 합니다. 이들은 단순 호기심을 넘어, 누구보다 치열하게 AI를 학습하고
실무에 적용하려 노력하는 <strong>'Trend Setter'</strong>들입니다.
</p>
<p style="font-size: 13.5px; line-height: 1.6; color: #475569; margin: 0;">
따라서 이 리포트의 데이터는 막연한 미래 예측이 아닌, <strong>가장 현실적이고 구체적인 2025년의 대한민국 AI 지형도</strong>를 보여줍니다.
</p>
</div>
<div class="card highlight" style="margin-bottom: 25px;">
<p style="font-size: 16px; font-weight: 500; color: var(--dark); margin: 0; line-height: 1.7;">
<strong>2025년 총평:</strong> <br>
2025년은 '생성형 AI의 일상화'를 넘어 <strong>'AI Agent를 통한 업무 자동화의 원년'</strong>으로 기록되었습니다.
</p>
</div>
<div class="card-grid">
<div class="card">
<div class="card-title">🚀 생성형 AI의 '일상화'</div>
<p style="margin:0;">전체 응답자의 <strong>91%</strong>가 주 3회 이상 생성형 AI를 사용합니다. 단순 호기심 단계를 지나, 비즈니스 필수 도구로 완전히
자리잡았습니다.</p>
</div>
<div class="card">
<div class="card-title">🤖 'AI Agent'의 급부상</div>
<p style="margin:0;">LLM(80%)에 이어 <strong>AI Agent(53%)</strong>가 관심 기술 2위를 차지했습니다. 자율적으로 판단하고 실행하는 AI에
대한 기대감이 폭발적입니다.</p>
</div>
<div class="card">
<div class="card-title">💼 '실무 적용'에 목마르다</div>
<p style="margin:0;">가장 관심 있는 트랙은 <strong>'AI to Reality'</strong>입니다. 이론적 학습보다는 실제 서비스를 만들고 성과를 내는 구체적
방법에 집중하고 있습니다.</p>
</div>
<div class="card">
<div class="card-title">🤝 함께 성장하는 '커뮤니티'</div>
<p style="margin:0;">참여자의 <strong>58%</strong>가 최신 트렌드 파악을, <strong>47%</strong>가 타 분야와 융합(AI+X)을 원합니다.
홀로 성장하기보다 연결을 통한 확장을 지향합니다.</p>
</div>
</div>
<div class="insight-box">
<div class="insight-icon">💡</div>
<div class="insight-content">
<h4>Insight: From Tool to Partner</h4>
<p>AI는 더 이상 단순한 '검색 도구'가 아닙니다. 2025년은 사용자의 의도를 파악하고 복잡한 업무를 대신 수행하는 <strong>'동료(Partner)'</strong>로서의
AI를 받아들이는 해였습니다. 이에 따라 <strong>신뢰성 검증</strong> 역량이 그 어느 때보다 중요해졌습니다.</p>
</div>
</div>
<div class="page-footer">
<span>Copyright ©2025 MODULABS. All Rights Reserved.</span>
<span>03</span>
</div>
</div>
<!-- PART 1 & 2: PROFILE & TECH -->
<div class="page">
<div class="header">
<div class="header-title">
<span class="header-tag">PART 1 & 2</span>
<h2>응답자 프로필 & 기술 트렌드</h2>
</div>
</div>
<div class="card" style="margin-bottom: 16px;">
<div class="card-title">연령대 분포</div>
<div class="chart-container">
<canvas id="ageChart"></canvas>
</div>
</div>
<div class="card-grid">
<div class="card">
<div class="card-title">소속 유형</div>
<div class="chart-container">
<canvas id="jobChart"></canvas>
</div>
</div>
<div class="card">
<div class="card-title">직무 분야</div>
<div class="chart-container">
<canvas id="fieldChart"></canvas>
</div>
</div>
</div>
<div class="analysis-box">
<span class="analysis-title">Analyst Note : AI의 대중화가 완성된 2025년</span>
<p class="analysis-text">
2025년의 가장 큰 특징은 <strong>'사용자층의 탈(脫)개발자화'</strong>입니다. 과거 IT/SW 직군(56%)에 집중되었던 관심이 제조, 금융, 교육 등 전 산업 분야로
넓게 퍼졌습니다. 특히 4050 세대의 참여율이 30%를 넘어서며, AI가 특정 계층의 전유물이 아닌 <strong>'전 국민의 디지털 리터러시'</strong>로 자리 잡았음을
보여줍니다. 이는 기업의 DX(디지털 전환)가 개인 차원까지 깊숙이 침투했음을 의미합니다.
</p>
</div>
<h3>🔥 2025년 가장 주목하는 AI 기술 (TOP 10)</h3>
<div class="card">
<div class="chart-container tall">
<canvas id="techChart"></canvas>
</div>
</div>
<div class="card-grid" style="margin-top: 20px;">
<div class="card highlight">
<div class="card-title">Gen AI & LLM (80.4%)</div>
<p style="margin:0;">압도적 1위입니다. 모든 AI 서비스의 기반 기술로서 여전히 가장 큰 영향력을 발휘하고 있습니다.</p>
</div>
<div class="card highlight">
<div class="card-title">AI Agent (53.0%)</div>
<p style="margin:0;">작년 대비 가장 큰 폭으로 상승했습니다. LLM을 활용한 서비스 구현의 핵심 키워드입니다.</p>
</div>
</div>
<div class="analysis-box">
<span class="analysis-title">Analyst Note : '대화'를 넘어 '행동'으로 (The Year of Agent)</span>
<p class="analysis-text">
2024년이 '대화형 AI(Chat)'의 해였다면, <strong>2025년은 명백히 '에이전트(Agent)'의 해</strong>였습니다. LLM(80.4%)은 이제 공기처럼 당연한
인프라가 되었고, 실제 시장의 관심은 이를 활용해 자율적으로 과업을 수행하는 <strong>AI Agent(53%)</strong>로 이동했습니다. 이는 사용자들이 더 이상 '답변'을
듣는 것에 만족하지 않고, '업무를 대신 처리'해주는 실질적인 효용을 요구하기 시작했음을 시사합니다.
</p>
</div>
<div class="page-footer">
<span>Copyright ©2025 MODULABS. All Rights Reserved.</span>
<span>04</span>
</div>
</div>
<!-- PART 3: USAGE -->
<div class="page">
<div class="header">
<div class="header-title">
<span class="header-tag">PART 3</span>
<h2>생성형 AI 활용 현황</h2>
</div>
</div>
<div class="card-grid">
<div class="card">
<div class="card-title">업무 활용 빈도</div>
<div class="chart-container">
<canvas id="freqChart"></canvas>
</div>
<p
style="text-align: center; margin-top: 15px; margin-bottom: 0; font-size: 16px; font-weight: 700; color: var(--primary);">
"매일 쓴다" 73%</p>
</div>
<div class="card">
<div class="card-title">가장 많이 쓰는 서비스 TOP 5</div>
<ul class="rank-list">
<li class="rank-item">
<span class="rank-num">1</span>
<span class="rank-text">ChatGPT</span>
<span class="rank-val">99%</span>
</li>
<li class="rank-item">
<span class="rank-num silver">2</span>
<span class="rank-text">Gemini</span>
<span class="rank-val">91%</span>
</li>
<li class="rank-item">
<span class="rank-num bronze">3</span>
<span class="rank-text">Claude</span>
<span class="rank-val">74%</span>
</li>
<li class="rank-item">
<span class="rank-num" style="background:var(--light); color:var(--dark)">4</span>
<span class="rank-text">Perplexity</span>
<span class="rank-val">68%</span>
</li>
<li class="rank-item">
<span class="rank-num" style="background:var(--light); color:var(--dark)">5</span>
<span class="rank-text">MS Copilot</span>
<span class="rank-val">56%</span>
</li>
</ul>
</div>
</div>
<div class="analysis-box">
<span class="analysis-title">Analyst Note : 유틸리티(Utility)가 된 AI</span>
<p class="analysis-text">
<strong>'매일 사용(73%)'</strong>이라는 수치는 놀랍습니다. 이는 AI가 인터넷 검색이나 메신저처럼 완전히 <strong>'생활 유틸리티'</strong> 단계에
진입했음을
증명합니다. 서비스 측면에서는 ChatGPT의 독주(99%) 속에 Claude와 Perplexity가 '검색'과 '코딩'이라는 특화 기능을 무기로 견고한 2, 3위권을 형성하며
<strong>'목적형 멀티 LLM 활용'</strong> 패턴이 정착된 한 해였습니다.
</p>
</div>
<h3>주요 활용 목적</h3>
<div class="card">
<div class="progress-item">
<div class="progress-header">
<span>기획 및 아이디에이션</span>
<span>77.0%</span>
</div>
<div class="progress-bar">
<div class="progress-fill" style="width: 77%"></div>
</div>
</div>
<div class="progress-item">
<div class="progress-header">
<span>정보 검색 및 리서치</span>
<span>71.0%</span>
</div>
<div class="progress-bar">
<div class="progress-fill secondary" style="width: 71%"></div>
</div>
</div>
<div class="progress-item">
<div class="progress-header">
<span>문서 작성 (보고서/메일)</span>
<span>64.1%</span>
</div>
<div class="progress-bar">
<div class="progress-fill accent" style="width: 64%"></div>
</div>
</div>
<div class="progress-item">
<div class="progress-header">
<span>전략 수립 및 분석</span>
<span>42.4%</span>
</div>
<div class="progress-bar">
<div class="progress-fill" style="width: 42%"></div>
</div>
</div>
</div>
<div class="analysis-box">
<span class="analysis-title">Analyst Note : 기획자(Planner)로서의 AI</span>
<p class="analysis-text">
흥미로운 점은 AI 활용의 주 목적이 <strong>'기획 및 아이디에이션(77%)'</strong>이라는 점입니다. 이는 인간이 AI를 단순 반복 작업의 도구가 아닌,
<strong>'창의적
파트너(Co-pilot)'</strong>로 인정했다는 강력한 증거입니다. 2025년, 우리는 AI에게 '정답'을 묻기보다 '가능성'을 묻고 있습니다.
</p>
</div>
<div class="insight-box">
<div class="insight-icon">🚧</div>
<div class="insight-content">
<h4>Pain Point: 결과의 신뢰성</h4>
<p>활용 확산의 가장 큰 걸림돌은 <strong>'결과 신뢰성 판단(63.5%)'</strong>입니다. 이는 단순한 툴 사용법 교육을 넘어, 결과를 비판적으로 검증하고 수정할 수 있는
고차원적인 AI 리터러시 역량이 필요함을 시사합니다.</p>
</div>
</div>
<div class="page-footer">
<span>Copyright ©2025 MODULABS. All Rights Reserved.</span>
<span>05</span>
</div>
</div>
<!-- PART 4: EDUCATION & NEEDS (NEW) -->
<div class="page">
<div class="header">
<div class="header-title">
<span class="header-tag">PART 4</span>
<h2>성장과 교육 니즈 (Needs)</h2>
</div>
</div>
<div class="card-grid">
<div class="card">
<div class="card-title">가장 배우고 싶은 주제 TOP 5</div>
<div class="chart-container">
<canvas id="eduChart"></canvas>
</div>
</div>
<div class="card">
<div class="card-title">왜 배우고 싶은가? (참여 목적)</div>
<div class="progress-item" style="margin-top: 15px;">
<div class="progress-header"><span>최신 트렌드 파악</span><span>58%</span></div>
<div class="progress-bar">
<div class="progress-fill" style="width: 58%"></div>
</div>
</div>
<div class="progress-item">
<div class="progress-header"><span>개인적 성장</span><span>39%</span></div>
<div class="progress-bar">
<div class="progress-fill secondary" style="width: 39%"></div>
</div>
</div>
<div class="progress-item">
<div class="progress-header"><span>실무 기술 습득</span><span>38%</span></div>
<div class="progress-bar">
<div class="progress-fill accent" style="width: 38%"></div>
</div>
</div>
<div class="progress-item">
<div class="progress-header"><span>네트워킹</span><span>20%</span></div>
<div class="progress-bar">
<div class="progress-fill" style="background:#8B5CF6; width: 20%"></div>
</div>
</div>
</div>
</div>
<div class="analysis-box">
<span class="analysis-title">Analyst Note : '채팅'을 넘어 '엔지니어링'으로</span>
<p class="analysis-text">
사람들은 이제 단순히 챗봇과 대화하는 법을 배우고 싶어 하지 않습니다. <strong>'업무 자동화(Automation)'</strong>와 <strong>'데이터
분석'</strong>에 대한 폭발적인 교육 니즈는, 사용자들이 AI를 이용해 <strong>'나만의 워크플로우'</strong>를 구축하고 싶어 한다는 것을 보여줍니다.
2025년의 교육 트렌드는 '사용법(How to use)'에서 <strong>'구축법(How to build)'</strong>으로 완전히 전환되었습니다.
</p>
</div>
<h3>교육 니즈 상세 분석</h3>
<div class="card-grid card-grid-3">
<div class="card highlight">
<div class="card-title">🧩 프롬프트 & 활용</div>
<p style="margin:0;">ChatGPT 심화 기능, 프롬프트 엔지니어링 등 도구를 100% 활용하는 방법에 대한 수요가 가장 높습니다. (656건)</p>
</div>
<div class="card highlight">
<div class="card-title">⚡️ 업무 자동화</div>
<p style="margin:0;">Python, 노션, n8n 등을 연동하여 반복 업무를 자동화하려는 실질적 니즈가 강합니다. (537건)</p>
</div>
<div class="card highlight">
<div class="card-title">📊 데이터 분석</div>
<p style="margin:0;">Excel을 넘어서 AI를 활용한 데이터 처리 및 시각화 역량을 기르고자 합니다. (495건)</p>
</div>
</div>
<div class="page-footer">
<span>Copyright ©2025 MODULABS. All Rights Reserved.</span>
<span>06</span>
</div>
</div>
<!-- PART 5: COMMUNITY -->
<div class="page">
<div class="header">
<div class="header-title">
<span class="header-tag">PART 5</span>
<h2>커뮤니티와 연결</h2>
</div>
</div>
<div class="card">
<div class="card-title">어떤 활동을 함께하고 싶은가?</div>
<div class="chart-container tall">
<canvas id="communityChart"></canvas>
</div>
</div>
<div class="card-grid" style="margin-top: 20px;">
<div class="card">
<div class="card-title">함께 성장하는 문화</div>
<p style="margin:0;">모두의연구소 인지도는 매우 높으며(60% 이상), 주요 유입 경로는 <strong>'지인 추천(27%)'</strong>입니다. 이는 커뮤니티의
신뢰도와 로열티가 매우 높음을 반증합니다.</p>
</div>
<div class="card highlight">
<div class="card-title">융합의 시대 (AI + X)</div>
<p style="margin:0;">가장 관심 있는 활동으로 <strong>'융합 연구(47.7%)'</strong>가 꼽혔습니다. AI 기술 자체 연구를 넘어, 의료, 예술, 금융 등
자신의 도메인에 AI를 접목하려는 시도가 활발합니다.</p>
</div>
</div>
<div class="analysis-box">
<span class="analysis-title">Analyst Note : 고립되지 않으려는 본능</span>
<p class="analysis-text">
AI가 개인의 업무 생산성을 극대화해줄수록, 역설적으로 <strong>'타인과의 연결'</strong>에 대한 갈증은 커졌습니다. <strong>'융합
연구(47.7%)'</strong>에 대한 높은 관심은, 자신의 도메인 지식(X)에 AI를 결합하여 차별화된 가치를 만들고자 하는 욕구를 반영합니다. 2025년, 커뮤니티는 단순한
친목 모임이 아니라, 급변하는 기술 파도 속에서 <strong>'생존과 성장'을 위한 필수적인 베이스캠프</strong>가 되었습니다.
</p>
</div>
<div class="page-footer">
<span>Copyright ©2025 MODULABS. All Rights Reserved.</span>
<span>07</span>
</div>
</div>
<script>
// Common Config
Chart.defaults.font.family = "'Pretendard', sans-serif";
Chart.defaults.color = '#4B5563';
// 1. Age Chart
new Chart(document.getElementById('ageChart'), {
type: 'bar',
data: {
labels: ['20대', '30대', '40대', '50대+'],
datasets: [{
label: '응답자 수',
data: [757, 442, 443, 219], // Summarized stats
backgroundColor: ['#A5B4FC', '#6366F1', '#4338CA', '#312E81'],
borderRadius: 6
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: { legend: { display: false } },
scales: { x: { grid: { display: false } }, y: { display: false } }