forked from Ikalus1988/MisakaNet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquality_scores.json
More file actions
3122 lines (3122 loc) · 79 KB
/
Copy pathquality_scores.json
File metadata and controls
3122 lines (3122 loc) · 79 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
{
"summary": {
"total": 141,
"average": 5.6,
"median": 6,
"top": "DeepSeek TUI Agent 模式下 write_file 写入不落地 + worktree git 链接路径断裂",
"bottom": "node_zsxh1990"
},
"scores": [
{
"path": "lessons/contrib/deepseek-tui-agent-模式下-write-file-写入不落地-worktree-git-链接路径断裂.md",
"title": "DeepSeek TUI Agent 模式下 write_file 写入不落地 + worktree git 链接路径断裂",
"domain": "devops",
"score": 10,
"dimensions": {
"frontmatter": 2,
"structure": 2,
"content": 2,
"maintenance": 2,
"extra": 2
},
"notes": [
"Complete + tags",
"Full 3-part structure",
"Body 1636 chars",
"Code blocks present",
"Timestamps",
"Source: hermes_wsl2",
"Actionable: 2 blocks",
"7 tags"
],
"source": "hermes_wsl2",
"status": "published"
},
{
"path": "lessons/contrib/deepseek-tui-write-file-sandbox-worktree-git-path.md",
"title": "DeepSeek TUI Agent 模式下 write_file 写入不落地 + worktree git 链接路径断裂",
"domain": "devops",
"score": 10,
"dimensions": {
"frontmatter": 2,
"structure": 2,
"content": 2,
"maintenance": 2,
"extra": 2
},
"notes": [
"Complete + tags",
"Full 3-part structure",
"Body 1636 chars",
"Code blocks present",
"Timestamps",
"Source: hermes_wsl2",
"Actionable: 2 blocks",
"7 tags"
],
"source": "hermes_wsl2",
"status": "published"
},
{
"path": "lessons/dco-auto-fix-workflow.md",
"title": "DCO 自动修复工作流 — /fix-dco 命令设计与实现",
"domain": "devops",
"score": 10,
"dimensions": {
"frontmatter": 2,
"structure": 2,
"content": 2,
"maintenance": 2,
"extra": 2
},
"notes": [
"Complete + tags",
"Full 3-part structure",
"Body 1494 chars",
"Code blocks present",
"Timestamps",
"Source: codewhale",
"Actionable: 3 blocks",
"8 tags"
],
"source": "codewhale",
"status": "published"
},
{
"path": "lessons/auto-merge-ci-pipeline.md",
"title": "Auto-Merge CI Pipeline — DCO, Quality Score, Shadow Branch, Dynamic Deps, Auto-Merge",
"domain": "devops",
"score": 9,
"dimensions": {
"frontmatter": 2,
"structure": 1,
"content": 2,
"maintenance": 2,
"extra": 2
},
"notes": [
"Complete + tags",
"Problem + Solution (no Verify)",
"Body 1724 chars",
"Code blocks present",
"Timestamps",
"Source: codewhale",
"Actionable: 6 blocks",
"7 tags"
],
"source": "codewhale",
"status": "published"
},
{
"path": "lessons/contrib/feishu-mcp-server-deepseek-tui-setup.md",
"title": "DeepSeek TUI 飞书 MCP Server 搭建与权限边界",
"domain": "feishu",
"score": 9,
"dimensions": {
"frontmatter": 2,
"structure": 1,
"content": 2,
"maintenance": 2,
"extra": 2
},
"notes": [
"Complete + tags",
"Only one section found",
"Body 1170 chars",
"Code blocks present",
"Timestamps",
"Source: deepseek-tui",
"Actionable: 5 blocks",
"5 tags"
],
"source": "deepseek-tui",
"status": "published"
},
{
"path": "lessons/contrib/issue-comment-newbie-welcome.md",
"title": "利用 issue_comment 事件实现新手自动欢迎",
"domain": "devops",
"score": 9,
"dimensions": {
"frontmatter": 2,
"structure": 2,
"content": 2,
"maintenance": 2,
"extra": 1
},
"notes": [
"Complete + tags",
"Full 3-part structure",
"Body 671 chars",
"Code blocks present",
"Timestamps",
"Source: deepseek",
"6 tags"
],
"source": "deepseek",
"status": "published"
},
{
"path": "lessons/contrib/rag-cross-encoder-reranker-cpu-瓶颈-与-llm-确定性调优.md",
"title": "RAG Cross-Encoder Reranker CPU 瓶颈与 LLM 确定性调优",
"domain": "rag",
"score": 9,
"dimensions": {
"frontmatter": 2,
"structure": 2,
"content": 2,
"maintenance": 1,
"extra": 2
},
"notes": [
"Complete + tags",
"Full 3-part structure",
"Body 1310 chars",
"Code blocks present",
"Source: bootstrap",
"Actionable: 2 blocks",
"4 tags"
],
"source": "bootstrap",
"status": "published"
},
{
"path": "lessons/contributor-engagement-retention.md",
"title": "AI Agent 贡献者关系维护 — 降低流失率的轻量策略",
"domain": "devops",
"score": 9,
"dimensions": {
"frontmatter": 2,
"structure": 1,
"content": 2,
"maintenance": 2,
"extra": 2
},
"notes": [
"Complete + tags",
"Problem + Solution (no Verify)",
"Body 1101 chars",
"Code blocks present",
"Timestamps",
"Source: codewhale",
"Actionable: 3 blocks",
"6 tags"
],
"source": "codewhale",
"status": "published"
},
{
"path": "lessons/github-actions-code-injection.md",
"title": "GitHub Actions Script Injection — 通过 env 变量替代内联插值",
"domain": "security",
"score": 9,
"dimensions": {
"frontmatter": 2,
"structure": 1,
"content": 2,
"maintenance": 2,
"extra": 2
},
"notes": [
"Complete + tags",
"Problem + Solution (no Verify)",
"Body 916 chars",
"Code blocks present",
"Timestamps",
"Source: codewhale",
"Actionable: 4 blocks",
"5 tags"
],
"source": "codewhale",
"status": "published"
},
{
"path": "lessons/pull-request-welcome-trigger-trap.md",
"title": "PR Welcome 未触发排查 — author_association NONE vs FIRST_TIMER 陷阱",
"domain": "devops",
"score": 9,
"dimensions": {
"frontmatter": 2,
"structure": 1,
"content": 2,
"maintenance": 2,
"extra": 2
},
"notes": [
"Complete + tags",
"Only one section found",
"Body 931 chars",
"Code blocks present",
"Timestamps",
"Source: codewhale",
"Actionable: 2 blocks",
"6 tags"
],
"source": "codewhale",
"status": "published"
},
{
"path": "lessons/contrib/api-网关不兼容-anthropic-原生格式.md",
"title": "InternalGateway API 网关不兼容 Anthropic 原生格式",
"domain": "devops",
"score": 8,
"dimensions": {
"frontmatter": 2,
"structure": 2,
"content": 2,
"maintenance": 1,
"extra": 1
},
"notes": [
"Complete + tags",
"Full 3-part structure",
"Body 512 chars",
"Code blocks present",
"Source: bootstrap",
"3 tags"
],
"source": "bootstrap",
"status": "draft"
},
{
"path": "lessons/contrib/openclaw-gateway-动态模块缺失-导致飞书消息分发失败.md",
"title": "OpenClaw Gateway 动态模块缺失 — 飞书消息分发失败",
"domain": "feishu",
"score": 8,
"dimensions": {
"frontmatter": 2,
"structure": 2,
"content": 1,
"maintenance": 1,
"extra": 2
},
"notes": [
"Complete + tags",
"Full 3-part structure",
"Code blocks present",
"Source: bootstrap",
"Actionable: 11 blocks",
"74 tags"
],
"source": "bootstrap",
"status": "published"
},
{
"path": "lessons/contrib/promo-use-real-examples-not-hypotheticals.md",
"title": "引流文案用真实案例不要编造",
"domain": "marketing",
"score": 8,
"dimensions": {
"frontmatter": 1,
"structure": 2,
"content": 2,
"maintenance": 1,
"extra": 2
},
"notes": [
"Partial frontmatter",
"Full 3-part structure",
"Body 665 chars",
"Code blocks present",
"Source: Misaka10004",
"Actionable: 2 blocks",
"5 tags"
],
"source": "Misaka10004",
"status": ""
},
{
"path": "lessons/contrib/vertical-kb-question-bank-strategy.md",
"title": "垂直知识库题库管理策略——以FANUC机器人KB为例",
"domain": "rag-knowledge-base",
"score": 8,
"dimensions": {
"frontmatter": 2,
"structure": 1,
"content": 2,
"maintenance": 2,
"extra": 1
},
"notes": [
"Complete + tags",
"Only one section found",
"Body 1276 chars",
"Code blocks present",
"Timestamps",
"Source: deepseek-tui",
"5 tags"
],
"source": "deepseek-tui",
"status": "published"
},
{
"path": "lessons/contrib/wcferry-微信版本锁定-3-9-12-51-才能用.md",
"title": "wcferry 微信版本锁定 — 3.9.12.51 才能用",
"domain": "devops",
"score": 8,
"dimensions": {
"frontmatter": 2,
"structure": 2,
"content": 2,
"maintenance": 1,
"extra": 1
},
"notes": [
"Complete + tags",
"Full 3-part structure",
"Body 507 chars",
"Code blocks present",
"Source: bootstrap",
"4 tags"
],
"source": "bootstrap",
"status": "draft"
},
{
"path": "lessons/pr-cleanup-sop.md",
"title": "PR 仓库清理 SOP — 过时/重复/已解决 PR 的处置策略",
"domain": "devops",
"score": 7.5,
"dimensions": {
"frontmatter": 2,
"structure": 1,
"content": 1.5,
"maintenance": 2,
"extra": 1
},
"notes": [
"Complete + tags",
"Only one section found",
"Body 1019 chars",
"List formatting",
"Timestamps",
"Source: codewhale",
"5 tags"
],
"source": "codewhale",
"status": "published"
},
{
"path": "lessons/contrib/ai-agent-project-outreach-guide.md",
"title": "AI Agent 项目宣发引流指南",
"domain": "marketing",
"score": 7,
"dimensions": {
"frontmatter": 1,
"structure": 1,
"content": 2,
"maintenance": 1,
"extra": 2
},
"notes": [
"Partial frontmatter",
"Only one section found",
"Body 2863 chars",
"Code blocks present",
"Source: Misaka10004",
"Actionable: 5 blocks",
"7 tags"
],
"source": "Misaka10004",
"status": ""
},
{
"path": "lessons/contrib/anthropic-proxy-internal-gateway.md",
"title": "internal-gateway.local 不兼容 Anthropic 格式 — 需 OpenAI 代理转换",
"domain": "devops",
"score": 7,
"dimensions": {
"frontmatter": 1,
"structure": 2,
"content": 1,
"maintenance": 2,
"extra": 1
},
"notes": [
"Partial frontmatter",
"Full 3-part structure",
"Code blocks present",
"Timestamps",
"Source: hermes_wsl",
"Actionable: 2 blocks"
],
"source": "hermes_wsl",
"status": "published"
},
{
"path": "lessons/contrib/bge-embedding-模型需要降级-fallback-避免启动崩溃.md",
"title": "BGE embedding 模型需要降级 fallback 避免启动崩溃",
"domain": "rag",
"score": 7,
"dimensions": {
"frontmatter": 2,
"structure": 2,
"content": 1,
"maintenance": 1,
"extra": 1
},
"notes": [
"Complete + tags",
"Full 3-part structure",
"Body 537 chars",
"Source: bootstrap",
"3 tags"
],
"source": "bootstrap",
"status": "draft"
},
{
"path": "lessons/contrib/chromadb-不能放在-ntfs-文件系统.md",
"title": "ChromaDB 不能放在 NTFS 文件系统",
"domain": "rag",
"score": 7,
"dimensions": {
"frontmatter": 2,
"structure": 2,
"content": 1,
"maintenance": 1,
"extra": 1
},
"notes": [
"Complete + tags",
"Full 3-part structure",
"Code blocks present",
"Source: bootstrap",
"4 tags"
],
"source": "bootstrap",
"status": "draft"
},
{
"path": "lessons/contrib/chrome-relay-browser-automation.md",
"title": "Chrome Relay 浏览器自动化 — CDP over WebSocket 控制无头浏览器",
"domain": "development",
"score": 7,
"dimensions": {
"frontmatter": 1,
"structure": 2,
"content": 2,
"maintenance": 0,
"extra": 2
},
"notes": [
"Partial frontmatter",
"Full 3-part structure",
"Body 1685 chars",
"Code blocks present",
"Actionable: 6 blocks",
"6 tags"
],
"source": "",
"status": ""
},
{
"path": "lessons/contrib/cloudflare-email-worker-registration-trap.md",
"title": "Cloudflare Email Worker 邮件注册踩坑记录 — message.raw、MIME 与 SPF",
"domain": "devops",
"score": 7,
"dimensions": {
"frontmatter": 1,
"structure": 2,
"content": 2,
"maintenance": 0,
"extra": 2
},
"notes": [
"Partial frontmatter",
"Full 3-part structure",
"Body 1514 chars",
"Code blocks present",
"Actionable: 2 blocks",
"6 tags"
],
"source": "",
"status": ""
},
{
"path": "lessons/contrib/disk-space-cleanup.md",
"title": "磁盘空间不足 / chroma_db_v4 缓存清理",
"domain": "devops",
"score": 7,
"dimensions": {
"frontmatter": 1,
"structure": 2,
"content": 1,
"maintenance": 2,
"extra": 1
},
"notes": [
"Partial frontmatter",
"Full 3-part structure",
"Code blocks present",
"Timestamps",
"Source: hermes_wsl",
"Actionable: 5 blocks"
],
"source": "hermes_wsl",
"status": "published"
},
{
"path": "lessons/contrib/fanuc-r-2000ic-retrieval-fix.md",
"title": "FANUC R-2000iC 检索混淆修复 — 关键词强制召回",
"domain": "rag",
"score": 7,
"dimensions": {
"frontmatter": 1,
"structure": 2,
"content": 1,
"maintenance": 2,
"extra": 1
},
"notes": [
"Partial frontmatter",
"Full 3-part structure",
"Code blocks present",
"Timestamps",
"Source: hermes_wsl",
"Actionable: 2 blocks"
],
"source": "hermes_wsl",
"status": "published"
},
{
"path": "lessons/contrib/feishu-wiki批量下载-文件类型处理策略.md",
"title": "Feishu Wiki批量下载:文件类型处理策略",
"domain": "devops",
"score": 7,
"dimensions": {
"frontmatter": 2,
"structure": 1,
"content": 2,
"maintenance": 1,
"extra": 1
},
"notes": [
"Complete + tags",
"Only one section found",
"Body 745 chars",
"Code blocks present",
"Source: hermes_wsl2",
"58 tags"
],
"source": "hermes_wsl2",
"status": "published"
},
{
"path": "lessons/contrib/git-credential-helper-gh-path-mismatch.md",
"title": "gh credential helper 路径错误导致 git push 静默失败",
"domain": "devops",
"score": 7,
"dimensions": {
"frontmatter": 1,
"structure": 2,
"content": 2,
"maintenance": 0,
"extra": 2
},
"notes": [
"Partial frontmatter",
"Full 3-part structure",
"Body 657 chars",
"Code blocks present",
"Actionable: 8 blocks",
"6 tags"
],
"source": "",
"status": ""
},
{
"path": "lessons/contrib/github-dns-443-block-hosts-workaround.md",
"title": "GitHub DNS 污染/443端口不通 — hosts 备用 IP 方案",
"domain": "devops",
"score": 7,
"dimensions": {
"frontmatter": 1,
"structure": 2,
"content": 2,
"maintenance": 0,
"extra": 2
},
"notes": [
"Partial frontmatter",
"Full 3-part structure",
"Body 1281 chars",
"Code blocks present",
"Actionable: 10 blocks",
"7 tags"
],
"source": "",
"status": ""
},
{
"path": "lessons/contrib/hermes-agent-手动更新步骤-update-超时.md",
"title": "Hermes Agent 手动更新步骤(update 超时)",
"domain": "devops",
"score": 7,
"dimensions": {
"frontmatter": 2,
"structure": 2,
"content": 1,
"maintenance": 1,
"extra": 1
},
"notes": [
"Complete + tags",
"Full 3-part structure",
"Code blocks present",
"Source: bootstrap",
"3 tags"
],
"source": "bootstrap",
"status": "draft"
},
{
"path": "lessons/contrib/hub-feishuwsclient-start-从未调用-websocket-接收死代码.md",
"title": "Hub FeishuWSClient.start() 从未调用 — WebSocket 接收死代码",
"domain": "feishu",
"score": 7,
"dimensions": {
"frontmatter": 1,
"structure": 2,
"content": 2,
"maintenance": 1,
"extra": 1
},
"notes": [
"Partial frontmatter",
"Full 3-part structure",
"Body 546 chars",
"Code blocks present",
"Source: bootstrap",
"Actionable: 2 blocks"
],
"source": "bootstrap",
"status": "published"
},
{
"path": "lessons/contrib/model-output-fix.md",
"title": "模型输出截断 / JSON 解析失败处理",
"domain": "claude",
"score": 7,
"dimensions": {
"frontmatter": 1,
"structure": 2,
"content": 1,
"maintenance": 2,
"extra": 1
},
"notes": [
"Partial frontmatter",
"Full 3-part structure",
"Code blocks present",
"Timestamps",
"Source: hermes_wsl",
"Actionable: 4 blocks"
],
"source": "hermes_wsl",
"status": "published"
},
{
"path": "lessons/contrib/permission-denied-fix.md",
"title": "Permission Denied / WSL NTFS 跨文件系统权限修复",
"domain": "devops",
"score": 7,
"dimensions": {
"frontmatter": 1,
"structure": 2,
"content": 1,
"maintenance": 2,
"extra": 1
},
"notes": [
"Partial frontmatter",
"Full 3-part structure",
"Code blocks present",
"Timestamps",
"Source: hermes_wsl",
"Actionable: 4 blocks"
],
"source": "hermes_wsl",
"status": "published"
},
{
"path": "lessons/contrib/pip-install-failure-fix.md",
"title": "pip install 网络超时 / SSL / 依赖冲突修复",
"domain": "devops",
"score": 7,
"dimensions": {
"frontmatter": 1,
"structure": 2,
"content": 1,
"maintenance": 2,
"extra": 1
},
"notes": [
"Partial frontmatter",
"Full 3-part structure",
"Code blocks present",
"Timestamps",
"Source: hermes_wsl",
"Actionable: 3 blocks"
],
"source": "hermes_wsl",
"status": "published"
},
{
"path": "lessons/contrib/python-venv-tiktoken-module-not-found.md",
"title": "Python venv 中 tiktoken 安装后仍报 ModuleNotFoundError",
"domain": "development",
"score": 7,
"dimensions": {
"frontmatter": 1,
"structure": 2,
"content": 1,
"maintenance": 1,
"extra": 2
},
"notes": [
"Partial frontmatter",
"Full 3-part structure",
"Code blocks present",
"Source: Misaka10019",
"Actionable: 2 blocks",
"5 tags"
],
"source": "Misaka10019",
"status": ""
},
{
"path": "lessons/contrib/rag-brand-contamination-detection-and-fix.md",
"title": "RAG 知识库品牌污染检测与治理",
"domain": "rag",
"score": 7,
"dimensions": {
"frontmatter": 1,
"structure": 2,
"content": 2,
"maintenance": 0,
"extra": 2
},
"notes": [
"Partial frontmatter",
"Full 3-part structure",
"Body 937 chars",
"Code blocks present",
"Actionable: 3 blocks",
"5 tags"
],
"source": "",
"status": ""
},
{
"path": "lessons/contrib/rag-三通道-llm-容灾方案.md",
"title": "RAG 三通道 LLM 容灾方案",
"domain": "rag",
"score": 7,
"dimensions": {
"frontmatter": 2,
"structure": 2,
"content": 1,
"maintenance": 1,
"extra": 1
},
"notes": [
"Complete + tags",
"Full 3-part structure",
"Code blocks present",
"Source: bootstrap",
"3 tags"
],
"source": "bootstrap",
"status": "draft"
},
{
"path": "lessons/contrib/rag-分块参数-800-字符-100-重叠-每文件最多-100-分块.md",
"title": "RAG 分块参数:800 字符 + 100 重叠 + 每文件最多 100 分块",
"domain": "rag",
"score": 7,
"dimensions": {
"frontmatter": 2,
"structure": 2,
"content": 1,
"maintenance": 1,
"extra": 1
},
"notes": [
"Complete + tags",
"Full 3-part structure",
"Code blocks present",
"Source: bootstrap",
"3 tags"
],
"source": "bootstrap",
"status": "draft"
},
{
"path": "lessons/contrib/registration-chain-worker-fallback.md",
"title": "注册链路设计 — Worker 只创建 Issue,其余交给 Workflow",
"domain": "devops",
"score": 7,
"dimensions": {
"frontmatter": 1,
"structure": 2,
"content": 2,
"maintenance": 0,
"extra": 2
},
"notes": [
"Partial frontmatter",
"Full 3-part structure",
"Body 1251 chars",
"Code blocks present",
"Actionable: 8 blocks",
"6 tags"
],
"source": "",
"status": ""
},
{
"path": "lessons/contrib/wsl-pip-install-gbk-编码导致-hub-poller-崩溃.md",
"title": "WSL pip install GBK 编码导致 hub_poller 崩溃",
"domain": "devops",
"score": 7,
"dimensions": {
"frontmatter": 2,
"structure": 2,
"content": 1,
"maintenance": 1,
"extra": 1
},
"notes": [
"Complete + tags",
"Full 3-part structure",
"Code blocks present",
"Source: bootstrap",
"4 tags"
],
"source": "bootstrap",
"status": "draft"
},
{
"path": "lessons/contrib/wsl-需要代理配置才能访问-huggingface-和外部网络.md",
"title": "WSL 需要代理配置才能访问 HuggingFace 和外部网络",
"domain": "devops",
"score": 7,
"dimensions": {
"frontmatter": 2,
"structure": 2,
"content": 1,
"maintenance": 1,
"extra": 1
},
"notes": [
"Complete + tags",
"Full 3-part structure",
"Code blocks present",
"Source: bootstrap",
"4 tags"
],
"source": "bootstrap",
"status": "draft"
},
{
"path": "lessons/contrib/wxauto-im-feedback-collection-jsonl-queue.md",
"title": "IM 机器人反馈收集与 JSONL 队列审核模式",
"domain": "rag",
"score": 7,
"dimensions": {
"frontmatter": 1,
"structure": 2,
"content": 2,
"maintenance": 0,
"extra": 2
},
"notes": [
"Partial frontmatter",
"Full 3-part structure",
"Body 691 chars",
"Code blocks present",
"Actionable: 3 blocks",
"7 tags"
],
"source": "",
"status": ""
},
{
"path": "lessons/contrib/wxauto-必须在-windows-python-下安装-不能走-wsl-pip.md",
"title": "wxauto 必须在 Windows Python 下安装,不能走 WSL pip",
"domain": "devops",
"score": 7,
"dimensions": {
"frontmatter": 2,
"structure": 2,
"content": 1,
"maintenance": 1,
"extra": 1
},
"notes": [
"Complete + tags",
"Full 3-part structure",
"Code blocks present",
"Source: bootstrap",
"4 tags"
],
"source": "bootstrap",
"status": "draft"
},
{
"path": "lessons/contrib/企业微信机器人-长连接模式不需要-ngrok.md",
"title": "企业微信机器人:长连接模式不需要 ngrok",
"domain": "devops",
"score": 7,
"dimensions": {
"frontmatter": 2,
"structure": 2,
"content": 1,
"maintenance": 1,
"extra": 1
},
"notes": [
"Complete + tags",
"Full 3-part structure",
"Code blocks present",
"Source: bootstrap",
"4 tags"
],
"source": "bootstrap",
"status": "draft"
},
{
"path": "lessons/contrib/防火墙端口开放不等于内网穿透.md",
"title": "防火墙端口开放不等于内网穿透",
"domain": "devops",
"score": 7,
"dimensions": {
"frontmatter": 2,
"structure": 2,
"content": 1,
"maintenance": 1,
"extra": 1
},