-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathplugins.json
More file actions
1418 lines (1418 loc) · 66.4 KB
/
Copy pathplugins.json
File metadata and controls
1418 lines (1418 loc) · 66.4 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
{
"plugins": [
{
"category": "interaction",
"description_en": "Brings a terminal-based interface to DeepSeek Harness.",
"description_zh": "为 DeepSeek Harness 提供终端交互界面。",
"name": "dsh-tianshu-tui",
"repository_id": 1332692519,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/huiliyi37/dsh-tianshu-tui"
},
{
"category": "interaction",
"description_en": "Adds `@file` mentions for finding workspace files and attaching their contents to prompts.",
"description_zh": "支持通过 `@file` 搜索工作区文件,并把文件内容带入提示词。",
"name": "dsh-at-file",
"repository_id": 1333068434,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-at-file"
},
{
"category": "interaction",
"description_en": "Lets you replace the default thinking-status text with a custom label.",
"description_zh": "可将默认思考状态文案替换成自定义内容。",
"name": "ui-status-label",
"repository_id": 1331298429,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/alingalingling/ui-status-label"
},
{
"category": "interaction",
"description_en": "Adds OpenPencil design preview and editing support.",
"description_zh": "提供 OpenPencil 设计预览与编辑能力。",
"name": "dsh-openpencil",
"repository_id": 1332212466,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/ZSeven-W/dsh-openpencil"
},
{
"category": "interaction",
"description_en": "Renders interactive HTML cards inside conversations with streaming previews and sandbox isolation.",
"description_zh": "在对话中渲染交互式 HTML 卡片,支持流式预览与沙箱隔离。",
"name": "dsh-visualize",
"repository_id": 1333132287,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/Nagi-ovo/dsh-visualize"
},
{
"category": "interaction",
"description_en": "Combines file browsing, terminal access, and Git review in a side panel.",
"description_zh": "在侧边栏集中提供文件浏览、终端操作和 Git 审查。",
"name": "dsh-side-panel",
"repository_id": 1327183690,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/ccq1/dsh-side-panel"
},
{
"category": "interaction",
"description_en": "Provides a minimal conversation view focused on final answers.",
"description_zh": "提供只突出最终结果的精简会话视图。",
"name": "dsh-focus-chat",
"repository_id": 1330188742,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/dingyi222666/dsh-focus-chat"
},
{
"category": "interaction",
"description_en": "Embeds interactive layouts, charts, forms, quizzes, Mermaid diagrams, and 3D scenes in replies.",
"description_zh": "在回复中嵌入布局、图表、表单、测验、Mermaid 和 3D 场景等交互组件。",
"name": "dsh-genui",
"repository_id": 1333128726,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-genui"
},
{
"category": "interaction",
"description_en": "Sends selected-text annotations with a message and maps replies back to each note.",
"description_zh": "将选中文本的批注随消息发送,并让回复与各条批注对应。",
"name": "dsh-annotation",
"repository_id": 1330089831,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-annotation"
},
{
"category": "interaction",
"description_en": "Adds a navigation strip for jumping between user-message nodes.",
"description_zh": "增加会话节点导航条,便于快速跳转到不同用户消息。",
"name": "dsh-navbar",
"repository_id": 1330041615,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/vlln/dsh-navbar"
},
{
"category": "interaction",
"description_en": "Shows background-task progress and a live output tail on the conversation page.",
"description_zh": "在会话页展示后台任务进度和实时输出片段。",
"name": "dsh-task-status",
"repository_id": 1330041701,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/vlln/dsh-task-status"
},
{
"category": "interaction",
"description_en": "Collapses noisy Think, Bash, and similar messages in the chat timeline.",
"description_zh": "折叠 Think、Bash 等容易干扰阅读的会话消息。",
"name": "dsh-web-archive",
"repository_id": 1327504038,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/renat3u/dsh-web-archive"
},
{
"category": "interaction",
"description_en": "Adds a keyboard-first command palette to the DSH web interface.",
"description_zh": "为 DSH Web 界面增加键盘优先的命令面板。",
"name": "dsh-spotlight",
"repository_id": 1333136466,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/0xsline/dsh-spotlight"
},
{
"category": "interaction",
"description_en": "Introduces a dedicated document-reading mode.",
"description_zh": "提供专门的文档阅读模式。",
"name": "dsh-101",
"repository_id": 1328031168,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/bill9109/dsh-101"
},
{
"category": "interaction",
"description_en": "Inserts raw file paths through cross-platform drag and drop without copying files.",
"description_zh": "跨平台拖入文件并插入原始路径,无需复制文件。",
"name": "dsh-drag-and-drop",
"repository_id": 1324718909,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/bill9109/dsh-drag-and-drop"
},
{
"category": "interaction",
"description_en": "Opens a particular session or workspace through query-string deep links.",
"description_zh": "通过查询参数深链直达指定会话或工作区。",
"name": "dsh-deeplink",
"repository_id": 1333119284,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/qyw233/dsh-deeplink"
},
{
"category": "interaction",
"description_en": "Replaces the default write/edit DiffBlock with a PiUI-style diff viewer.",
"description_zh": "使用 PiUI 风格查看器替换写入和编辑操作的默认 DiffBlock。",
"name": "dsh-diff-viewer",
"repository_id": 1331947773,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/lehhair/dsh-diff-viewer"
},
{
"category": "interaction",
"description_en": "Extends the available DSH settings.",
"description_zh": "扩展 DSH 的设置项。",
"name": "ex-setting",
"repository_id": 1323139686,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/ex-setting"
},
{
"category": "interaction",
"description_en": "Enables Web Components support.",
"description_zh": "为 DSH 增加 Web Components 支持。",
"name": "web-components",
"repository_id": 1323137354,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/web-components"
},
{
"category": "interaction",
"description_en": "Adds quick navigation between conversation turns.",
"description_zh": "支持在不同对话轮次之间快速导航。",
"name": "dsh-turn-navigator",
"repository_id": 1331998945,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/vibeinging/dsh-turn-navigator"
},
{
"category": "interaction",
"description_en": "Restores earlier conversation and workspace states through a persistent change ledger.",
"description_zh": "基于持久化变更账本恢复到更早的会话和工作区状态。",
"name": "dsh-turn-rewind",
"repository_id": 1333100390,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/Anionex/dsh-turn-rewind"
},
{
"category": "interaction",
"description_en": "Distills conversations in the background using subagent reflection and skill updates.",
"description_zh": "通过后台子智能体复盘及技能更新完成会话蒸馏。",
"name": "distill",
"repository_id": 1323384072,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/LoserFox/distill"
},
{
"category": "interaction",
"description_en": "Adds one-click conversation sharing.",
"description_zh": "提供一键分享完整会话的能力。",
"name": "dsh-share",
"repository_id": 1332051085,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/hellodigua/dsh-share"
},
{
"category": "interaction",
"description_en": "Supports branch-based message edits, rerolls, retries, and version history.",
"description_zh": "支持基于分支的消息编辑、重新生成、重试及版本回溯。",
"name": "dsh-message-edit",
"repository_id": 1324720195,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/Moeblack/dsh-message-edit"
},
{
"category": "interaction",
"description_en": "Integrates local runtime memory, retrievable documents, and supervised memory spaces.",
"description_zh": "集成本地运行时记忆、可检索文档和受监督记忆空间。",
"name": "dsh-mnemon",
"repository_id": 1329424520,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-mnemon"
},
{
"category": "interaction",
"description_en": "Runs persistent side sessions or one-off side questions without changing the main history.",
"description_zh": "在不改变主会话历史的情况下运行持续侧会话或一次性侧问。",
"name": "dsh-sidechain",
"repository_id": 1326698240,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-sidechain"
},
{
"category": "interaction",
"description_en": "Shares a selected excerpt instead of an entire conversation.",
"description_zh": "可只分享会话中的指定片段。",
"name": "dsh-conversation-share",
"repository_id": 1332322629,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/bill9109/dsh-conversation-share"
},
{
"category": "interaction",
"description_en": "Adds local-first learning threads with explanations organized by source.",
"description_zh": "提供本地优先的学习线程,并按信息来源组织讲解。",
"name": "dsh-explain",
"repository_id": 1331831416,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/yuezengwu/dsh-explain"
},
{
"category": "interaction",
"description_en": "Edits user and built-in system-prompt sections with a live preview.",
"description_zh": "可分节编辑用户及内置系统提示词,并实时预览效果。",
"name": "dsh-prompt-studio",
"repository_id": 1324517730,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/Moeblack/dsh-prompt-studio"
},
{
"category": "interaction",
"description_en": "Adds fictional parody ads inspired by Chinese websites from the mid-2000s.",
"description_zh": "加入具有 2000 年代中文网站风格的虚构趣味广告。",
"name": "dsh-ads",
"repository_id": 1329113397,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/Nagi-ovo/dsh-ads"
},
{
"category": "interaction",
"description_en": "Lets a user play Gomoku against AI or watch two AIs compete.",
"description_zh": "支持玩家与 AI 下五子棋,也可观看两个 AI 对局。",
"name": "dsh-gomoku",
"repository_id": 1327999315,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-gomoku"
},
{
"category": "interaction",
"description_en": "Adds a tongue-in-cheek stock-market experience while you code.",
"description_zh": "在编码过程中加入带幽默感的模拟股票体验。",
"name": "dsh-stock-market",
"repository_id": 1331846104,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/AnacondaKC/dsh-stock-market"
},
{
"category": "interaction",
"description_en": "Automatically decorates AI replies with emoji.",
"description_zh": "自动为 AI 回复补充表情符号。",
"name": "dsh-emoji",
"repository_id": 1332222725,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/hellodigua/dsh-emoji"
},
{
"category": "interaction",
"description_en": "Opens a side-panel arcade with 18 offline games.",
"description_zh": "在侧边栏提供 18 款可离线运行的小游戏。",
"name": "dsh-minigames",
"repository_id": 1333130619,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/lhh010/dsh-minigames"
},
{
"category": "interaction",
"description_en": "Enables two-way sticker reactions between the user and the agent.",
"description_zh": "支持用户与智能体双向发送贴纸反馈。",
"name": "dsh-stickers",
"repository_id": 1327745309,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/william-jin-cmu/dsh-stickers"
},
{
"category": "interaction",
"description_en": "Adds a draggable, feedable, and playable desktop pet.",
"description_zh": "增加可拖拽、投喂和互动的桌面宠物。",
"name": "whale-girl",
"repository_id": 1329947687,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/vlln/whale-girl"
},
{
"category": "interaction",
"description_en": "Appends a thank-you message to keep conversations polite.",
"description_zh": "自动追加感谢语,让会话表达更有礼貌。",
"name": "deepseek-manners",
"repository_id": 1330704503,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/Moeblack/deepseek-manners"
},
{
"category": "interaction",
"description_en": "Opens an extensible mini-game menu while the model is generating.",
"description_zh": "在模型生成期间打开可扩展的小游戏菜单。",
"name": "dsh-plugin-d399",
"repository_id": 1329603396,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/HuanLinOTO/dsh-plugin-d399"
},
{
"category": "interaction",
"description_en": "Provides auto-chess matches for human-versus-AI or AI-versus-AI play.",
"description_zh": "提供人机或双 AI 自走棋对局。",
"name": "dsh-auto-chess",
"repository_id": 1329778469,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-auto-chess"
},
{
"category": "interaction",
"description_en": "Adds a short-video sidebar with native playback, series navigation, and history resume.",
"description_zh": "增加短视频侧栏,支持原生播放、系列导航和历史续播。",
"name": "dsh-douyin",
"repository_id": 1332642596,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/AnacondaKC/dsh-douyin"
},
{
"category": "interaction",
"description_en": "Adds a Fast mode switch and configurable reasoning effort profiles to the DeepSeek Harness web composer.",
"description_zh": "为DeepSeek Harness Web 编辑器添加快速模式开关与可配置的推理努力档位。",
"name": "dsh-model-modes",
"repository_id": 1333340665,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/DTSFO/dsh-model-modes"
},
{
"category": "interaction",
"description_en": "Converts dropped or pasted images and files into workspace paths for text-only models in DeepSeek Harness chat.",
"description_zh": "在 DeepSeek Harness 聊天中将拖放或粘贴的图片和文件转换为工作区路径,供纯文本模型使用。",
"name": "dsh-drop-to-path",
"repository_id": 1333472422,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/loudMore/dsh-drop-to-path"
},
{
"category": "interaction",
"description_en": "Provides cross-session agent-to-agent messaging for DeepSeek Harness, with offline delivery, receipts, and session navigation.",
"description_zh": "为 DeepSeek Harness 提供跨会话 Agent 间消息传递,支持离线投递、回执和会话导航。",
"name": "dsh-agent-message",
"repository_id": 1333415260,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/GengDaPeng/dsh-agent-message"
},
{
"category": "interaction",
"description_en": "Provides a keyboard-oriented kanban interface for managing multi-agent coding workspaces in DeepSeek Harness.",
"description_zh": "为 DeepSeek Harness 提供面向键盘操作的看板界面,用于管理多智能体编码工作空间。",
"name": "ikanban",
"repository_id": 1137545389,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/isomoes/ikanban"
},
{
"category": "interaction",
"description_en": "Provides stateless dialogue compression to keep conversation context bounded.",
"description_zh": "提供无状态对话压缩,使对话上下文保持有界。",
"name": "mosaic_compress",
"repository_id": 1262737601,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/TuringCorp-net/mosaic_compress"
},
{
"category": "interaction",
"description_en": "Provides a DeepSeek Harness plugin that renders a real-time working status line with agent activity, tool progress, and context alerts.",
"description_zh": "提供一个 DeepSeek Harness 插件,用于在运行状态行中实时展示代理活动、工具进度和上下文警告。",
"name": "working-activity",
"repository_id": 1309769324,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/ccch1mneyyy/working-activity"
},
{
"category": "tools",
"description_en": "Equips text-only models for image Q&A, long-screenshot OCR, UI reconstruction, grounding, and pixel comparison.",
"description_zh": "为纯文本模型补充图片问答、长截图 OCR、UI 还原、定位及像素比较能力。",
"name": "dsh-vision-toolkit",
"repository_id": 1333100071,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/Anionex/dsh-vision-toolkit"
},
{
"category": "tools",
"description_en": "Creates and manages sandboxed JavaScript tools through a Monaco-based editor.",
"description_zh": "通过 Monaco 编辑器创建和管理沙箱化 JavaScript 工具。",
"name": "dsh-custom-tool",
"repository_id": 1333068379,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-custom-tool"
},
{
"category": "tools",
"description_en": "Provides accessibility-first macOS control with fresh-state checks and scoped permissions.",
"description_zh": "提供无障碍优先的 macOS 控制,并包含状态新鲜度检查和权限约束。",
"name": "dsh-computer-use",
"repository_id": 1333116579,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/Anionex/dsh-computer-use"
},
{
"category": "tools",
"description_en": "Connects AI workflows to databases and SQL authoring.",
"description_zh": "让 AI 工作流连接数据库并编写 SQL。",
"name": "dsh-data-agent",
"repository_id": 1331112087,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-data-agent"
},
{
"category": "tools",
"description_en": "Bundles ten dependency-free utilities for time, encoding, JSON, math, CSV, regex, Markdown, diffs, statistics, and schemas.",
"description_zh": "集成时间、编码、JSON、计算、CSV、正则、Markdown、差异、统计和 Schema 十类零依赖工具。",
"name": "dsh-toolkit",
"repository_id": 1327795364,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-toolkit"
},
{
"category": "tools",
"description_en": "Parses, queries, aggregates, and converts RFC 4180 CSV without dependencies.",
"description_zh": "零依赖解析、查询、聚合和转换 RFC 4180 CSV。",
"name": "dsh-tool-csv",
"repository_id": 1326828799,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-tool-csv"
},
{
"category": "tools",
"description_en": "Evaluates mathematical expressions with a dependency-free recursive-descent parser.",
"description_zh": "使用递归下降解析器安全计算数学表达式。",
"name": "dsh-tool-calculator",
"repository_id": 1323526209,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-tool-calculator"
},
{
"category": "tools",
"description_en": "Produces structured comparisons and unified diffs for text, JSON, CSV, and Markdown.",
"description_zh": "对文本、JSON、CSV 和 Markdown 进行结构化比较并生成统一差异。",
"name": "dsh-tool-diff",
"repository_id": 1328474413,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-tool-diff"
},
{
"category": "tools",
"description_en": "Handles Base64, URL, and hexadecimal encoding alongside hashes and UUID generation.",
"description_zh": "处理 Base64、URL、十六进制编解码,以及哈希和 UUID 生成。",
"name": "dsh-tool-encoding",
"repository_id": 1324638838,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-tool-encoding"
},
{
"category": "tools",
"description_en": "Queries JSON using a supported subset of JMESPath.",
"description_zh": "使用受支持的 JMESPath 子集查询 JSON。",
"name": "dsh-tool-json",
"repository_id": 1323618624,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-tool-json"
},
{
"category": "tools",
"description_en": "Converts HTML and Markdown, normalizes GFM tables, and generates tables of contents.",
"description_zh": "完成 HTML 与 Markdown 转换、GFM 表格整理及目录生成。",
"name": "dsh-tool-markdown",
"repository_id": 1327795409,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-tool-markdown"
},
{
"category": "tools",
"description_en": "Tests, extracts, safely replaces, and statically explains regular expressions.",
"description_zh": "提供正则测试、提取、安全替换和静态解释。",
"name": "dsh-tool-regex",
"repository_id": 1326828848,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-tool-regex"
},
{
"category": "tools",
"description_en": "Validates, explores, explains, and normalizes JSON Schema data.",
"description_zh": "支持 JSON Schema 验证、路径查看、解释及规范化。",
"name": "dsh-tool-schema",
"repository_id": 1329526554,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-tool-schema"
},
{
"category": "tools",
"description_en": "Calculates descriptive statistics, percentiles, frequency distributions, and correlations.",
"description_zh": "计算描述统计、百分位数、频数分布和相关性。",
"name": "dsh-tool-stat",
"repository_id": 1329526524,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-tool-stat"
},
{
"category": "tools",
"description_en": "Parses ISO 8601 values, converts IANA time zones, and performs UTC calendar arithmetic.",
"description_zh": "解析 ISO 8601 时间、转换 IANA 时区并执行 UTC 日历运算。",
"name": "dsh-tool-time",
"repository_id": 1324638821,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-tool-time"
},
{
"category": "tools",
"description_en": "Builds auditable SQLite FTS5 knowledge packs from text, Markdown, DOCX, and PDF files.",
"description_zh": "从文本、Markdown、DOCX 和 PDF 构建可审计的 SQLite FTS5 知识库包。",
"name": "dsh-kb-sieve",
"repository_id": 1331086179,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh-kb-sieve"
},
{
"category": "tools",
"description_en": "Makes MineRU document-parsing tools available to the model.",
"description_zh": "将 MineRU 文档解析工具提供给模型使用。",
"name": "dsh-plugin-mineru",
"repository_id": 1328601495,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/HuanLinOTO/dsh-plugin-mineru"
},
{
"category": "tools",
"description_en": "Discovers tools on demand for each agent with progressive schema disclosure.",
"description_zh": "为每个智能体提供按需工具发现和渐进式 Schema 展开。",
"name": "dsh-tool-search",
"repository_id": 1330609835,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/vibeinging/dsh-tool-search"
},
{
"category": "tools",
"description_en": "Adds classrooms, slides, interactive widgets, and Socratic teaching flows through OpenMAIC.",
"description_zh": "通过 OpenMAIC 提供课堂、幻灯片、交互组件和苏格拉底式教学流程。",
"name": "dsh-openmaic",
"repository_id": 1333147218,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/THU-MAIC/dsh-openmaic"
},
{
"category": "tools",
"description_en": "Provides academic-assistant capabilities.",
"description_zh": "提供面向学术场景的辅助能力。",
"name": "dsh-scholar",
"repository_id": 1325458176,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/lzszq/dsh-scholar"
},
{
"category": "tools",
"description_en": "Provides six email tools (list, read, search, send, folders, attachment) for DeepSeek Harness with multi-account support and presets for common email providers.",
"description_zh": "为 DeepSeek Harness 提供六个邮件工具(列表、读取、搜索、发送、文件夹、附件),支持多账号及常见邮箱服务商预设。",
"name": "dsh-email",
"repository_id": 1333512933,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/STARDUSTLC666/dsh-email"
},
{
"category": "tools",
"description_en": "Provides a draggable widget dock for DeepSeek Harness showing balance, tokens, stats, commands, goals, and cost.",
"description_zh": "为 DeepSeek Harness 提供可拖拽的小组件面板,展示余额、令牌、统计、命令、目标和成本。",
"name": "widget-dock",
"repository_id": 1333331944,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/MorGogh/widget-dock"
},
{
"category": "tools",
"description_en": "Provides two DeepSeek Harness plugins: dsh-vision for image understanding and dsh-native-web for web search and scraping.",
"description_zh": "提供两个 DeepSeek Harness 插件:dsh-vision 用于图像理解,dsh-native-web 用于网页搜索和抓取。",
"name": "dsh-enhance",
"repository_id": 1333335502,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/vcxmug/dsh-enhance"
},
{
"category": "tools",
"description_en": "A static directory that automatically collects and categorizes GitHub dsh-plugin topic repositories, and includes an optional DSH web plugin for browsing the catalog.",
"description_zh": "自动收录和分类 GitHub dsh-plugin Topic 项目的静态目录网站,并提供用于在 DSH 中浏览目录的可选 Web 插件。",
"name": "dsh-plugins-store",
"repository_id": 1333579278,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/ZASENJC/dsh-plugins-store"
},
{
"category": "tools",
"description_en": "Redacts sensitive values from DeepSeek Harness session telemetry before export.",
"description_zh": "在导出前对 DeepSeek Harness 会话遥测中的敏感值进行脱敏处理。",
"name": "dsh-telemetry-redactor",
"repository_id": 1333368566,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/030611/dsh-telemetry-redactor"
},
{
"category": "tools",
"description_en": "Imports conversation histories from various AI agent tools into DeepSeek Harness for continued chat.",
"description_zh": "将多种AI代理工具的历史会话导入DeepSeek Harness以继续对话。",
"name": "dsh-chat-import",
"repository_id": 1333200468,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/Nwflower/dsh-chat-import"
},
{
"category": "tools",
"description_en": "Provides repository-local governance for coding agents with a DeepSeek Harness patch overlay.",
"description_zh": "为编码代理提供仓库本地治理,并包含 DeepSeek Harness 补丁覆盖层。",
"name": "amber-protocol",
"repository_id": 1276213353,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/Bandersnatch0x/amber-protocol"
},
{
"category": "tools",
"description_en": "Provides a multilingual search and evidence-verification tool for AI agents.",
"description_zh": "为 AI Agent 提供多语言搜索与证据核验工具。",
"name": "argo",
"repository_id": 1304997851,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/taxueseek/argo"
},
{
"category": "tools",
"description_en": "Generates, renders, and visually reviews Mermaid diagrams for AI coding agents.",
"description_zh": "为AI编程代理生成、渲染和视觉复检Mermaid图表。",
"name": "craft-mermaid",
"repository_id": 1303651617,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/chunkithwang/craft-mermaid"
},
{
"category": "tools",
"description_en": "A DeepSeek Harness plugin that guides agents to safely discover, assess, and adopt external Agent Skills.",
"description_zh": "一个 DeepSeek Harness 插件,指导智能体安全地发现、评估并采用外部 Agent Skills。",
"name": "deepseek-harness-skillx",
"repository_id": 1254458909,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/drowned-fish1/deepseek-harness-skillx"
},
{
"category": "tools",
"description_en": "Implements dual knowledge-graph retrieval over Markdown notes, exposing MCP tools for search and feedback.",
"description_zh": "实现基于双知识图谱的Markdown笔记检索,提供MCP搜索与反馈工具。",
"name": "knowlp-rag",
"repository_id": 1291676455,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/wly8691-jpg/knowlp-rag"
},
{
"category": "tools",
"description_en": "A plugin for DeepSeek Harness that provides image understanding by converting pasted images into structured JSON evidence.",
"description_zh": "一个 DeepSeek Harness 插件,通过将粘贴的图片转换为结构化 JSON 证据来提供图像理解能力。",
"name": "modlens",
"repository_id": 1163808211,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/liustack/modlens"
},
{
"category": "tools",
"description_en": "Adds web search, X (Twitter) search, and page fetching tools to DeepSeek Harness through multiple engines.",
"description_zh": "为 DeepSeek Harness 添加网页搜索、X(推特)搜索与页面抓取工具,支持多种引擎。",
"name": "modsearch",
"repository_id": 1163808542,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/liustack/modsearch"
},
{
"category": "tools",
"description_en": "Generates editable PPTX presentations from semantic intermediate representations via an installable DeepSeek Harness plugin.",
"description_zh": "通过可安装的 DeepSeek Harness 插件,从语义中间表示生成可编辑的 PPTX 演示文稿。",
"name": "pptfast",
"repository_id": 1303071154,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/liustack/pptfast"
},
{
"category": "tools",
"description_en": "Provides a DeepSeek Harness plugin bundle that registers the pptkit-presentation skill for creating editable PowerPoint decks from source materials.",
"description_zh": "提供一个 DeepSeek Harness 插件包,注册 pptkit-presentation 技能,用于从源材料创建可编辑的 PowerPoint 演示文稿。",
"name": "pptkit-presentation",
"repository_id": 1303876331,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/openHacking/pptkit-presentation"
},
{
"category": "tools",
"description_en": "Provides command-line tools for backing up, restoring, and synchronizing agent workspace configuration and data.",
"description_zh": "提供命令行工具,用于备份、恢复和同步代理工作区配置与数据。",
"name": "uagent-sync",
"repository_id": 1266465567,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/severin-ye/uagent-sync"
},
{
"category": "tools",
"description_en": "Provides a login gateway and multi-user account management for DeepSeek Harness.",
"description_zh": "为 DeepSeek Harness 提供登录网关和多用户账户管理功能。",
"name": "dsh-passwords",
"repository_id": 1333875303,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/slywalker2006/dsh-passwords"
},
{
"category": "tools",
"description_en": "Provides a DeepSeek Harness plugin that compiles deterministic agent execution paths into DSL programs for direct execution.",
"description_zh": "提供一个 DeepSeek Harness 插件,将确定性代理执行路径编译为 DSL 程序并直接执行。",
"name": "agent-jit",
"repository_id": 1326098871,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/sybolization/agent-jit"
},
{
"category": "tools",
"description_en": "Provides a portable investment decision workflow plugin kit with Python source and a command line interface.",
"description_zh": "提供可移植的投资决策工作流插件套件,包含 Python 源码和命令行工具。",
"name": "clawock",
"repository_id": 1240554500,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/KCNyu/clawock"
},
{
"category": "tools",
"description_en": "Generates PowerPoint decks from AI-declared layout intents using a deterministic layout engine and includes a DSH plugin for live preview and feedback.",
"description_zh": "通过确定性布局引擎,根据AI声明的布局意图生成PowerPoint演示文稿,并提供用于实时预览和反馈的DSH插件。",
"name": "DeepSeek-PPT-skill",
"repository_id": 1310893070,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/lecutu/dsh-slide-reflex"
},
{
"category": "tools",
"description_en": "Adds a prism_see tool and VEP image recognition capability to DeepSeek Harness.",
"description_zh": "为 DeepSeek Harness 添加 prism_see 工具和图片识别能力。",
"name": "DeepSeek_Prism",
"repository_id": 1320268905,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/YOGEMOW/DeepSeek_Prism"
},
{
"category": "tools",
"description_en": "Provides a Chinese official document processing tool with DSH skill and Cordis plugin integration.",
"description_zh": "提供中文公文处理工具,支持 DSH 技能与 Cordis 插件集成。",
"name": "gongwen-skill",
"repository_id": 1306637593,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/linhut/gongwen-skill"
},
{
"category": "tools",
"description_en": "Provides a DeepSeek Harness plugin bundle that exposes agent runtime management tools through MCP.",
"description_zh": "提供 DeepSeek Harness 插件包,通过 MCP 暴露代理运行时管理工具。",
"name": "sandbase-harness",
"repository_id": 1297278222,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/sandbaseai/sandbase-harness"
},
{
"category": "tools",
"description_en": "Provides CLI commands for analyzing screenshots, diagrams, charts, UI diffs, and videos with multimodal models.",
"description_zh": "提供CLI命令,使用多模态模型分析截图、示意图、图表、UI差异和视频。",
"name": "sidesight",
"repository_id": 1319104261,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/ZhuXinAI/sidesight"
},
{
"category": "tools",
"description_en": "Provides a Chinese long-screenplay writing skill with project initialization, context building, validation, and review scripts for SKILL.md-compatible agents.",
"description_zh": "提供中文长剧本创作技能,包含项目初始化、上下文构建、校验与审查脚本,适用于兼容 SKILL.md 的智能体。",
"name": "write-chinese-long-screenplay",
"repository_id": 1316202030,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/mudden2380078550-creator/write-chinese-long-screenplay"
},
{
"category": "tools",
"description_en": "Implements an MCP server for retrieving versioned library documentation, with tools for catalog lookup, release listing, and doc extraction.",
"description_zh": "实现一个MCP服务器,用于检索版本化库文档,提供目录查询、版本列表和文档提取工具。",
"name": "docs-retriever",
"repository_id": 1335840644,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/JohnXu22786/docs-retriever"
},
{
"category": "tools",
"description_en": "Provides a code knowledge graph that indexes symbols, call sites, and imports into SQLite and answers structural questions through CLI or a stdio MCP tool server.",
"description_zh": "提供代码知识图谱,将符号、调用点和导入索引到SQLite,并通过CLI或stdio MCP工具服务器回答结构性问题。",
"name": "codegraph",
"repository_id": 1335842340,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/JohnXu22786/codegraph"
},
{
"category": "tools",
"description_en": "Provides disk-persisted execution planning with milestones, step state machines, and audit events.",
"description_zh": "提供基于磁盘持久化的执行规划,包含里程碑、步骤状态机和审计事件。",
"name": "file-planning",
"repository_id": 1335840975,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/JohnXu22786/file-planning"
},
{
"category": "tools",
"description_en": "Provides a constrained filesystem MCP server for agents, exposing file read/write, search, and metadata operations within configurable zones.",
"description_zh": "为代理提供受限的文件系统 MCP 服务器,在可配置区域内提供文件读写、搜索和元数据操作。",
"name": "fs-mcp",
"repository_id": 1335840647,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/JohnXu22786/fs-mcp"
},
{
"category": "tools",
"description_en": "Provides a cross-session event-sourced task board for DeepSeek Harness, supporting task tracking, audit history, and kanban export.",
"description_zh": "为 DeepSeek Harness 提供跨会话事件溯源任务面板,支持任务跟踪、审计历史和看板导出。",
"name": "task-board",
"repository_id": 1335841635,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/JohnXu22786/task-board"
},
{
"category": "tools",
"description_en": "Provides background terminal job management for DeepSeek Harness with PTY-based process launching, input, output paging, and job control.",
"description_zh": "为 DeepSeek Harness 提供后台终端作业管理,支持 PTY 进程启动、输入、输出分页和作业控制。",
"name": "pty-runner",
"repository_id": 1335842344,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/JohnXu22786/pty-runner"
},
{
"category": "tools",
"description_en": "A DeepSeek Harness plugin bundling an MCP server that exposes GitHub repository, issue, pull request, review, and search tools.",
"description_zh": "一个 DeepSeek Harness 插件,打包了暴露 GitHub 仓库、议题、拉取请求、审查和搜索工具的 MCP 服务器。",
"name": "github-mcp",
"repository_id": 1335840223,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/JohnXu22786/github-mcp"
},
{
"category": "tools",
"description_en": "Provides task-isolated git worktree management tools for DeepSeek Harness, including create, sync, finish, and batch cleanup operations.",
"description_zh": "为 DeepSeek Harness 提供任务隔离的 git 工作区管理工具,包括创建、同步、收尾和批量清理操作。",
"name": "worktree-mgr",
"repository_id": 1335840982,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/JohnXu22786/worktree-mgr"
},
{
"category": "tools",
"description_en": "Scans project build declaration files and exposes the found commands as agent tools.",
"description_zh": "扫描项目构建声明文件并将发现的命令作为代理工具暴露。",
"name": "command-scout",
"repository_id": 1335840341,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/JohnXu22786/command-scout"
},
{
"category": "tools",
"description_en": "Adds an API balance and token usage monitoring module to the DeepSeek Harness settings panel.",
"description_zh": "在 DeepSeek Harness 设置面板中新增 API 余额与 Token 用量监测模块。",
"name": "dsh-Api-monitor",
"repository_id": 1204656257,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/linshufan21/dsh-Api-monitor"
},
{
"category": "tools",
"description_en": "Provides a DeepSeek Harness plugin bundle that exposes shell, file, browser, and remote machine tools via an MCP server.",
"description_zh": "提供一个DeepSeek Harness插件包,通过MCP服务器暴露shell、文件、浏览器和远程机器工具。",
"name": "local-shell-mcp",
"repository_id": 1249040497,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/fwerkor/local-shell-mcp"
},
{
"category": "tools",
"description_en": "Provides a native localhost HTTP service for AI agents to run Stata, distributed as a DeepSeek Harness plugin.",
"description_zh": "提供本地 HTTP 服务,使 AI 代理能够运行 Stata,并以 DeepSeek Harness 插件形式分发。",
"name": "Stata-AI-Skill",
"repository_id": 1268108268,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/ZihaoVistonWang/Stata-AI-Skill"
},
{
"category": "tools",
"description_en": "Provides a multi-agent framework for solving and verifying mathematical problems within DeepSeek Harness.",
"description_zh": "在 DeepSeek Harness 中提供多代理数学问题求解与验证框架。",
"name": "Vibe-Mathematics",
"repository_id": 1319853777,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/ChongCyrus/Vibe-Mathematics"
},
{
"category": "tools",
"description_en": "Tracks token usage for DeepSeek Harness and attributes it to relay sites, with support for balance and quota queries.",
"description_zh": "为 DeepSeek Harness 记录令牌用量并按中转站归属,支持余额与配额查询。",
"name": "TokenLedger",
"repository_id": 1333969047,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/zh667/TokenLedger"
},
{
"category": "tools",
"description_en": "Provides repository tools and process execution for coding agents, with a DSH native adapter included.",
"description_zh": "为编码代理提供代码库工具和进程执行功能,并包含 DSH 原生适配器。",
"name": "agentshim",
"repository_id": 1322407852,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/possible055/agentshim"
},
{
"category": "tools",
"description_en": "Provides a gamified educational platform as a DeepSeek Harness client plugin.",
"description_zh": "作为DeepSeek Harness客户端插件,提供游戏化教育平台。",
"name": "gamify-edu",
"repository_id": 1068628553,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/BinLe1988/gamify-edu"
},
{
"category": "tools",
"description_en": "Provides GEO content optimization capabilities for DeepSeek Harness, including document parsing, pipeline execution, and web search tools.",
"description_zh": "为DeepSeek Harness提供GEO内容优化能力,包括文档解析、流水线执行和联网搜索工具。",
"name": "geo-content-optimizer",
"repository_id": 1302542494,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/wangzhuo-coding/geo-content-optimizer"
},
{
"category": "tools",
"description_en": "Enables Ouroboros interview and auto workflow commands within DeepSeek Harness chat via a bundled dsh plugin.",
"description_zh": "通过内置的 dsh 插件,在 DeepSeek Harness 聊天中启用 Ouroboros 的 interview 和 auto 工作流命令。",
"name": "ouroboros",
"repository_id": 1133901637,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/Q00/ouroboros"
},
{
"category": "automation",
"description_en": "Provides a reusable and observable multi-agent workflow layer with generation, governance, and resume support.",
"description_zh": "提供可复用、可观察、可治理并支持恢复的多智能体工作流层。",
"name": "dsh_workflow",
"repository_id": 1332243516,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/omdsh-dev/dsh_workflow"
},
{
"category": "automation",
"description_en": "Organizes multiple agents into coordinated teams.",
"description_zh": "将多个智能体组织为协作团队。",
"name": "dsh-agent-teams",
"repository_id": 1332073142,
"source": "github-topic:dsh-plugin",
"url": "https://github.com/NanmiCoder/dsh-agent-teams"