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
2152 lines (2152 loc) · 81.1 KB
/
Copy pathlessons.json
File metadata and controls
2152 lines (2152 loc) · 81.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
[
{
"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": "bot回复-reasoning-现在pip和pip3都找不到-说明当前环境没有配置python的可",
"title": "bot回复 reasoning 现在pip和pip3都找不到 说明当前环境没有配置python的可",
"domain": "general",
"tags": [],
"summary": "---",
"url": "lessons/_archive/conversation-dumps/bot回复-reasoning-现在pip和pip3都找不到-说明当前环境没有配置python的可.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": "poc-记录已写入飞书文档末尾-21个块-含-q2-q5-验证结果-修正说明和待办清单-有一个小",
"title": "POC 记录已写入飞书文档末尾(21个块,含 Q2/Q5 验证结果、修正说明和待办清单)。 有一个小",
"domain": "feishu",
"tags": [],
"summary": "[assistant] <think>",
"url": "lessons/_archive/conversation-dumps/poc-记录已写入飞书文档末尾-21个块-含-q2-q5-验证结果-修正说明和待办清单-有一个小.md",
"updated": "2026-04-01"
},
{
"id": "the-user-sent-a-text-document-fanuc知识库方案-v5-md",
"title": "the user sent a text document fanuc知识库方案 v5 md",
"domain": "general",
"tags": [],
"summary": "---",
"url": "lessons/_archive/conversation-dumps/the-user-sent-a-text-document-fanuc知识库方案-v5-md.md",
"updated": "2026-04-01"
},
{
"id": "the-user-sent-a-text-document-rag知识库完整说明文档-md",
"title": "the user sent a text document rag知识库完整说明文档 md",
"domain": "general",
"tags": [],
"summary": "---",
"url": "lessons/_archive/conversation-dumps/the-user-sent-a-text-document-rag知识库完整说明文档-md.md",
"updated": "2026-04-01"
},
{
"id": "再补充一下-rag助手这两天的一个工作内容-主要就是一个通过让rag知识库来读取我已有的一些工业机器",
"title": "再补充一下,RAG助手这两天的一个工作内容,主要就是一个通过让RAG知识库来读取我已有的一些工业机器",
"domain": "rag",
"tags": [],
"summary": "[assistant]",
"url": "lessons/_archive/conversation-dumps/再补充一下-rag助手这两天的一个工作内容-主要就是一个通过让rag知识库来读取我已有的一些工业机器.md",
"updated": "2026-04-01"
},
{
"id": "另外-rag助手-wiki项目又有新进展-这个项目经过了从一开始的opus-4-6-写了初版之后",
"title": "另外,RAG助手, Wiki项目又有新进展。 这个项目经过了从一开始的OPUS 4.6,写了初版之后",
"domain": "rag",
"tags": [],
"summary": "[assistant]",
"url": "lessons/_archive/conversation-dumps/另外-rag助手-wiki项目又有新进展-这个项目经过了从一开始的opus-4-6-写了初版之后.md",
"updated": "2026-04-01"
},
{
"id": "复盘下你的飞书技能如何提高-并给出方案",
"title": "复盘下你的飞书技能如何提高,并给出方案",
"domain": "feishu",
"tags": [],
"summary": "复盘下你的飞书技能如何提高,并给出方案",
"url": "lessons/_archive/conversation-dumps/复盘下你的飞书技能如何提高-并给出方案.md",
"updated": "2026-04-01"
},
{
"id": "好-控制并发-那就开始布置本开源方案-作为-wsl-的第三个-agent",
"title": "好,控制并发,那就开始布置本开源方案,作为 wsl 的第三个 agent",
"domain": "feishu",
"tags": [],
"summary": "[assistant] <think>",
"url": "lessons/_archive/conversation-dumps/好-控制并发-那就开始布置本开源方案-作为-wsl-的第三个-agent.md",
"updated": "2026-04-01"
},
{
"id": "容灾方案输出为飞书云文档",
"title": "容灾方案输出为飞书云文档",
"domain": "feishu",
"tags": [],
"summary": "[assistant] <think>",
"url": "lessons/_archive/conversation-dumps/容灾方案输出为飞书云文档.md",
"updated": "2026-04-01"
},
{
"id": "帮我记一下我今天的日记啊-阈值的日记啊-今天完成了什么工作-然后跟你说完-你整理一下-然后发出来",
"title": "帮我记一下我今天的日记啊,阈值的日记啊,今天完成了什么工作,然后跟你说完,你整理一下,然后发出来。",
"domain": "rag",
"tags": [],
"summary": "[assistant] <think>",
"url": "lessons/_archive/conversation-dumps/帮我记一下我今天的日记啊-阈值的日记啊-今天完成了什么工作-然后跟你说完-你整理一下-然后发出来.md",
"updated": "2026-04-01"
},
{
"id": "我已将部分工作直接发给hermes-cli助手-你注意检查-不要重复施工",
"title": "我已将部分工作直接发给Hermes cli助手,你注意检查,不要重复施工",
"domain": "feishu",
"tags": [],
"summary": "[assistant] <think>",
"url": "lessons/_archive/conversation-dumps/我已将部分工作直接发给hermes-cli助手-你注意检查-不要重复施工.md",
"updated": "2026-04-01"
},
{
"id": "按照方案进行测试https-tarot-club-feishu-cn-docx-tkchd3lq",
"title": "按照方案进行测试https://tarot-club.feishu.cn/docx/TkcHd3Lq",
"domain": "feishu",
"tags": [],
"summary": "[assistant] <think>",
"url": "lessons/_archive/conversation-dumps/按照方案进行测试https-tarot-club-feishu-cn-docx-tkchd3lq.md",
"updated": "2026-04-01"
},
{
"id": "考生1回复-考试执行受阻-未完成作答-执行第一步安装依赖时遇到环境问题-当前运行环境中pip命令不",
"title": "考生1回复:考试执行受阻,未完成作答: 执行第一步安装依赖时遇到环境问题:当前运行环境中pip命令不",
"domain": "rag",
"tags": [],
"summary": "[assistant] <think>",
"url": "lessons/_archive/conversation-dumps/考生1回复-考试执行受阻-未完成作答-执行第一步安装依赖时遇到环境问题-当前运行环境中pip命令不.md",
"updated": "2026-04-01"
},
{
"id": "草稿-cc-haha-network-错误-exit-code-1",
"title": "[草稿] cc-haha network 错误: Exit code 1",
"domain": "devops",
"tags": [
"cc-haha",
"hook-auto",
"network"
],
"summary": "",
"url": "lessons/_archive/conversation-dumps/草稿-cc-haha-network-错误-exit-code-1.md",
"updated": "2026-05-04 09:05:47 UTC"
},
{
"id": "这是倒吊人在本周修改wsl的记录-有没有关联-一-本周修改的-wsl-内容-文件-操作-目的",
"title": "这是倒吊人在本周修改wsl的记录,有没有关联:一、本周修改的 WSL 内容 文件 操作 目的 ~/.",
"domain": "feishu",
"tags": [],
"summary": "[assistant] <think>",
"url": "lessons/_archive/conversation-dumps/这是倒吊人在本周修改wsl的记录-有没有关联-一-本周修改的-wsl-内容-文件-操作-目的.md",
"updated": "2026-04-01"
},
{
"id": "这里面也有答案-plain-text-edoc-v10-0-poc-召回测试-环境",
"title": "这里面也有答案? ```PLAIN_TEXT # Edoc V10.0 POC 召回测试 ## 环境",
"domain": "rag",
"tags": [],
"summary": "[assistant] <think>",
"url": "lessons/_archive/conversation-dumps/这里面也有答案-plain-text-edoc-v10-0-poc-召回测试-环境.md",
"updated": "2026-04-01"
},
{
"id": "问题-hermes-的-mmx-cli-wsl-内-需要自己的-mmx-config-jso",
"title": "问题: Hermes 的 mmx CLI(WSL 内)需要自己的 ~/.mmx/config.jso",
"domain": "feishu",
"tags": [],
"summary": "[assistant] <think>",
"url": "lessons/_archive/conversation-dumps/问题-hermes-的-mmx-cli-wsl-内-需要自己的-mmx-config-jso.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": "cc-haha-权限-错误-permission-permission-denied",
"title": "[cc-haha] 权限 错误 — permission:Permission denied",
"domain": "permission",
"tags": [
"cc-haha",
"hook-auto",
"permission",
"permission:Permission denied"
],
"summary": "自动捕获于 cc-haha hook(时间: 2026-05-10 16:16 UTC)。",
"url": "lessons/_archive/hook-raw/cc-haha-权限-错误-permission-permission-denied.md",
"updated": "2026-05-10 16:16:25 UTC"
},
{
"id": "cc-haha-模型输出异常-错误-exit-code-1-traceback-most-recent-call-las",
"title": "[cc-haha] 模型输出异常 错误 — Exit code 1 Traceback (most recent call last): File \"<stri...(截断)",
"domain": "model_output",
"tags": [
"cc-haha",
"hook-auto",
"model_output",
""
],
"summary": "自动捕获于 cc-haha hook(时间: 2026-05-10 15:05 UTC)。",
"url": "lessons/_archive/hook-raw/cc-haha-模型输出异常-错误-exit-code-1-traceback-most-recent-call-las.md",
"updated": "2026-05-10 15:05:00 UTC"
},
{
"id": "cc-haha-网络连接-错误-exit-code-1-name-websocket-client-version-1-",
"title": "[cc-haha] 网络连接 错误 — Exit code 1 Name: websocket-client Version: 1.9.0 Summary: W...(截断)",
"domain": "network",
"tags": [
"cc-haha",
"hook-auto",
"network",
""
],
"summary": "自动捕获于 cc-haha hook(时间: 2026-05-10 15:17 UTC)。",
"url": "lessons/_archive/hook-raw/cc-haha-网络连接-错误-exit-code-1-name-websocket-client-version-1-.md",
"updated": "2026-05-10 15:17:56 UTC"
},
{
"id": "cc-haha-网络连接-错误-exit-code-128-from-https-github-com-ikalus19",
"title": "[cc-haha] 网络连接 错误 — Exit code 128 From https://github.com/Ikalus1988/MisakaNet ...(截断)",
"domain": "network",
"tags": [
"cc-haha",
"hook-auto",
"network",
""
],
"summary": "自动捕获于 cc-haha hook(时间: 2026-05-10 16:33 UTC)。",
"url": "lessons/_archive/hook-raw/cc-haha-网络连接-错误-exit-code-128-from-https-github-com-ikalus19.md",
"updated": "2026-05-10 16:33:44 UTC"
},
{
"id": "cc-haha-网络连接-错误-network-timeout",
"title": "[cc-haha] 网络连接 错误 — network:Timeout",
"domain": "network",
"tags": [
"cc-haha",
"hook-auto",
"network",
"network:Timeout"
],
"summary": "自动捕获于 cc-haha hook(时间: 2026-05-10 15:18 UTC)。",
"url": "lessons/_archive/hook-raw/cc-haha-网络连接-错误-network-timeout.md",
"updated": "2026-05-10 15:18:12 UTC"
},
{
"id": "cc-haha的命令行已正常-现在输出下你的rag知识库md文档-截止今天的最新版本-需要保留背景方",
"title": "cc-haha的命令行已正常,现在输出下你的rag知识库md文档,截止今天的最新版本,需要保留背景方",
"domain": "rag",
"tags": [],
"summary": "[assistant]",
"url": "lessons/_archive/hook-raw/cc-haha的命令行已正常-现在输出下你的rag知识库md文档-截止今天的最新版本-需要保留背景方.md",
"updated": "2026-04-01"
},
{
"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": "ai-agent-project-outreach-guide",
"title": "AI Agent 项目宣发引流指南",
"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-飞书-mcp-通道-只能拉取不能推送",
"title": "aily 飞书 MCP 通道:只能拉取不能推送",
"domain": "feishu",
"tags": [],
"summary": "虫群架构设计时,误以为 aily 飞书侧支持 MCP Server 暴露给 Hub 调用。",
"url": "lessons/contrib/aily-飞书-mcp-通道-只能拉取不能推送.md",
"updated": "2026-05-03"
},
{
"id": "anthropic-proxy-internal-gateway",
"title": "internal-gateway.local 不兼容 Anthropic 格式 — 需 OpenAI 代理转换",
"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-rate-limit-handling-best-practices",
"title": "API限流处理最佳实践",
"domain": "devops",
"tags": [
"api",
"rate-limit",
"backoff",
"batch"
],
"summary": "大批量API任务没有提前测试限流,任务中途被截断,无法续命。",
"url": "lessons/contrib/api-rate-limit-handling-best-practices.md",
"updated": ""
},
{
"id": "api-rate-limit-handling",
"title": "API 请求限流 (Rate Limit) 处理方案",
"domain": "devops",
"tags": [
"api",
"rate-limit",
"retry",
"429"
],
"summary": "调用第三方 API 时返回 HTTP 429(Too Many Requests)或 403(被限流)。自动化脚本因未处理限流而中断。",
"url": "lessons/contrib/api-rate-limit-handling.md",
"updated": ""
},
{
"id": "api-网关不兼容-anthropic-原生格式",
"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-网关不兼容-anthropic-原生格式.md",
"updated": "2026-05-03"
},
{
"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-避免启动崩溃",
"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-避免启动崩溃.md",
"updated": "2026-05-03"
},
{
"id": "browser-harness-cdp-browser-automation",
"title": "browser-harness — AI 直连 Chrome 的 CDP 浏览器自动化",
"domain": "devops",
"tags": [],
"summary": "browser-harness 是 browser-use 团队的开源项目,定位是「给 AI 用的浏览器控制层」。与 Playwright/Puppeteer 不同,它把 Chrome DevTools Protocol (CDP) 直接交...",
"url": "lessons/contrib/browser-harness-cdp-browser-automation.md",
"updated": "2026-05-20"
},
{
"id": "cc-connect-feishu-display-optimization",
"title": "cc-connect 飞书显示优化:禁用工具调用和上下文提示",
"domain": "feishu",
"tags": [],
"summary": "cc-connect 默认会在飞书聊天中显示工具调用信息(如 \"🔧 工具 #5: Bash\")和上下文占用提示(如 \"[ctx: ~0%]\"),影响用户体验。",
"url": "lessons/contrib/cc-connect-feishu-display-optimization.md",
"updated": "2026-05-19"
},
{
"id": "cc-connect-feishu-setup-complete",
"title": "cc-connect 飞书机器人完整配置指南",
"domain": "feishu",
"tags": [],
"summary": "cc-connect 是一个连接 AI 编码代理(如 Claude Code)与消息平台(如飞书)的桥接工具。本文档记录完整的配置过程和常见问题解决方案。",
"url": "lessons/contrib/cc-connect-feishu-setup-complete.md",
"updated": "2026-05-19"
},
{
"id": "cc-connect-飞书机器人完整配置指南",
"title": "cc-connect 飞书机器人完整配置指南",
"domain": "feishu",
"tags": [],
"summary": "cc-connect 是一个连接 AI 编码代理(如 Claude Code)与消息平台(如飞书)的桥接工具。本文档记录完整的配置过程和常见问题解决方案。",
"url": "lessons/contrib/cc-connect-飞书机器人完整配置指南.md",
"updated": "2026-05-19 08:59:26 UTC"
},
{
"id": "ccswitch-hermes-switch",
"title": "ccswitch-hermes-switch 踩坑记录",
"domain": "devops",
"tags": [],
"summary": "> Domain: devops | Tags: ccswitch, hermes-switch, model, switching, proxy, deepseek, InternalGateway | Source: hermes_ws...",
"url": "lessons/contrib/ccswitch-hermes-switch.md",
"updated": "2026-05-02"
},
{
"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": "chroma-建库无-checkpoint-进程一死全部丢失",
"title": "Chroma 建库无 Checkpoint — 进程一死全部丢失",
"domain": "rag",
"tags": [],
"summary": "Agent 内跑 BGE-large-zh 建库(约30分钟),Gateway 重启后整个数据库为空,0条向量入库。",
"url": "lessons/contrib/chroma-建库无-checkpoint-进程一死全部丢失.md",
"updated": "2026-04-01"
},
{
"id": "chromadb-不能放在-ntfs-文件系统",
"title": "ChromaDB 不能放在 NTFS 文件系统",
"domain": "rag",
"tags": [
"project:self-grow-wiki",
"severity:critical",
"platform:wsl",
"node:hermes_wsl"
],
"summary": "ChromaDB 在 WSL 的 /mnt/d/ (NTFS 挂载点)上运行时出现 SQLite compaction 错误,向量库损坏。",
"url": "lessons/contrib/chromadb-不能放在-ntfs-文件系统.md",
"updated": "2026-05-03"
},
{
"id": "chrome-relay-browser-automation",
"title": "Chrome Relay 浏览器自动化 — CDP over WebSocket 控制无头浏览器",
"domain": "development",
"tags": [
"chrome",
"browser",
"automation",
"cdp",
"websocket",
"openclaw"
],
"summary": "在 WSL2 或 Linux 环境下运行 AI Agent 时,经常需要自动化浏览器操作(填表、发帖、截图等)。Chrome Relay(OpenClaw 内置功能)提供了通过 WebSocket 控制已运行浏览器的方案,比 Puppete...",
"url": "lessons/contrib/chrome-relay-browser-automation.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 请求失败通用排查",
"domain": "devops",
"tags": [
"network",
"curl",
"wget",
"debug",
"troubleshoot"
],
"summary": "`curl https://example.com` 返回空、报错或超时。不知道是 DNS、代理、证书还是目标服务的问题。",
"url": "lessons/contrib/curl-request-troubleshoot.md",
"updated": ""
},
{
"id": "deepseek-tui-agent-模式下-write-file-写入不落地-worktree-git-链接路径断裂",
"title": "DeepSeek TUI Agent 模式下 write_file 写入不落地 + worktree git 链接路径断裂",
"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-agent-模式下-write-file-写入不落地-worktree-git-链接路径断裂.md",
"updated": "2026-05-13 01:01:52 UTC"
},
{
"id": "deepseek-tui-write-file-sandbox-worktree-git-path",
"title": "DeepSeek TUI Agent 模式下 write_file 写入不落地 + worktree git 链接路径断裂",
"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 缓存清理",
"domain": "devops",
"tags": [],
"summary": "写入文件或构建向量库时报 `No space left on device` / `ENOSPC`,hermes-hub 进程崩溃。",
"url": "lessons/contrib/disk-space-cleanup.md",
"updated": "2026-05-01 08:00 UTC"
},
{
"id": "fanuc-kl-1086-是代码行号而非错误码",
"title": "FANUC KL: 1086 是代码行号而非错误码",
"domain": "fanuc",
"tags": [],
"summary": "分析 FANUC 1086 报错时,误将 1086 当作某种错误码,一路追错方向。",
"url": "lessons/contrib/fanuc-kl-1086-是代码行号而非错误码.md",
"updated": "2026-05-03"
},
{
"id": "fanuc-kl-bytes-ahead-是-karel-内置-procedure",
"title": "FANUC KL: BYTES_AHEAD 是 Karel 内置 Procedure",
"domain": "fanuc",
"tags": [],
"summary": "KL 编译报错时,误认为 BYTES_AHEAD 是禁用标识符或非法调用,将其从 MM_RCV_NTFY.kl 中删除。",
"url": "lessons/contrib/fanuc-kl-bytes-ahead-是-karel-内置-procedure.md",
"updated": "2026-05-03"
},
{
"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-kl-禁止-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-kl-禁止-routine-声明.md",
"updated": "2026-05-03"
},
{
"id": "fanuc-r-2000ic-retrieval-fix",
"title": "FANUC R-2000iC 检索混淆修复 — 关键词强制召回",
"domain": "rag",