-
Notifications
You must be signed in to change notification settings - Fork 174
Expand file tree
/
Copy pathindex.html
More file actions
1336 lines (1222 loc) · 57.5 KB
/
Copy pathindex.html
File metadata and controls
1336 lines (1222 loc) · 57.5 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="zh-CN">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Yao Meta Skill 1.0 vs Skill OS 2.0</title>
<style>
@font-face {
font-family: "TsangerJinKai02";
src: url("file:///Users/laoyao/.codex/skills/kami/assets/fonts/TsangerJinKai02-W04.ttf") format("truetype");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "TsangerJinKai02";
src: url("file:///Users/laoyao/.codex/skills/kami/assets/fonts/TsangerJinKai02-W05.ttf") format("truetype");
font-weight: 500;
font-style: normal;
}
:root {
--serif: "TsangerJinKai02", "Source Han Serif SC", "Noto Serif CJK SC", "Songti SC", "STSong", Georgia, serif;
--mono: "JetBrains Mono", "SF Mono", Consolas, "TsangerJinKai02", "Source Han Serif SC", monospace;
--ink: #1b365d;
--ink-soft: #35527b;
--text: #141413;
--muted: #504e49;
--stone: #6b6a64;
--line: #e8e6dc;
--line-strong: #d7d2c4;
--canvas: #f5f4ed;
--paper: #faf9f5;
--warm: #fffefa;
--warm-2: #f0eee5;
--green: #355e4a;
--amber: #8a6428;
--red: #8d3a35;
--blue-pale: #e8eff7;
--shadow: 0 6px 28px rgba(20, 20, 19, 0.06);
--radius: 8px;
}
* {
box-sizing: border-box;
}
html {
background: var(--canvas);
color: var(--text);
scroll-behavior: smooth;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
margin: 0;
background: var(--canvas);
font-family: var(--serif);
line-height: 1.55;
letter-spacing: 0.02em;
overflow-x: hidden;
}
a {
color: inherit;
}
.page {
width: min(1180px, calc(100vw - 220px));
margin: 0 auto;
padding: 28px 0 56px;
}
.topbar {
position: sticky;
top: 0;
z-index: 20;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
padding: 14px 0 12px;
background: rgba(245, 244, 237, 0.96);
border-bottom: 1px solid var(--line);
}
.brand {
display: flex;
align-items: center;
gap: 12px;
min-width: 220px;
color: var(--ink);
font-family: var(--serif);
font-weight: 500;
letter-spacing: 0;
}
.mark {
width: 34px;
height: 34px;
display: grid;
place-items: center;
border-radius: 8px;
color: var(--paper);
background: var(--ink);
font-family: var(--serif);
font-weight: 500;
}
.nav {
display: flex;
gap: 8px;
flex-wrap: wrap;
justify-content: flex-end;
font-family: var(--serif);
font-size: 12px;
color: var(--ink-soft);
}
.nav a {
text-decoration: none;
padding: 7px 10px;
border: 1px solid var(--line);
border-radius: 999px;
background: var(--paper);
}
.top-actions {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 12px;
flex-wrap: wrap;
}
.lang-switch {
display: inline-flex;
align-items: center;
padding: 3px;
border: 1px solid var(--line);
border-radius: 999px;
background: var(--warm);
font-family: var(--serif);
}
.lang-switch button {
appearance: none;
border: 0;
min-height: 28px;
padding: 4px 10px;
border-radius: 999px;
background: transparent;
color: var(--ink-soft);
cursor: pointer;
font: inherit;
font-size: 12px;
font-weight: 500;
}
body[data-report-lang="zh-CN"] [data-set-lang="zh-CN"],
body[data-report-lang="en"] [data-set-lang="en"] {
color: var(--paper);
background: var(--ink);
}
.hero {
display: grid;
grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
gap: 42px;
padding: 56px 0 34px;
align-items: end;
border-bottom: 1px solid var(--line);
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
margin: 0 0 14px;
color: var(--ink);
font-family: var(--serif);
font-size: 12px;
font-weight: 500;
letter-spacing: 0;
text-transform: uppercase;
}
.eyebrow::before,
.section-title::before {
content: "";
width: 46px;
height: 3px;
background: var(--ink);
display: inline-block;
border-radius: 999px;
}
h1 {
margin: 0;
color: var(--ink);
font-size: clamp(36px, 4.2vw, 64px);
line-height: 1.08;
letter-spacing: 0;
text-wrap: balance;
}
.hero-copy {
max-width: 820px;
margin: 26px 0 0;
color: var(--muted);
font-size: clamp(15px, 1.35vw, 18px);
line-height: 1.62;
text-wrap: pretty;
}
.verdict {
border: 1px solid var(--line);
border-radius: var(--radius);
background: var(--warm);
box-shadow: var(--shadow);
padding: 24px;
}
.verdict h2 {
margin: 0 0 10px;
color: var(--ink);
font-size: 24px;
line-height: 1.18;
letter-spacing: 0;
font-weight: 500;
}
.verdict p {
margin: 0;
color: var(--muted);
font-size: 14px;
}
.status-row {
display: grid;
grid-template-columns: 1fr;
gap: 10px;
margin-top: 22px;
}
.status {
min-height: 76px;
padding: 14px;
border: 1px solid var(--line);
border-radius: 8px;
background: var(--paper);
}
.status b {
display: block;
color: var(--ink);
font-family: var(--serif);
font-size: 19px;
line-height: 1;
font-weight: 500;
font-variant-numeric: tabular-nums;
}
.status span {
display: block;
margin-top: 9px;
color: var(--muted);
font-size: 12px;
line-height: 1.45;
}
.section {
padding: 42px 0 10px;
}
.section-head {
display: block;
margin-bottom: 18px;
}
.section-title {
display: flex;
flex-direction: column;
gap: 18px;
}
.section-title h2 {
margin: 0;
color: var(--text);
font-size: clamp(26px, 2.4vw, 38px);
line-height: 1.08;
letter-spacing: 0;
font-weight: 500;
}
.kpi-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 14px;
}
.kpi {
min-height: 146px;
padding: 16px;
border: 1px solid var(--line);
border-radius: var(--radius);
background: var(--paper);
box-shadow: 0 4px 20px rgba(20, 20, 19, 0.04);
display: flex;
flex-direction: column;
justify-content: space-between;
}
.kpi .label {
color: var(--muted);
font-family: var(--serif);
font-size: 12px;
line-height: 1.35;
}
.kpi .number {
color: var(--ink);
font-family: var(--serif);
font-size: 38px;
line-height: 1;
font-weight: 500;
font-variant-numeric: tabular-nums;
letter-spacing: 0;
}
.kpi .delta {
color: var(--green);
font-family: var(--serif);
font-size: 11.5px;
line-height: 1.35;
font-weight: 500;
}
.compare {
width: 100%;
border-collapse: separate;
border-spacing: 0;
border: 1px solid var(--line);
border-radius: var(--radius);
overflow: hidden;
background: var(--paper);
box-shadow: var(--shadow);
table-layout: fixed;
}
.compare th,
.compare td {
vertical-align: top;
padding: 18px 20px;
border-bottom: 1px solid var(--line);
text-align: left;
}
.compare th {
color: var(--ink);
background: var(--warm);
font-family: var(--serif);
font-size: 12px;
font-weight: 500;
}
.compare tr:last-child td {
border-bottom: 0;
}
.compare th:nth-child(1),
.compare td:nth-child(1) {
width: 17%;
}
.compare th:nth-child(2),
.compare td:nth-child(2),
.compare th:nth-child(3),
.compare td:nth-child(3) {
width: 31.5%;
}
.compare th:nth-child(4),
.compare td:nth-child(4) {
width: 20%;
}
.compare td {
color: var(--muted);
font-size: 13px;
line-height: 1.5;
}
.compare .dim {
color: var(--ink);
font-family: var(--serif);
font-weight: 500;
font-size: 13px;
}
.compare b {
color: var(--text);
font-weight: 500;
}
.charts {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
gap: 18px;
}
.chart-card {
border: 1px solid var(--line);
border-radius: var(--radius);
background: var(--paper);
padding: 20px;
box-shadow: 0 4px 24px rgba(20, 20, 19, 0.05);
min-width: 0;
}
.chart-card.wide {
grid-column: 1 / -1;
}
.chart-card h3 {
margin: 0 0 8px;
color: var(--ink);
font-size: 20px;
line-height: 1.2;
letter-spacing: 0;
font-weight: 500;
}
.chart-card p {
margin: 0 0 18px;
color: var(--muted);
font-size: 13px;
line-height: 1.55;
}
svg {
display: block;
width: 100%;
height: auto;
overflow: visible;
}
.caption {
margin-top: 14px;
padding-top: 13px;
border-top: 1px solid var(--line);
color: var(--muted);
font-size: 12px;
line-height: 1.55;
}
.timeline {
position: relative;
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 14px;
padding-top: 10px;
}
.timeline::before {
content: "";
position: absolute;
top: 34px;
left: 5%;
right: 5%;
height: 2px;
background: var(--line-strong);
}
.step {
position: relative;
padding: 48px 15px 16px;
border: 1px solid var(--line);
border-radius: var(--radius);
background: var(--paper);
min-height: 178px;
}
.step::before {
content: attr(data-n);
position: absolute;
top: 0;
left: 15px;
transform: translateY(-50%);
width: 42px;
height: 42px;
display: grid;
place-items: center;
border-radius: 999px;
color: var(--paper);
background: var(--ink);
font-family: var(--serif);
font-weight: 500;
font-variant-numeric: tabular-nums;
box-shadow: 0 0 0 8px var(--paper);
}
.step b {
display: block;
color: var(--ink);
font-family: var(--serif);
font-size: 13px;
margin-bottom: 8px;
font-weight: 500;
}
.step span {
color: var(--muted);
font-size: 12px;
line-height: 1.55;
}
.scenario-grid,
.advantage-grid,
.example-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 14px;
}
.analysis-card,
.scenario-card,
.example-card {
border: 1px solid var(--line);
border-radius: var(--radius);
background: var(--paper);
padding: 18px;
box-shadow: 0 4px 22px rgba(20, 20, 19, 0.045);
}
.scenario-card h3,
.analysis-card h3,
.example-card h3 {
margin: 0 0 8px;
color: var(--ink);
font-size: 18px;
font-weight: 500;
line-height: 1.25;
}
.scenario-card p,
.analysis-card p,
.example-card p {
margin: 0;
color: var(--muted);
font-size: 12.5px;
line-height: 1.5;
}
.tagline {
display: inline-flex;
margin-bottom: 10px;
padding: 3px 7px;
border-radius: 4px;
color: var(--ink);
background: #eef2f7;
font-size: 11px;
line-height: 1.3;
letter-spacing: 0.04em;
}
.advantage-grid {
grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}
.advantage-list {
display: grid;
gap: 10px;
margin: 0;
padding: 0;
list-style: none;
}
.advantage-list li {
border: 1px solid var(--line);
border-radius: var(--radius);
background: var(--paper);
padding: 14px 16px;
color: var(--muted);
font-size: 12.5px;
line-height: 1.48;
}
.advantage-list b {
display: block;
margin-bottom: 4px;
color: var(--ink);
font-weight: 500;
}
.principle-stack {
display: grid;
gap: 10px;
}
.layer {
display: grid;
grid-template-columns: 138px minmax(0, 1fr);
gap: 16px;
align-items: start;
padding: 14px 16px;
border: 1px solid var(--line);
border-radius: var(--radius);
background: var(--paper);
}
.layer strong {
color: var(--ink);
font-size: 13px;
font-weight: 500;
line-height: 1.35;
}
.layer span {
color: var(--muted);
font-size: 12.5px;
line-height: 1.5;
}
.example-card ul {
margin: 10px 0 0;
padding-left: 18px;
color: var(--muted);
font-size: 12.5px;
line-height: 1.48;
}
.example-card li + li {
margin-top: 6px;
}
.pill {
display: inline-flex;
align-items: center;
gap: 7px;
padding: 5px 9px;
border-radius: 999px;
border: 1px solid var(--line);
background: var(--paper);
color: var(--ink-soft);
font-family: var(--serif);
font-size: 12px;
font-weight: 500;
white-space: nowrap;
}
.dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--green);
}
.dot.warn {
background: var(--amber);
}
.dot.block {
background: var(--red);
}
@media (max-width: 1120px) {
.hero,
.section-head,
.advantage-grid {
grid-template-columns: 1fr;
}
.kpi-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.charts,
.timeline,
.scenario-grid,
.example-grid {
grid-template-columns: 1fr;
}
.timeline::before {
display: none;
}
}
@media (max-width: 760px) {
.page {
width: calc(100vw - 28px);
padding-top: 14px;
}
.topbar {
position: static;
align-items: flex-start;
flex-direction: column;
}
.nav {
width: 100%;
justify-content: flex-start;
gap: 6px;
font-size: 12px;
}
.top-actions {
width: 100%;
justify-content: flex-start;
}
.nav a {
padding: 6px 8px;
flex: 0 1 auto;
}
.hero {
padding-top: 36px;
}
.status-row,
.kpi-grid,
.scenario-grid,
.advantage-grid,
.example-grid {
grid-template-columns: 1fr;
}
.layer {
grid-template-columns: 1fr;
}
.compare,
.compare thead,
.compare tbody,
.compare th,
.compare td,
.compare tr {
display: block;
width: 100% !important;
}
.compare thead {
display: none;
}
.compare td {
border-bottom: 0;
padding: 12px 16px;
overflow-wrap: anywhere;
}
.compare tr {
border-bottom: 1px solid var(--line);
padding: 8px 0;
}
.compare tr:last-child {
border-bottom: 0;
}
}
</style>
</head>
<body data-report-lang="zh-CN">
<main class="page">
<header class="topbar" aria-label="报告导航">
<div class="brand"><span class="mark">Y</span><span data-i18n="brand">Yao Meta Skill 对比图</span></div>
<div class="top-actions">
<nav class="nav">
<a href="#summary" data-i18n="navSummary">关键结论</a>
<a href="#metrics" data-i18n="navMetrics">核心指标</a>
<a href="#charts" data-i18n="navCharts">图表分析</a>
<a href="#dimensions" data-i18n="navDimensions">维度对比</a>
<a href="#scenarios" data-i18n="navScenarios">场景原理</a>
<a href="#examples" data-i18n="navExamples">示例说明</a>
</nav>
<div class="lang-switch" aria-label="语言切换">
<button type="button" data-set-lang="zh-CN">中文</button>
<button type="button" data-set-lang="en">EN</button>
</div>
</div>
</header>
<section class="hero" id="summary">
<div>
<p class="eyebrow" data-i18n="eyebrow">版本对比 · 2026-06-17</p>
<h1 data-i18n="heroTitle">从技能创建器,升级为技能操作系统 2.0</h1>
<p class="hero-copy" data-i18n="heroCopy">
1.0 的重点是把重复工作流整理成可安装、可阅读、可跨平台的技能包。当前 2.0 版本已经把范围推进到
Skill IR(技能中间表示)、编译适配、评测实验室、Review Studio(评审工作台)、证据账本、包体验证和发布门禁。
核心变化是从“生成一个技能”变成“治理一个可测试、可审计、可迭代的技能系统”。
</p>
</div>
<aside class="verdict">
<h2 data-i18n="verdictTitle">2.0 优势判断</h2>
<div class="status-row">
<div class="status"><b data-i18n="statusReadyTitle">可治理</b><span data-i18n="statusReadyCopy">从“生成技能”升级为包含门禁、证据和复盘的治理流程。</span></div>
<div class="status"><b data-i18n="statusClaimTitle">可验证</b><span data-i18n="statusClaimCopy">评测、包体验证、安装模拟和证据一致性让质量判断更可复查。</span></div>
<div class="status"><b data-i18n="statusLedgerTitle">可迁移</b><span data-i18n="statusLedgerCopy">通过中间表示和适配器覆盖更多运行环境,降低跨平台迁移成本。</span></div>
</div>
</aside>
</section>
<section class="section" id="metrics">
<div class="section-head">
<div class="section-title">
<h2 data-i18n="metricsTitle">核心指标</h2>
</div>
</div>
<div class="kpi-grid">
<article class="kpi">
<span class="label" data-i18n="kpiTargetsLabel">目标平台</span>
<span class="number">3 → 5</span>
<span class="delta" data-i18n="kpiTargetsDelta">从 OpenAI、Claude、Generic(通用平台)扩展到 Agent Skills(代理技能规范)和 VS Code(编辑器环境)。</span>
</article>
<article class="kpi">
<span class="label" data-i18n="kpiCompatLabel">兼容检查</span>
<span class="number">3 → 6</span>
<span class="delta" data-i18n="kpiCompatDelta">当前 registry(注册表)记录 6 项 compatibility pass(兼容通过)。</span>
</article>
<article class="kpi">
<span class="label" data-i18n="kpiReviewLabel">评审工作台</span>
<span class="number">16</span>
<span class="delta" data-i18n="kpiReviewDelta">Review Studio(评审工作台)汇总 16 个门禁,无阻塞,3 个 warning(警告)。</span>
</article>
<article class="kpi">
<span class="label" data-i18n="kpiEvidenceLabel">证据一致性</span>
<span class="number">39/39</span>
<span class="delta" data-i18n="kpiEvidenceDelta">evidence_consistency(证据一致性)决策为 consistent(一致)。</span>
</article>
<article class="kpi">
<span class="label" data-i18n="kpiReproLabel">复现实验包</span>
<span class="number">25</span>
<span class="delta" data-i18n="kpiReproDelta">required artifacts(必需证据产物)全部存在,missing(缺失)=0。</span>
</article>
<article class="kpi">
<span class="label" data-i18n="kpiScoreLabel">世界级评分</span>
<span class="number">91</span>
<span class="delta" data-i18n="kpiScoreDelta">Review Studio(评审工作台)评分高,但不是 public claim(公开宣传)许可。</span>
</article>
</div>
</section>
<section class="section" id="charts">
<div class="section-head">
<div class="section-title">
<h2 data-i18n="chartsTitle">图表分析</h2>
</div>
</div>
<div class="charts">
<article class="chart-card">
<h3 data-i18n="radarTitle">能力雷达</h3>
<p data-i18n="radarIntro">1.0 在创建链路上已经可用,2.0 在评测、治理、发布安全和运营闭环上明显拉开差距。</p>
<svg viewBox="0 0 640 500" role="img" aria-label="能力雷达图">
<defs>
<style>
.axis{stroke:#d8cfc3;stroke-width:1}
.grid{fill:none;stroke:#e7ded2;stroke-width:1}
.poly1{fill:rgba(165,101,22,.16);stroke:#a56516;stroke-width:3}
.poly2{fill:rgba(27,54,93,.16);stroke:#1b365d;stroke-width:4}
.label{font:16px Georgia,serif;fill:#26221f}
.small{font:13px system-ui,sans-serif;fill:#716b64}
</style>
</defs>
<g transform="translate(320 245)">
<polygon class="grid" points="0,-190 164,-95 164,95 0,190 -164,95 -164,-95"></polygon>
<polygon class="grid" points="0,-142 123,-71 123,71 0,142 -123,71 -123,-71"></polygon>
<polygon class="grid" points="0,-95 82,-48 82,48 0,95 -82,48 -82,-48"></polygon>
<polygon class="grid" points="0,-48 41,-24 41,24 0,48 -41,24 -41,-24"></polygon>
<line class="axis" x1="0" y1="0" x2="0" y2="-205"></line>
<line class="axis" x1="0" y1="0" x2="177" y2="-102"></line>
<line class="axis" x1="0" y1="0" x2="177" y2="102"></line>
<line class="axis" x1="0" y1="0" x2="0" y2="205"></line>
<line class="axis" x1="0" y1="0" x2="-177" y2="102"></line>
<line class="axis" x1="0" y1="0" x2="-177" y2="-102"></line>
<polygon class="poly1" points="0,-124 104,-60 69,40 0,76 -104,60 -130,-75"></polygon>
<polygon class="poly2" points="0,-181 164,-95 159,92 0,175 -153,88 -164,-95"></polygon>
<text class="label" text-anchor="middle" x="0" y="-224" data-i18n="radarMethod">方法论</text>
<text class="label" text-anchor="start" x="190" y="-106" data-i18n="radarEval">评测</text>
<text class="label" text-anchor="start" x="190" y="112" data-i18n="radarGovern">治理</text>
<text class="label" text-anchor="middle" x="0" y="238" data-i18n="radarRelease">发布安全</text>
<text class="label" text-anchor="end" x="-190" y="112" data-i18n="radarOps">运营闭环</text>
<text class="label" text-anchor="end" x="-190" y="-106" data-i18n="radarPort">跨端适配</text>
</g>
<g transform="translate(38 422)">
<rect width="16" height="16" fill="rgba(165,101,22,.18)" stroke="#a56516" stroke-width="2"></rect>
<text class="small" x="24" y="13" data-i18n="radarLegendV1">1.0 定性能力面</text>
<rect x="164" width="16" height="16" fill="rgba(27,54,93,.18)" stroke="#1b365d" stroke-width="2"></rect>
<text class="small" x="188" y="13" data-i18n="radarLegendV2">2.0 当前能力面</text>
</g>
</svg>
<div class="caption" data-i18n="radarCaption">洞察:2.0 的提升集中在“评测、治理、发布安全、运营闭环”,这也是从工具变成系统的核心证据。</div>
</article>
<article class="chart-card">
<h3 data-i18n="evidenceTitle">证据阶梯</h3>
<p data-i18n="evidenceIntro">2.0 的证据链从文件存在性扩展到执行记录、hash(哈希)、安装模拟、复现实验和公开声明约束。</p>
<svg viewBox="0 0 640 500" role="img" aria-label="证据阶梯图">
<defs>
<style>
.bar1{fill:#d7b98e}
.bar2{fill:#1b365d}
.axisText{font:13px system-ui,sans-serif;fill:#716b64}
.num{font:700 20px system-ui,sans-serif;fill:#1b365d}
.line{stroke:#e7ded2;stroke-width:1}
</style>
</defs>
<g transform="translate(54 38)">
<line class="line" x1="0" y1="390" x2="535" y2="390"></line>
<g transform="translate(0 0)">
<text class="axisText" x="0" y="412" data-i18n="evidenceCompat">兼容项</text>
<rect class="bar1" x="8" y="235" width="44" height="155" rx="4"></rect>
<rect class="bar2" x="58" y="80" width="44" height="310" rx="4"></rect>
<text class="num" x="12" y="226">3</text>
<text class="num" x="62" y="70">6</text>
</g>
<g transform="translate(118 0)">
<text class="axisText" x="0" y="412" data-i18n="evidenceGates">评审门禁</text>
<rect class="bar1" x="8" y="333" width="44" height="57" rx="4"></rect>
<rect class="bar2" x="58" y="52" width="44" height="338" rx="4"></rect>
<text class="num" x="12" y="324" data-i18n="evidenceBasic">基础</text>
<text class="num" x="62" y="42">16</text>
</g>
<g transform="translate(260 0)">
<text class="axisText" x="0" y="412" data-i18n="evidenceConsistency">证据一致性</text>
<rect class="bar1" x="8" y="350" width="44" height="40" rx="4"></rect>
<rect class="bar2" x="58" y="0" width="44" height="390" rx="4"></rect>
<text class="num" x="12" y="340" data-i18n="evidenceUncounted1">未计</text>
<text class="num" x="62" y="-10">39/39</text>
</g>
<g transform="translate(404 0)">
<text class="axisText" x="0" y="412" data-i18n="evidenceRepro">复现实验包</text>
<rect class="bar1" x="8" y="350" width="44" height="40" rx="4"></rect>
<rect class="bar2" x="58" y="106" width="44" height="284" rx="4"></rect>
<text class="num" x="12" y="340" data-i18n="evidenceUncounted2">未计</text>
<text class="num" x="62" y="96">25</text>
</g>
</g>
</svg>
<div class="caption" data-i18n="evidenceCaption">洞察:2.0 把“能不能发布”拆成可检查的证据包,而不是只看技能文档是否完整。</div>
</article>
<article class="chart-card wide">
<h3 data-i18n="workflowTitle">2.0 工作流</h3>
<p data-i18n="workflowIntro">新的流程按照从上游输入到下游发布的顺序展开,避免报告和门禁散落在多个无关联文件中。</p>
<div class="timeline">
<div class="step" data-n="1"><b data-i18n="step1Title">输入归一</b><span data-i18n="step1Copy">工作流、提示词、转录、文档先进入 intent(意图记录)和 Skill IR(技能中间表示),不直接堆进 SKILL.md(技能入口文件)。</span></div>
<div class="step" data-n="2"><b data-i18n="step2Title">编译适配</b><span data-i18n="step2Copy">由 Skill IR(技能中间表示)生成 OpenAI、Claude、Generic(通用平台)、Agent Skills(代理技能规范)、VS Code(编辑器环境)等目标平台产物。</span></div>
<div class="step" data-n="3"><b data-i18n="step3Title">评测实验</b><span data-i18n="step3Copy">触发、输出质量、失败披露、模型运行、token(上下文用量)和耗时证据进入报告。</span></div>
<div class="step" data-n="4"><b data-i18n="step4Title">审计工作台</b><span data-i18n="step4Copy">Review Studio(评审工作台)汇总 16 个 gates(门禁),给出阻塞、警告、行动项和证据路径。</span></div>
<div class="step" data-n="5"><b data-i18n="step5Title">受控发布</b><span data-i18n="step5Copy">package verification(包体验证)、install simulation(安装模拟)、release lock(发布锁定)和 public claim guard(公开宣传守卫)共同决定发布边界。</span></div>
</div>
<div class="caption" data-i18n="workflowCaption">洞察:2.0 最重要的结构变化是“先建模,再编译,再验证,再发布”,这让后续自动化和团队协作有稳定接口。</div>
</article>
</div>
</section>
<section class="section" id="dimensions">
<div class="section-head">
<div class="section-title">
<h2 data-i18n="dimensionsTitle">维度对比</h2>
</div>
</div>
<table class="compare" aria-label="Yao Meta Skill 1.0 和 Skill OS 2.0 维度对比">
<thead>
<tr>
<th data-i18n="thDimension">维度</th>
<th data-i18n="thV1">1.0 版本</th>
<th data-i18n="thV2">2.0 版本</th>
<th data-i18n="thChange">显著变化</th>
</tr>
</thead>
<tbody>
<tr>
<td class="dim" data-i18n="rowProduct">产品定位</td>
<td data-i18n="rowProductV1">面向个人和团队的 <b>技能创建、重构、评估、打包助手</b>,强调把流程转成 SKILL.md(技能入口文件)、reports(报告目录)和 metadata(元数据)。</td>
<td data-i18n="rowProductV2">面向团队发布的 <b>Skill OS(技能操作系统)</b>,覆盖创建、编译、评测、治理、发布、反馈和证据追踪。</td>
<td data-i18n="rowProductChange">从“产物生成”升级为“生命周期治理”。</td>
</tr>
<tr>
<td class="dim" data-i18n="rowArch">架构模型</td>
<td data-i18n="rowArchV1">以 SKILL.md(技能入口文件)、agents/interface.yaml(代理接口配置)、manifest(清单)和基础 reports(报告)为主,文件结构相对直观。</td>
<td data-i18n="rowArchV2">引入 Skill IR(技能中间表示)、target compiler(目标编译器)、adapter(适配器)、gate contract(门禁契约)、release evidence(发布证据)、world-class ledger(世界级证据账本)等模块化结构。</td>
<td data-i18n="rowArchChange">从文件模板升级为中间表示驱动的工程系统。</td>
</tr>
<tr>
<td class="dim" data-i18n="rowPort">跨端适配</td>
<td data-i18n="rowPortV1">registry(注册表)快照记录 3 个目标平台:OpenAI、Claude、Generic(通用平台)。</td>
<td data-i18n="rowPortV2">当前 package(包体记录)记录 5 个 targets(目标平台),compatibility(兼容性)记录 6 项 pass(通过),增加 Agent Skills Compatible(代理技能兼容规范)和 VS Code(编辑器环境)。</td>
<td data-i18n="rowPortChange">覆盖范围扩大,适配结果可被 registry(注册表)读取。</td>
</tr>
<tr>
<td class="dim" data-i18n="rowEval">评测体系</td>
<td data-i18n="rowEvalV1">已有概览、信任报告、conformance matrix(符合性矩阵),但评测链路较轻。</td>