forked from Ikalus1988/MisakaNet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlessons.json
More file actions
2286 lines (2286 loc) · 81.9 KB
/
Copy pathlessons.json
File metadata and controls
2286 lines (2286 loc) · 81.9 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": "TEMPLATE",
"title": "<English Title: 4-120 chars>",
"domain": "<domain>",
"tags": [
"tag1",
"tag2",
"tag3"
],
"summary": "<!-- What went wrong? What was the symptom? Be specific. -->",
"url": "lessons/TEMPLATE.md",
"updated": "<YYYY-MM-DD>"
},
{
"id": "context-compaction-earlier-turns-in-this-convers",
"title": "CONTEXT COMPACTION] Earlier turns in this convers",
"domain": "rag",
"tags": [],
"summary": "[assistant] <think>",
"url": "lessons/_archive/context-compaction-earlier-turns-in-this-convers.md",
"updated": "2026-04-01"
},
{
"id": "context-compaction-reference-only-earlier-turn",
"title": "CONTEXT COMPACTION — REFERENCE ONLY] Earlier turn",
"domain": "feishu",
"tags": [],
"summary": "[assistant] <think>",
"url": "lessons/_archive/context-compaction-reference-only-earlier-turn.md",
"updated": "2026-04-01"
},
{
"id": "config-was-last-written-by-a-newer-openclaw-2026",
"title": "Config was last written by a newer OpenClaw (2026.",
"domain": "feishu",
"tags": [],
"summary": "[assistant] <think>",
"url": "lessons/_archive/conversation-dumps/config-was-last-written-by-a-newer-openclaw-2026.md",
"updated": "2026-04-01"
},
{
"id": "cc-haha-acceptEdits-permission-mode",
"title": "cc-haha 配置 acceptEdits 权限模式减少确认提示",
"domain": "agent-medici",
"tags": [
"project:agent-medici",
"severity:low",
"node:cc_haha"
],
"summary": "cc-haha (Claude Code fork) 默认每次文件编辑和 bash 命令都需要用户确认,导致长任务或自动化场景下频繁中断。",
"url": "lessons/_archive/hook-raw/cc-haha-acceptEdits-permission-mode.md",
"updated": "2026-05-12"
},
{
"id": "cc-haha-error-hook",
"title": "cc-haha PostToolUseFailure 钩子 — Bash 失败时提示 lessons",
"domain": "devops",
"tags": [],
"summary": "cc-haha 的 Bash 工具执行失败时,模型不知道去翻共享 lessons,",
"url": "lessons/_archive/hook-raw/cc-haha-error-hook.md",
"updated": "2026-04-30 09:30 UTC"
},
{
"id": "skill-harvest-airtable",
"title": "Airtable",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `airtable` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-airtable.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-arxiv",
"title": "Arxiv",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `arxiv` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-arxiv.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-ascii-art",
"title": "Ascii Art",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `ascii-art` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-ascii-art.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-baoyu-comic",
"title": "Baoyu Comic",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `baoyu-comic` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-baoyu-comic.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-baoyu-infographic",
"title": "Baoyu Infographic",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `baoyu-infographic` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-baoyu-infographic.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-ccswitch",
"title": "Ccswitch",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `ccswitch` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-ccswitch.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-claude-code-proxy-troubleshoot",
"title": "Claude Code Proxy Troubleshoot",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `claude-code-proxy-troubleshoot` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-claude-code-proxy-troubleshoot.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-claude-design",
"title": "Claude Design",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `claude-design` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-claude-design.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-comfyui",
"title": "Comfyui",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `comfyui` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-comfyui.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-debugging-python-bytecode-cache",
"title": "Debugging Python Bytecode Cache",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `debugging-python-bytecode-cache` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-debugging-python-bytecode-cache.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-edoc-pipeline-retrospective",
"title": "Edoc Pipeline Retrospective",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `edoc-pipeline-retrospective` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-edoc-pipeline-retrospective.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-edoc-rag",
"title": "Edoc Rag",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `edoc-rag` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-edoc-rag.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-excalidraw",
"title": "Excalidraw",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `excalidraw` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-excalidraw.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-google-workspace",
"title": "Google Workspace",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `google-workspace` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-google-workspace.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-gradio-feedback-panel",
"title": "Gradio Feedback Panel",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `gradio-feedback-panel` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-gradio-feedback-panel.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-heartmula",
"title": "Heartmula",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `heartmula` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-heartmula.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-himalaya",
"title": "Himalaya",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `himalaya` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-himalaya.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-humanizer",
"title": "Humanizer",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `humanizer` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-humanizer.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-jupyter-live-kernel",
"title": "Jupyter Live Kernel",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `jupyter-live-kernel` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-jupyter-live-kernel.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-knowledge-base-quality-audit",
"title": "Knowledge Base Quality Audit",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `knowledge-base-quality-audit` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-knowledge-base-quality-audit.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-linear",
"title": "Linear",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `linear` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-linear.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-llama-cpp",
"title": "Llama Cpp",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `llama-cpp` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-llama-cpp.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-manim-video",
"title": "Manim Video",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `manim-video` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-manim-video.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-minecraft-modpack-server",
"title": "Minecraft Modpack Server",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `minecraft-modpack-server` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-minecraft-modpack-server.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-native-claude-code-bootstrap-fix",
"title": "Native Claude Code Bootstrap Fix",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `native-claude-code-bootstrap-fix` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-native-claude-code-bootstrap-fix.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-native-claude-code-wsl-bare-fix",
"title": "Native Claude Code Wsl Bare Fix",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `native-claude-code-wsl-bare-fix` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-native-claude-code-wsl-bare-fix.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-native-claude-code-wsl-proxy-fix",
"title": "Native Claude Code Wsl Proxy Fix",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `native-claude-code-wsl-proxy-fix` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-native-claude-code-wsl-proxy-fix.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-native-claude-code-wsl",
"title": "Native Claude Code Wsl",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `native-claude-code-wsl` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-native-claude-code-wsl.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-node-inspect-debugger",
"title": "Node Inspect Debugger",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `node-inspect-debugger` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-node-inspect-debugger.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-ocr-and-documents",
"title": "Ocr And Documents",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `ocr-and-documents` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-ocr-and-documents.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-outlines",
"title": "Outlines",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `outlines` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-outlines.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-p5js",
"title": "P5Js",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `p5js` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-p5js.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-pixel-art",
"title": "Pixel Art",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `pixel-art` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-pixel-art.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-powerpoint",
"title": "Powerpoint",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `powerpoint` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-powerpoint.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-python-debugpy",
"title": "Python Debugpy",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `python-debugpy` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-python-debugpy.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-requesting-code-review",
"title": "Requesting Code Review",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `requesting-code-review` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-requesting-code-review.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-self-grow-wiki-code-review",
"title": "Self Grow Wiki Code Review",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `self-grow-wiki-code-review` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-self-grow-wiki-code-review.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-self-review",
"title": "Self Review",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `self-review` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-self-review.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-songsee",
"title": "Songsee",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `songsee` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-songsee.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-systematic-debugging",
"title": "Systematic Debugging",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `systematic-debugging` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-systematic-debugging.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-test-driven-development",
"title": "Test Driven Development",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `test-driven-development` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-test-driven-development.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-vllm",
"title": "Vllm",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `vllm` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-vllm.md",
"updated": "2026-05-09"
},
{
"id": "skill-harvest-xurl",
"title": "Xurl",
"domain": "uncategorized",
"tags": [],
"summary": "(此 lesson 从 skill `xurl` 自动提取,待补全)",
"url": "lessons/_archive/skill-harvest/skill-harvest-xurl.md",
"updated": "2026-05-09"
},
{
"id": "system-note-your-previous-turn-was-interrupted-b",
"title": "system note your previous turn was interrupted b",
"domain": "general",
"tags": [],
"summary": "---",
"url": "lessons/_archive/system-note-your-previous-turn-was-interrupted-b.md",
"updated": "2026-04-01"
},
{
"id": "README",
"title": "README",
"domain": "uncategorized",
"tags": [],
"summary": "Community-contributed knowledge. These lessons are **not yet curated** — they are shared by network nodes as-is. Always ...",
"url": "lessons/contrib/README.md",
"updated": ""
},
{
"id": "agent-manual-update-timeout",
"title": "Agent 手动Update步骤(update Timeout Handling)",
"domain": "devops",
"tags": [],
"summary": "---{\"title\": \"Agent 手动Update步骤(update Timeout Handling)\", \"domain\": \"devops\", \"source\": \"bootstrap\", \"status\": \"draft\", ...",
"url": "lessons/contrib/agent-manual-update-timeout.md",
"updated": "2026-05-03"
},
{
"id": "agent-state-database-lock-cleanup",
"title": "Agent State Database Lock Issues — Cleanup Protocol",
"domain": "devops",
"tags": [
"database",
"lock",
"state",
"cleanup",
"lesson-written"
],
"summary": "1. Follow the solution steps in order",
"url": "lessons/contrib/agent-state-database-lock-cleanup.md",
"updated": "2026-05-16 00:00:00 UTC"
},
{
"id": "agent-write-file-sandbox-worktree-path-breakage",
"title": "Agent Write File 写入不落地 + Worktree Git 链接路径断裂",
"domain": "devops",
"tags": [
"agent-mode",
"write-file",
"worktree",
"wsl",
"git",
"lesson-written"
],
"summary": "在对项目进行代码修改的过程中,使用 Agent 模式操作。操作环境为 WSL (Windows Subsystem for Linux),仓库使用 worktree 管理。",
"url": "lessons/contrib/agent-write-file-sandbox-worktree-path-breakage.md",
"updated": "2026-05-13 01:01:52 UTC"
},
{
"id": "ai-agent-project-outreach-guide",
"title": "AI Agent Project Outreach Guide",
"domain": "marketing",
"tags": [
"outreach",
"github",
"awesome-list",
"pr",
"promotion",
"agent",
"marketing"
],
"summary": "为 AI Agent 项目(御坂网络)做了一次系统性宣发引流,沉淀了完整的实操流程和平台调研数据。",
"url": "lessons/contrib/ai-agent-project-outreach-guide.md",
"updated": "2026-05-11"
},
{
"id": "aily-feishu-mcp-pull-only",
"title": "aily 飞书 MCP 通道:只能拉取不能推送",
"domain": "feishu",
"tags": [],
"summary": "虫群架构设计时,误以为 aily 飞书侧支持 MCP Server 暴露给 Hub 调用。",
"url": "lessons/contrib/aily-feishu-mcp-pull-only.md",
"updated": "2026-05-03"
},
{
"id": "anthropic-proxy-internal-gateway",
"title": "Internal Gateway — Incompatible with Anthropic Format, Requires OpenAI Proxy",
"domain": "devops",
"tags": [],
"summary": "internal-gateway.local API 端点 (`https://api.internal-gateway.local/v1`) 只接受 OpenAI 格式 (`/v1/chat/compositions`),不支持 Anth...",
"url": "lessons/contrib/anthropic-proxy-internal-gateway.md",
"updated": "2026-04-30 09:00 UTC"
},
{
"id": "api-gateway-anthropic-incompatibility",
"title": "InternalGateway API 网关不兼容 Anthropic 原生格式",
"domain": "devops",
"tags": [
"project:rag",
"severity:medium",
"node:hermes_wsl"
],
"summary": "Hermes Agent 配置 Anthropic provider 使用 internal-gateway.local API 时失败,",
"url": "lessons/contrib/api-gateway-anthropic-incompatibility.md",
"updated": "2026-05-03"
},
{
"id": "api-rate-limit-handling-best-practices",
"title": "API限流Handling最佳实践",
"domain": "devops",
"tags": [
"api",
"rate-limit",
"backoff",
"batch"
],
"summary": "---{\"title\": \"API限流Handling最佳实践\", \"domain\": \"devops\", \"tags\": [\"api\", \"rate-limit\", \"backoff\", \"batch\"]}---",
"url": "lessons/contrib/api-rate-limit-handling-best-practices.md",
"updated": ""
},
{
"id": "api-rate-limit-handling",
"title": "API 请求限流 (Rate Limit) Handling方案",
"domain": "devops",
"tags": [
"api",
"rate-limit",
"retry",
"429"
],
"summary": "---{\"title\": \"API 请求限流 (Rate Limit) Handling方案\", \"domain\": \"devops\", \"tags\": [\"api\", \"rate-limit\", \"retry\", \"429\"]}---",
"url": "lessons/contrib/api-rate-limit-handling.md",
"updated": ""
},
{
"id": "audit-sampling-stratified-sampling-for-kb-inspection",
"title": "巡检题库分层抽样策略",
"domain": "rag",
"tags": [
"rag",
"audit",
"sampling",
"quality",
"test-bank"
],
"summary": "RAG 知识库质量巡检需要每天抽取少量题目进行自动测试。如果随机抽样,容易连续抽到同一类型的问题(如连续三天都是报警代码题),漏掉其他分类的质量退化。",
"url": "lessons/contrib/audit-sampling-stratified-sampling-for-kb-inspection.md",
"updated": "2026-05-21"
},
{
"id": "bge-embedding-fallback-crash",
"title": "BGE embedding 模型需要降级 fallback 避免启动崩溃",
"domain": "rag",
"tags": [
"project:agent-medici",
"severity:high",
"node:hermes_wsl"
],
"summary": "HermesHub 启动时如果 BGE-m3 模型未下载到本地路径,SkillIndexer 直接崩溃。",
"url": "lessons/contrib/bge-embedding-fallback-crash.md",
"updated": "2026-05-03"
},
{
"id": "browser-harness-cdp-browser-automation",
"title": "browser-harness — AI 直连 Chrome 的 CDP 浏览器Automation",
"domain": "devops",
"tags": [],
"summary": "---{\"title\": \"browser-harness — AI 直连 Chrome 的 CDP 浏览器Automation\", \"domain\": \"devops\", \"source\": \"skill-harvest\", \"statu...",
"url": "lessons/contrib/browser-harness-cdp-browser-automation.md",
"updated": "2026-05-20"
},
{
"id": "cc-connect-feishu-display-optimization",
"title": "cc-connect 飞书显示Optimization:禁用工具调用和上下文提示",
"domain": "feishu",
"tags": [],
"summary": "---{\"title\": \"cc-connect 飞书显示Optimization:禁用工具调用和上下文提示\", \"domain\": \"feishu\", \"subdomain\": \"cc-connect\", \"source\": \"boots...",
"url": "lessons/contrib/cc-connect-feishu-display-optimization.md",
"updated": "2026-05-19"
},
{
"id": "cc-connect-feishu-setup-complete",
"title": "cc-connect 飞书机器人完整SetupGuide",
"domain": "feishu",
"tags": [],
"summary": "---{\"title\": \"cc-connect 飞书机器人完整SetupGuide\", \"domain\": \"feishu\", \"subdomain\": \"cc-connect\", \"source\": \"bootstrap\", \"stat...",
"url": "lessons/contrib/cc-connect-feishu-setup-complete.md",
"updated": "2026-05-19"
},
{
"id": "ccswitch-hermes-switch",
"title": "ccswitch-hermes-switch 踩坑Notes",
"domain": "devops",
"tags": [],
"summary": "---{\"confidence\": \"0.7\", \"created\": \"2026-05-02\", \"domain\": \"devops\", \"source\": \"bootstrap\", \"status\": \"draft\", \"tags\": ...",
"url": "lessons/contrib/ccswitch-hermes-switch.md",
"updated": "2026-05-02"
},
{
"id": "chroma-rebuild-no-checkpoint-cn",
"title": "Chroma 建库无 Checkpoint — 进程一死全部丢失",
"domain": "rag",
"tags": [],
"summary": "Agent 内跑 BGE-large-zh 建库(约30分钟),Gateway 重启后整个数据库为空,0条向量入库。",
"url": "lessons/contrib/chroma-rebuild-no-checkpoint-cn.md",
"updated": "2026-04-01"
},
{
"id": "chroma-rebuild-no-checkpoint",
"title": "Chroma 建库无 Checkpoint — 进程一死全部丢失",
"domain": "rag",
"tags": [],
"summary": "Agent 内跑 BGE-large-zh 建库(约30分钟),Gateway 重启后整个数据库为空,0条向量入库。",
"url": "lessons/contrib/chroma-rebuild-no-checkpoint.md",
"updated": "2026-04-01"
},
{
"id": "chrome-relay-browser-automation",
"title": "Chrome Relay 浏览器Automation — CDP over WebSocket 控制无头浏览器",
"domain": "development",
"tags": [
"chrome",
"browser",
"automation",
"cdp",
"websocket",
"openclaw"
],
"summary": "---{\"title\": \"Chrome Relay 浏览器Automation — CDP over WebSocket 控制无头浏览器\", \"domain\": \"development\", \"tags\": [\"chrome\", \"bro...",
"url": "lessons/contrib/chrome-relay-browser-automation.md",
"updated": ""
},
{
"id": "ci-dco-decouple-pythonpath-fork-pr",
"title": "GitHub Actions CI for AI Agent PRs — DCO decoupling & PYTHONPATH fix",
"domain": "devops",
"tags": [
"github-actions",
"ci",
"dco",
"python",
"ai-agent",
"fork-pr",
"pytest",
"coverage"
],
"summary": "---{\"title\": \"GitHub Actions CI for AI Agent PRs — DCO decoupling & PYTHONPATH fix\", \"domain\": \"devops\", \"tags\": [\"githu...",
"url": "lessons/contrib/ci-dco-decouple-pythonpath-fork-pr.md",
"updated": "2026-06-12 00:00:00 UTC"
},
{
"id": "cloudflare-email-worker-registration-trap",
"title": "Cloudflare Email Worker 邮件注册踩坑Notes — message.raw、MIME 与 SPF",
"domain": "devops",
"tags": [
"cloudflare",
"email-worker",
"kv",
"turnstile",
"registration",
"spf"
],
"summary": "---{\"title\": \"Cloudflare Email Worker 邮件注册踩坑Notes — message.raw、MIME 与 SPF\", \"domain\": \"devops\", \"tags\": [\"cloudflare\", ...",
"url": "lessons/contrib/cloudflare-email-worker-registration-trap.md",
"updated": ""
},
{
"id": "codewhale-git-push-yolo-task",
"title": "CodeWhale 中 git push 的正确方式 — YOLO task + gh CLI",
"domain": "devops",
"tags": [
"codewhale",
"git",
"yolo",
"push",
"lesson"
],
"summary": "在 CodeWhale 的 Agent 模式中,`exec_shell` 工具不可用。需要执行 `git push` 时,不能直接用 shell 命令。",
"url": "lessons/contrib/codewhale-git-push-yolo-task.md",
"updated": ""
},
{
"id": "cron-job-not-running",
"title": "Cron 作业不执行 / 不生效排障",
"domain": "devops",
"tags": [
"cron",
"scheduler",
"not-running",
"debug"
],
"summary": "`crontab -e` 设置好后,作业从未执行。输出没有、日志没有、进程没有。",
"url": "lessons/contrib/cron-job-not-running.md",
"updated": ""
},
{
"id": "curl-request-troubleshoot",
"title": "curl / wget 请求失败通用Diagnosis",
"domain": "devops",
"tags": [
"network",
"curl",
"wget",
"debug",
"troubleshoot"
],
"summary": "---{\"title\": \"curl / wget 请求失败通用Diagnosis\", \"domain\": \"devops\", \"tags\": [\"network\", \"curl\", \"wget\", \"debug\", \"troublesho...",
"url": "lessons/contrib/curl-request-troubleshoot.md",
"updated": ""
},
{
"id": "deepseek-tui-write-file-sandbox-worktree-git-path",
"title": "DeepSeek TUI — write_file Sandbox + Worktree Git Path Breakage",
"domain": "devops",
"tags": [
"deepseek-tui",
"agent-mode",
"write-file",
"worktree",
"wsl",
"git",
"lesson-written"
],
"summary": "在 Agent-Medici 项目的 search_knowledge.py v2 升级过程中,使用 DeepSeek TUI Agent 模式进行代码修改。操作环境为 WSL (Windows Subsystem for Linux),仓...",
"url": "lessons/contrib/deepseek-tui-write-file-sandbox-worktree-git-path.md",
"updated": "2026-05-13 01:01:46 UTC"
},
{
"id": "disk-space-cleanup",
"title": "磁盘空间不足 / chroma_db_v4 CacheCleanup",
"domain": "devops",
"tags": [],
"summary": "---{\"created\": \"2026-05-01 08:00 UTC\", \"domain\": \"devops\", \"source\": \"hermes_wsl\", \"status\": \"published\", \"tags\": \"\", \"t...",
"url": "lessons/contrib/disk-space-cleanup.md",
"updated": "2026-05-01 08:00 UTC"
},
{
"id": "fanuc-kl-err-abort-vs-err-pause",
"title": "FANUC KL: ERR_ABORT vs ERR_PAUSE 行为差异",
"domain": "fanuc",
"tags": [],
"summary": "IPC 通信错误时未区分 ERR_ABORT 和 ERR_PAUSE,导致程序号丢失。",
"url": "lessons/contrib/fanuc-kl-err-abort-vs-err-pause.md",
"updated": "2026-05-03"
},
{
"id": "fanuc-kl-mm-module-h-no-routine",
"title": "FANUC KL: mm_module_h.kl 禁止 ROUTINE 声明",
"domain": "fanuc",
"tags": [],
"summary": "mm_module_h.kl(头文件)末尾有 `ROUTINE Check_Status(params) FROM MM_MODULE`(带参数版),导致 MM_MODULE.kl 中同名 routine 报\"already defined...",
"url": "lessons/contrib/fanuc-kl-mm-module-h-no-routine.md",
"updated": "2026-05-03"
},
{
"id": "fanuc-r-2000ic-retrieval-fix",
"title": "FANUC R-2000iC 检索混淆Fix — 关键词强制召回",
"domain": "rag",
"tags": [],
"summary": "---{\"created\": \"2026-04-30 08:50 UTC\", \"domain\": \"rag\", \"source\": \"hermes_wsl\", \"status\": \"published\", \"tags\": \"\", \"titl...",
"url": "lessons/contrib/fanuc-r-2000ic-retrieval-fix.md",
"updated": "2026-04-30 08:50 UTC"
},
{
"id": "feishu-agent-display-settings",
"title": "飞书 Agent 显示Optimization:禁用工具调用和上下文提示",
"domain": "feishu",
"tags": [],
"summary": "---{\"title\": \"飞书 Agent 显示Optimization:禁用工具调用和上下文提示\", \"domain\": \"feishu\", \"source\": \"bootstrap\", \"status\": \"published\", \"...",
"url": "lessons/contrib/feishu-agent-display-settings.md",
"updated": "2026-05-19"
},
{
"id": "feishu-block-api-false-success",
"title": "飞书 Block API 假成功特征",
"domain": "feishu",
"tags": [],
"summary": "调用飞书 block API 时,限流场景下返回 `code=0` 但 `blocks_created=0`,看似成功实际失败。",
"url": "lessons/contrib/feishu-block-api-false-success.md",
"updated": "2026-05-03"
},
{
"id": "feishu-block-batch-limit",
"title": "飞书 Block Batch写入上限",
"domain": "feishu",
"tags": [],
"summary": "---{\"title\": \"飞书 Block Batch写入上限\", \"domain\": \"feishu\", \"subdomain\": \"block-api\", \"source\": \"bootstrap\", \"status\": \"draft...",
"url": "lessons/contrib/feishu-block-batch-limit.md",
"updated": "2026-05-03"
},
{
"id": "feishu-block-type-values-limits",
"title": "飞书 Block Type 正确值与已知Limit",
"domain": "feishu",
"tags": [],
"summary": "---{\"title\": \"飞书 Block Type 正确值与已知Limit\", \"domain\": \"feishu\", \"subdomain\": \"block-api\", \"source\": \"bootstrap\", \"status\":...",
"url": "lessons/contrib/feishu-block-type-values-limits.md",
"updated": "2026-05-03"
},
{
"id": "feishu-bot-setup-complete",
"title": "飞书机器人完整SetupGuide",
"domain": "feishu",
"tags": [],
"summary": "---{\"title\": \"飞书机器人完整SetupGuide\", \"domain\": \"feishu\", \"source\": \"bootstrap\", \"status\": \"published\", \"confidence\": \"0.95\"...",
"url": "lessons/contrib/feishu-bot-setup-complete.md",
"updated": "2026-05-19"
},
{
"id": "feishu-doc-url-use-api-return",
"title": "Feishu 文档 URL:必须用 API 返回值,不要拼接",
"domain": "feishu",
"tags": [],
"summary": "创建 Feishu 云文档后,猜测 URL 格式为 `https://feishu.cn/document/...`,用户连续3次无法打开文档。",
"url": "lessons/contrib/feishu-doc-url-use-api-return.md",
"updated": "2026-03-29"
},
{
"id": "feishu-markdown-table-not-rendered",
"title": "飞书 post Messaging中 Markdown 表格不渲染",
"domain": "development",
"tags": [
"feishu",
"markdown",
"table",
"post",
"lark"
],
"summary": "---{\"title\": \"飞书 post Messaging中 Markdown 表格不渲染\", \"domain\": \"development\", \"source\": \"Misaka10019\", \"tags\": [\"feishu\", \"...",
"url": "lessons/contrib/feishu-markdown-table-not-rendered.md",
"updated": ""
},
{
"id": "feishu-mcp-server-deepseek-tui-setup",
"title": "DeepSeek TUI — Feishu MCP Server Setup & Permission Boundaries",
"domain": "feishu",
"tags": [
"feishu",
"mcp",
"deepseek",
"docx-api",
"permissions"
],
"summary": "需要在 DeepSeek TUI 中在线操作飞书云文档(docx),通过 MCP 协议暴露飞书 API。",
"url": "lessons/contrib/feishu-mcp-server-deepseek-tui-setup.md",
"updated": "2026-05-19"
},
{
"id": "feishu-upload-file-type-opus",
"title": "Feishu 文件上传:file_type 必须用 opus",
"domain": "feishu",
"tags": [],
"summary": "Feishu `im/v1/files` 上传接口调用失败,返回 `234001 Invalid request param`。",
"url": "lessons/contrib/feishu-upload-file-type-opus.md",
"updated": "2026-03-29"
},
{
"id": "feishu-webhook-url-env-config",
"title": "飞书 webhook URL 必须用环境变量或 gitignored 的 config.yaml",
"domain": "devops",
"tags": [
"project:agent-medici",
"severity:critical",
"node:hermes_wsl"
],
"summary": "Feishu webhook URL、app_id、app_secret 被误提交到 git 仓库,",
"url": "lessons/contrib/feishu-webhook-url-env-config.md",
"updated": "2026-05-03"
},
{
"id": "feishu-websocket-404-error-http-webhook-required",
"title": "Feishu WebSocket 404 Error - HTTP Webhook Required",
"domain": "feishu-integration",
"tags": [],
"summary": "问题: 飞书 WebSocket 接收消息 API 返回 404 错误。测试端点: wss://open.feishu.cn/open-apis/bot/v3/ws, /bot/v2/ws, /im/v1/ws, /im/v2/ws, /w...",
"url": "lessons/contrib/feishu-websocket-404-error-http-webhook-required.md",
"updated": "2026-05-19 01:19:29 UTC"
},
{
"id": "feishu-wiki-batch-download",
"title": "Feishu WikiBatch Download:文件类型Handling策略",
"domain": "devops",
"tags": [
"feishu, wiki, batch-download, file-type, pdf, docx, safari"
],
"summary": "---{\"title\": \"Feishu WikiBatch Download:文件类型Handling策略\", \"domain\": \"devops\", \"tags\": \"feishu, wiki, batch-download, file...",
"url": "lessons/contrib/feishu-wiki-batch-download.md",
"updated": "2026-05-19 15:40:11 UTC"
},
{
"id": "ffmpeg-audio-libopus-not-ogg",
"title": "FFmpeg 音频转码:必须用 libopus 而非 -format ogg",
"domain": "audio",
"tags": [],
"summary": "FFmpeg 输出 OGG 文件为 0 字节。",
"url": "lessons/contrib/ffmpeg-audio-libopus-not-ogg.md",
"updated": "2026-03-29"
},
{
"id": "firewall-port-open-not-public",
"title": "防火墙端口开放不等于内网穿透",
"domain": "devops",
"tags": [
"project:rag",
"platform:wsl",
"node:hermes_wsl",
"scope:broad"
],
"summary": "为 wcferry 开放 Windows 防火墙端口 10086 时,误以为这是\"内网穿透\"操作,担心安全性。",
"url": "lessons/contrib/firewall-port-open-not-public.md",
"updated": "2026-05-03"
},
{
"id": "game-mcp-end-turn-conflict-409",
"title": "Game MCP: End Turn Returns 409 Conflict",
"domain": "mcp",
"tags": [],
"summary": "When sending an end_turn command via MCP, the game returns a 409 Conflict HTTP status. However, the game state still pro...",
"url": "lessons/contrib/game-mcp-end-turn-conflict-409.md",
"updated": ""
},
{
"id": "game-mcp-game-over-restart-flow",
"title": "Game MCP: GAME OVER Restart Flow",
"domain": "mcp",
"tags": [],
"summary": "After reaching a GAME OVER state, restarting the game via MCP requires a specific sequence of commands. Using the wrong ...",
"url": "lessons/contrib/game-mcp-game-over-restart-flow.md",
"updated": ""
},
{
"id": "game-mcp-rare-relic-freeze",
"title": "Game MCP: Rare Relic Selection Freeze",
"domain": "mcp",
"tags": [],
"summary": "When using MCP to play a turn-based strategy game, selecting a rare relic option causes the game client to freeze or han...",
"url": "lessons/contrib/game-mcp-rare-relic-freeze.md",
"updated": ""
},
{
"id": "gateway-hang-watchdog-recovery",
"title": "Gateway 进程挂死未崩溃 — watchdog 自动Recovery",
"domain": "devops",
"tags": [],
"summary": "---{\"title\": \"Gateway 进程挂死未崩溃 — watchdog 自动Recovery\", \"domain\": \"devops\", \"source\": \"bootstrap\", \"status\": \"published\", ...",
"url": "lessons/contrib/gateway-hang-watchdog-recovery.md",
"updated": "2026-04-01"
},
{
"id": "git-credential-helper-gh-path-mismatch",