-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathcurated.json
More file actions
1909 lines (1909 loc) · 294 KB
/
Copy pathcurated.json
File metadata and controls
1909 lines (1909 loc) · 294 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
{
"category_overrides": {
"bpc-oss/dsh-web-billing": "ui-experience",
"ccch1mneyyy/dsh-TUI": "ui-experience",
"chumingjun/dsh-harness-one": "agents-workflows",
"flymysql/dsh-remote": "integrations-sharing",
"fuhefei/dsh-sentinel": "agents-workflows",
"Han-1413141/dsh-cost-meter": "ui-experience",
"howlma/dsh-desktop": "ui-experience",
"KinGao294/dsh-skin": "ui-experience",
"lamost423/dsh-maze": "developer-tools",
"Nwflower/dsh-chat-import": "integrations-sharing",
"omdsh-dev/dsh-genui": "ui-experience",
"vlln/dsh-loop": "agents-workflows",
"vlln/plugin-registry": "ecosystem-resources",
"vlln/whale-girl": "ui-experience",
"ZSeven-W/dsh-openpencil": "media-vision"
},
"leaderboard_exclusions": {
"01men/ybkk-AIOS": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"091022yyj/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"0xKcyzz/dsh-plugin-store": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"1162514620/plugin-center": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"15828148/dsh-portable-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"1e0zj/dsh-plugin-mall": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"2160039878-cyber/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"241793/DSH-Win-GUI": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"250shiwo/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"2BingLing/dsh-market": "Kept out of the star board: a DSH plugin market / directory / store — the market cannot include another market. Stays in the catalog.",
"2DogsLee/dsh_whalebuddy": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"386842536/dsh-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"4mForAI/dsh-plain-plugin-menu": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"6kongbai/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"863683348/dsh-plugin-quality-hub": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"988hj7tczd-oss/harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Aaaaamadeus/dsh-gui": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"abaicaia/dsh-tray-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ACEMaravilla/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Ackerman0/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Ackow/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Ackow/dshdesktop-client": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"adoresever/graph-memory": "Kept out of the star board: stars accrued as an OpenClaw memory plugin; the DSH-native core is newer. Stays in the catalog.",
"AfanSama/dsh-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"agentscope-ai/ReMe": "Kept out of the star board: stars accrued as a generic Python agent-memory kit; the DSH plugin (@agentscope-ai/reme) is a recent addition. Stays in the catalog.",
"ahikl/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"AI-Scarlett/DSH-Store": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"alanzhao0128/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"alexcarterio/deepseek-whale-pet": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"alexchenzl/dsh-plugin-directory": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"AlexYin-Tongji/dsh-plugin-console": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"AlienHub/dsh-menubar": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"alllllllllli/Living-Dream-DSH": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Alvinpro/DSH-Launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"AlwaysSum/deepseek-harness-kit": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"anjaymi/dsh-plugin-store": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"AQian0/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ARFCON/dsh-hotplug-hub": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Ary66101/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ashuai/dsh-ui-wrapper": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Astra-Ursae-Majoris/Deepseek-Harness-Local-UI": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"AstroLiao/dsh-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ateen18/dsh-plugin-security-review": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"aust24lzy/dsh-plugin-hub": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Awesome-AI-Pedia/Awesome-AI-Pedia": "Kept out of the star board: an AI resource directory / navigation site (a curated list mentioning DSH plugins), not a plugin. Stays in the catalog.",
"Awesome-AI-Pedia/dsh-plugin-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"AwesomeHou/dsh-plugin-marketplace": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"AxelGoal/Deepharn": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ayingQAQ/dsh-web-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"baihejiangnan/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"beartackler/dsh-bridge": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"becomeless/dsh-desktop-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"beex-labs/dsh-desktop-plugin": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ben7am1n/dsh-claude-marketplace": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"BeyondXinXin/deepseek-harness-box": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"big0lives/dsh-win-quick-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Binaryinject/dsh-tray": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"BISTU-guheihei/DSH-SessionManager": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Blackman99/codsh": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"bmai-BH6BHG/dsk.net": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"bobby-sheng/dshget-plugin": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"bobostudio/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"bowenliang123/dsh-plugin-checker": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"boyuan623-coder/deepseek_harness_plugin_box": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"bradeGithub/DSH-Plugins-Marketplace": "Kept out of the star board: a DSH plugin market / directory / store — the market cannot include another market. Stays in the catalog.",
"Britneycode/dsh-update-center": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"broody-cascarillabark100/DeepSeek-Harness-Desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"bruc3van/awesome-dsh-plugin": "Kept out of the star board: this list itself (an awesome-list / directory site), not a plugin; the board does not rank itself. Stays in the catalog.",
"Capacious-diamondweddinganniversary929/DeepSeekHarnessDesktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Ch0uHuaZ1/DeepSeek-Harness-Desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"chainbase-labs/Agentkey": "Kept out of the star board: stars come from the generic cross-agent connectivity plugin; DSH is one of several host integrations. Stays in the catalog.",
"Che-Year/dsh-pet-lulu": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Chen-YiY/dsh-app": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"chen7712369/dsh-web-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"cheng249hx/dsh-one-click-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"chengxiaosheng/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ChenSiyun1234/dsh-tray-windows": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"chentao326/dsh-gui": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"cherrchen/deepseek-harness-electron": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ChisaAlter/Deepseek-Harness-Desktop": "Kept out of the star board: a desktop shell/launcher. Stays in the catalog.",
"chnjames/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"chokwinlee/deepseek-harness-desktop": "Kept out of the star board: a desktop host with a native SwiftUI remote app. Stays in the catalog.",
"chuspeeism/dashi-taskboard": "Kept out of the star board: stars accrued as a Codex-first taskboard; the DeepSeek Harness integration is one of several add-on integrations. Stays in the catalog.",
"chyra-moon/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Clarklevis1995/dsh-mobile": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"cloveric/tarocub": "Kept out of the star board: a standalone local agent gateway hosting multiple agent CLIs, not an installable DSH plugin. Stays in the catalog.",
"cmmnhm/DeepSeek-Harness-Desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Cnkore007/dsh-Desktop-Client": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"cnskycn/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"cocode-agency/cocode": "Kept out of the star board: a ready-to-run DSH distribution (desktop GUI + TUI), not an installable DSH plugin. Stays in the catalog.",
"code-gal/dsh-ng": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"coeasy/dsh-go": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"colorfuller/dsh-app": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"condaThinker/dsh-webui-market-plugin-plus": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Corundum-Ling/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"crTnT/dsh-plugin-suite": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"csthinker/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"cuteG41cute/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"cxdyun/dsh-skills-marketplace": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"cxy9204/dsh-skill-store": "DeepSeek Harness community skill store — the market cannot include another market; stays in the catalog, excluded from the leaderboard and downstream market.",
"cyber-moshen/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"czj-git/dsh-plugin-hub": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"czzzlq/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"d4551/DeepTail": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"dabaicai001/star-dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ddll8023/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ddtcorex/dsh-maestro-ci": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"ddtcorex/dsh-maestro-config-lib": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"deepseeker-app/DeepSeeker": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"deff-C/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"deronghe/dsh-plugin-desktop-installer": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"dfzjb/whalemaid-desktop-pet": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"diamondfsd/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Diluka/dsh-agent-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Dinis0214/dsh-desktop-lite": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Djokovical5294/DeepSeek-Harness-Token-Free": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"dlssjdyka0019/dsh-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"DolphinMiner/deepseek-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"dphmoblie/deepseek-harness-android": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"dreamer0323/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"dretylin/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"dsh-market/dsh-market": "Kept out of the star board: a DSH plugin market / directory / store — the market cannot include another market. Stays in the catalog.",
"dsh-plugins/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"dsh-pub/dsh-pub": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"dsh-research/dsh-research": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"dsh-tauri-desk/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher rather than an installable DSH plugin. Stays in the catalog.",
"dshhub-co/dshhub-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"DshMarketPlace/dsh-plugins-store": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"DshMarketPlace/dshmarketplace": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"DshMarketPlace/dshmarketplace-cli": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"DshMarketPlace/dshmarketplace-py": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"dshplugin-app/dsh-plugin-registry": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"dshplugin/dsh-plugin-hub": "Kept out of the star board: a DSH plugin market / directory / store — the market cannot include another market. Stays in the catalog.",
"dshworks/plugins": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"duanjiangDJ/dsh-gui": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"DuckLing-IO/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"duhu2000/dsh-mcp-connector": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"dujar/dsh-community-plugins": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Dylan37670/dsh-plugin-panel": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"EasyTZ/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"enoughpower/dsh-desktop-mac": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"entireyu/dsh-whalito-desk": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"EricXu20266/dsh-discovery": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"EricXu20266/dsh-gui": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"EternalNight996/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Evan1u/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"evlon/deepseek-harness-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"FALda-da/ds-desktop-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"fan969690/dsh-desktop-app": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"fan969690/dsh-desktop-tools": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"fancr-code/dsh-tray-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"fangqian616/consensus-pipeline": "Kept out of the star board: stars accrued as a standalone Streamlit multi-agent academic-research framework; the DSH plugin is a subdirectory integration. Stays in the catalog.",
"fazhu4/dsh-plugin-studio": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"feiyang-dev/DeepSeek-Harness-Desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"fellow99/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"festoney8/deepseek-harness-GUI": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"FlashingChen/dsh-desktop-hub": "Kept out of the star board: an Electron desktop management console. Stays in the catalog.",
"flee42/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"FlipFlopszzz/dsh-studio": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"frankstanmonster/dsh-overlay_companion": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"fuchao2pku/dsh-experts": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"fufankeji/deepseek-harness-studio": "Kept out of the star board: a desktop client with a built-in plugin market. Stays in the catalog.",
"fufufu11/dsh-oneclick-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Funnyvalentine00/dsh-desktop-shell": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"FuqiangCraft/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Gamitrd6316/dsh-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"geminiai19811-jpg/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Georgehaoren/DSH-WhaleConsole": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"GGigHub/dsh-plugin-index": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Ghost011118/dsh-plugin-marketplace": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"GHYHC/dsh-starter": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"gityuanbao/DSH-Plugins": "Kept out of the star board: a DSH plugin market / directory / store — the market cannot include another market. Stays in the catalog.",
"GreatV/oardsh": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Gru110110110/dsh-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"guoxiucai/dsh-code": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"H2O-MERO/DeepSeek-Harness-GUI": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"habushe/dsh-oneclick-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"hahaha-taotao/dsh-browser-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"haibala-aii/dsh-extensions-extensionshub": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"hajimilvdou/dsh-storecloud": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Hanmingh/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"hanwuji1/dsh-web-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"HanzhiOvO/deepseek-harness-shell": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"HaoyueQin/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"harismuna5268/DSH-Desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"harness-home/harness-ai-app": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"harness-home/harness-ai-desktop": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Harzva/harness-flow-hub": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"helays/dsh-tray": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"hialuoy/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"hibays/DSHL": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"hjdhnx/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"hjq1219/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"hoangdtdoothanh-svg/dsh-whale-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Hope-Phenom/dsh-desktop-tray": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"hoyyang/dsh-mall": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"hpyer/dsh-for-mac": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"HQ1995/deepseek-code": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"hskelp9527-pixel/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"HTUP1/dsh-desktop-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"huangruiteng/loopx": "Kept out of the star board: stars accrued as a generic long-horizon agent control plane for Codex, Claude Code, Cursor and other harnesses; the DSH plugin is a recent addition. Stays in the catalog.",
"HuanLinOTO/dsh-plugin-pet-rs": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"huantian1223/dsh_desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"huchunlinnk/deepseek-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"HUITianYi/dsh-whale-desktop-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"hunterxxn/deep-flow": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"hupoliuguang/dsh-web-start": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"hust-open-atom-club/oh-dsh": "Kept out of the star board: a DSH runtime distribution with a desktop shell, not an installable DSH plugin. Stays in the catalog.",
"huyang218/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"hx876298682-tech/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Hyna-hla/dsh-remote": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"hyperion2144/dsh-desktop-tauriapp": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"hyqibot/DeepSeek-Harness-Token-Free": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ikashana/dsh-desktop-shell": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"imaginevoldermert/dsh-minimal-launcher-plugin": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"IMHaoyan/deepseek-harness-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"imsai-sh/dsh-1024store": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"InkWord01/DeepSeekHarness----Desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Isilsolme/dsh-splash-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"iuikj/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"iyam-x/iyam-dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Jackywxsz/DSH-Creator": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"JasperGuWP/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Jedeiah/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Jesse-njx/dsh-plugin-manager-registry": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"jiangnanquan/dsh-ux": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"jiefing/HDSL": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"jing-hy/dsh-unified-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"jingshang12/dsh-web-quick-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"jingyunstudio/jingyun-dsh": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"jiuge2467/DSH-Desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"jo32/DeepDeck": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"JochenYang/dsh-app": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Jonah-Wu23/dsh-fullstack-pack": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"JR-JR07/dsh-modlens-installer": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"JustGenius-s/DSH-Desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"jw0507/dsh-shell": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"KDronin/dsh-tray": "Kept out of the star board: a desktop tray launcher for DeepSeek Harness, not an installable DSH plugin. Stays in the catalog.",
"keke-shy/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"kelai141/dsh-mobile-apk": "Kept out of the star board: an Android shell APK packaging a WebView + Termux runtime. Stays in the catalog.",
"keman-ai/dsh-skin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"kevenxz/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"KhanZou/Deepseek-Harness-as-Desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"KimFischer99/DeepSeek-Harness-Desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"kimiya1010/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"kingOfSoySauce/dsh-skin-market": "Kept out of the star board: a DSH skin market/store client — the market cannot include another market. Stays in the catalog.",
"Kitup666/dsh-plugin-kmanager": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"kkaktus463/dsh-plugin-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"kkkkkklze/dsh-plugin-manager": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"KnCRJVirX/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"KokuYu-sysu/dsh-market-desktop": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"koompi/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"kriskwok/dsh-ios-app": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"kunge6702/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"LamplitIsles/dsh-companion": "Kept out of the star board: a standalone Svelte frontend client for dsh, not an installable DSH plugin. Stays in the catalog.",
"LaplaceYoung/oh-my-dsh": "Kept out of the star board: a DSH plugin market / directory / store — the market cannot include another market. Stays in the catalog.",
"lcb522/dsh-harness-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"lencx/Minke": "Kept out of the star board: a desktop client, not an installable DSH plugin. Stays in the catalog.",
"leonardoxr/dsh-native": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"leonardoxr/dsh-plugin-manager": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Lheyang/orca-dsh-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"liangyou09/lyshell": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Liaominduyh/GitHub-dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"liguobao/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"lijian-ui/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"lijma/dsh-plugin-marketplace": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Linductor-alkaid/dsh_tui": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"linhut/dsh-manager": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Links2008/DeepSeek-Harness-Desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"lionheartjie/DSH_Shell": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"LiuJunheng/DeepSeekHarnessGreen": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"liustack/summono": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Lixiaoyiao/deepseek-harness-action": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"liyu34/dsh-wsl-tray": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"llyyhh0487/desk-harness": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"loguhan/dsh-workshop": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"loiasdi/dsh-prompthub-ecosystem": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"loker66fan/dsh-market-github": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"longyu065/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"losebird/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"louishzwang/dsh-web-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"lovstudio/dsh-plugin-marketplace": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"LQing2018/dsh-desktop-client": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"LRainner/AgentCat": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Lsnsh/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Luaphes/dsh-plugins-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"lunaship/dsh-links": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"luoboovo/deepseek-harness-client": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"luoyan96/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"LvienOeria/dsh-desktop-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"LvienOeria/dsh-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"LvsH13/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"LVSUGARS/dsh-web-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"LX2000WASD/dsh-web-plugin-manager": "Kept out of the star board: a DSH plugin market / directory / store — the market cannot include another market. Stays in the catalog.",
"Lxiayu/DshCockpit": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"lyuwen/dsh-tui": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Lzhimie/DeepSeek-Harness-NB": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"majiayu000/dsh-plugin-registry": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"maoruoyu/dsh-plugin-store": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"marcon0203/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"MarecGents/deepseek-harness-hub": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Max-Null/dsh-plugin-center": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"MAXeaglet/dsh-plugin-manager": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"mccxs/dsh-client-plugin-manager": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"mel0nyrame/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"mengxingGG/dsh-plugin-marketplace": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"MerlinShieh/deepseek-herness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"MichengAI/dsh-codex-desktop": "Kept out of the star board: a desktop shell/launcher. Stays in the catalog.",
"miku00039-01/dsh-whale-pet": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"minorsnownight/dsh-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"miracle-ai-studio/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"mishibeikejie/zat-dsh-engine": "Kept out of the star board: a DSH plugin market / directory / store — the market cannot include another market. Stays in the catalog.",
"Missher12/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"MochiNek0/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"modelbus/deepseek-harness-pro": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Modole/dsh-plugin-market-laoboshi": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"MoneShadow/DeepSeek-Harness-linux-": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"MonshinYu/dsh-bun-compat-patch": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"MonshinYu/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"moonwellxh/DSH-Launcher": "Kept out of the star board: a desktop shell/launcher/client (Windows one-click tray launcher generator), not an installable DSH plugin. Stays in the catalog.",
"mos-7/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"mrbbbaixue/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"MrMu666/dsh-app": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Muelsysel/DeepSeek-Harness-Desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"mwbimh/dsh-atelier": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"mycherish/dsh-bridge": "Kept out of the star board: a native macOS menu-bar companion app for DeepSeek Harness, not an installable DSH plugin. Stays in the catalog.",
"myYangyunfan/dsh_desktop": "Kept out of the star board: a desktop shell/launcher/client (Tauri app bundling the dsh runtime and official plugins), not an installable DSH plugin. Stays in the catalog.",
"nabin-qq273274877/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"nanbbb/dsh-plus": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"NanmiCoder/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"nanshan1995/DSH-Plugin-Market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"NattoCB/dsh-plugin-petdex-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"newbieYi/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"nexsjournal/dsh-desktop-app": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Nexus-Aethra/DSHBox": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"niceberserker38/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"nihaozyj7/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ningbainb/deepseek-harness-desktop": "Kept out of the star board: a Windows desktop client / GUI for DeepSeek Harness, not an installable DSH plugin. Stays in the catalog.",
"ningbonb/dsh-web-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"nixiaohao/DeepSeek-Desktop-Studio": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"no1xsyzy/dsh-webview-wrapper": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"NOirBRight/dsh-mobile": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"NokorinNishikino/kidai-plugin-market-hub": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"NokorinNishikino/kidai-plugin-remote-client": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Noob-stupid/dsh-plugin-hub": "Kept out of the star board: a DSH plugin market / directory / store — the market cannot include another market. Stays in the catalog.",
"nxz1026/dsh-tray": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"o-Sakurajimamai-o/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"oa1mgo/dshplugin": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"oioioioioioioioioioio/oi-dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Oissp/harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"oli-bot/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Olina1Ye/internal-skill-workshop-plugin": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"omdsh-plugins/omdsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"omdsh-plugins/omdsh-plughub": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"omdsh-plugins/omdsh-webapp": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"omdsh-plugins/registry": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Onenightcarnival/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"oodzchen/deepseek-harness-gui": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"op7418/pilot-harness": "Kept out of the star board: a desktop client/shell for DeepSeek Harness. Stays in the catalog.",
"Oscar-Williams/dsh-deepatlas": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"osmondlee/dsh-shell": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ouyangyipeng/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ouyangyipeng/dsh-marketplace": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"oxgbl/dsh-no-cmd-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"oxygenaaaaa/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"oykb58246/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Pagemalthusian934/deepseek-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"pax-beehive/dsh-hub-cli": "A plugin market / store / directory — the market cannot include another market; stays in the catalog, excluded from the leaderboard and downstream market.",
"pbwheel/dsh-agency-market": "Kept out of the star board: an expert/persona market inside DSH — the market cannot include another market. Stays in the catalog.",
"peiqi10086/dsh-skills-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"penglai-doll/LocalWhale": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"penglai-doll/LocalWhale-macOS": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Pericardiac-podzolsoil527/deepseek-plugin-store": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"PetCT/dsh-plugin-marketplace": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"phil616/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"picoaide/picoaide-harness": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"PineKings/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Plocr/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Pluszzz/dsh-desktop-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"pn1024/dsh-skill-hub": "Kept out of the star board: a skill marketplace (SkillHub + ClawHub) with one-click install — the market cannot include another market. Stays in the catalog.",
"Propheta114/dsh-icon-manager": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"q2224273481-afk/cc-dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"QCYTSN/dsh-dafeiyu": "Kept out of the star board: a desktop companion shell, not an installable DSH plugin. Stays in the catalog.",
"qichengxiaoqi/dsh-lancher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Qidianyan/dshctl": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"QinpanWan/dsh-harmonyos-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"qinyre/dsh-Desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"QQ-M/dsh-skill-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Qtfycg/windows-portable": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"qwert702/dsh-community": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"qzhqzh/dsh-quickstart": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"R2h1/deepseek-harness-app": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"RAFOLIE/dsh-desktop-windowos": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"railgun0325/dsh-phone": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"RayJinStudio/Deepseek_Harness_QTDesktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ReachGa0/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"reimu-create/deepseek-harness-portable": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"rekey/dsh-link": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Rewmington/deskwhale-harness": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"rirko/dsh-melody-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"rockeymen/dsh-plugins": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"rogerhorsley/dsh_for_mac": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"rootkiller6788/dsh-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Roxy-gl373/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"rpvvn/EasyDSH": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Ruler4396/dsh-launcher": "Kept out of the star board: a desktop launcher, not an installable DSH plugin. Stays in the catalog.",
"runfali/dsh-config-center": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"ryjgb13500-a11y/dsh-desktop-pet": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"S-AN-Shu/dsh-skill-manager": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"s3yf1337/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"sagirimo/BioDSH": "Kept out of the star board: a desktop app shell around DeepSeek Harness with a built-in skill store — the market cannot include another market. Stays in the catalog.",
"Salbt/my-dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"sandbaseai/dsh-plugin-store": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Sanqi-normal/dsh-webui-market-plugin": "Kept out of the star board: a DSH plugin market / directory / store — the market cannot include another market. Stays in the catalog.",
"sb1733831438-maker/DSH-closerAI": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"SC0321/harnessbay": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Scorp1o117/dsh-enhancement-suite": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Scorp1o117/dsh-plugin-marketplace": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"SCSpotato/dsh-remote": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"See-Sol-Lab/DeepSeekGUI": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"shangshuo1/DSH-Virtual": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"shaoxia20240902/dsh-plugin-leaderboard": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"shaun5297/dsh-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"shendeguize/Remote_DSH_Center": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"shengmk/godsh": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"shiyi-0x7f/dsh-client-plugin-store": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"sidleo/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"SimonMedy/DSH-Mobile": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"simune/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Sivan757/dsh-agent-plugins-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"sjk1949/orca-cat": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"sky-unicorn/dsh-enhanced-plugins": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"sliverp/dsh-hub-plugin": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"smallhug/dsh-tauri": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"smanx/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"SnowCrescenter-tech/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"SnowCrescenter-tech/dsh-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"snzhi000-sys/harness-macos-desktop-plugin-suite": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Socialist-Sister/dsh-deck": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"sol5766/dshm": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"SparkWeiyang/DeepseekHarness-AndroidClient": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Sparrived/DSH-Deeptop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"sperictao/dsh-pro-max": "Kept out of the star board: a desktop launcher with a built-in plugin marketplace — the market cannot include another market. Stays in the catalog.",
"springbrand-lab/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"sqs404/dsh-portable": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"sstar16/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"staff-os/dsh-workbench": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"star-chase/dsh-web-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"StarPivotNet/dsh-plugins-public": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"stimQQ/dshplugins": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"striveh/dsh-capability-resolver": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"strukto-ai/mirage": "Kept out of the star board: stars come from the generic multi-agent virtual-filesystem product; the DSH plugin (@struktoai/mirage-dsh) is a subpackage of this repo and stays in the catalog.",
"stvlynn/dsh.fish": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"SuiBbinggan/dsh-cn-plugin-center": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"sulfide2085/dsh-skill-manager": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"summer-521/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"summer-521/deepseek-harness-swift": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"sunkeycn/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Sunshine-oneday/DSH-Desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"SZMY-haruhi/dsh-desktop-shell": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"tanleikingsley913/dsh-management-suite": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"TaoruiLiu19/DSHwork": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"TaoSmile/dsh-shell": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"TAOxxx7/dsh-plugin-manager": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"taskschd1145/deepseek-harness-clean": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"TeaClearInkII/DSH-Marketplaces-Nexus": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Thanksgiver233/dsh-mobile": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ther000/DshWebLauncher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"TheYoungChen/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"thisissevenpoints/DeepSeek-Harness-Local-svpts": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"thuang3316/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Tiee7/EzDSH": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"titanwings/distilly": "Kept out of the star board: stars come from the generic cross-agent person-profile toolkit (formerly Colleague Skill); DSH skill-discovery support is one of many host integrations. Stays in the catalog.",
"ToBeWin/DSH-Plugin-Market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"TommyFang2077/dsh-easy-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Toukaiteio/dsh-plugin-installer": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"tttnny/DSH-Launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"tuofangzhe/dsh-plugins": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"tuterx/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"tyouter/dsh-remote-access": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ukinch605/awesome-dsh-hub": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Ultmebius/universal-plugin-hub": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"uluckystar/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"unSdark/deepseek-harness-windows-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"unStone/dsh-xray": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"usertianziyang/DSH-Plugin-Hub": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"V-dev-388/DSH-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"vibeinging/dsh-desktop": "Kept out of the star board: a desktop workspace with a built-in plugin marketplace. Stays in the catalog.",
"Viveksssss/DeepSeek-harness-marketplace": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Viviana-Luna/dsh-window": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Void0312Aurora/dsh-desktop-electron": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"vonweller/dsh-skillhub": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"vritser/dsh-emacs": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"w1661884010-jpg/dsh-plugin-github-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"w2112515/dsh-plugin-marketplace": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"wangxilhy23/dsh-wx-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"wave-av/wave-runtime-registry": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"webkong/dsh-plugin-manager": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"wecode-ai/Wegent": "Kept out of the star board: stars accrued as the standalone Wegent AI work system (Electron desktop workbench + self-hostable web platform) with DSH as an embedded runtime, not an installable DSH plugin. Stays in the catalog.",
"weibaohui/experts-management": "Kept out of the star board: an expert market that browses/installs external expert presets — the market cannot include another market. Stays in the catalog.",
"weibaohui/skills-management": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"weichi-ai/dshd": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"WEP-56/DSH-Launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"wess09/DeepSeekHarnessDesktop": "Kept out of the star board: a desktop shell/launcher. Stays in the catalog.",
"westhack/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"WhaleHarness/WhaleHarness": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"whitelonng/dshcode": "Kept out of the star board: a desktop companion app, not an installable DSH plugin. Stays in the catalog.",
"Wine-Cupable/dsh-plugin-marketplace": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"wink-run/dsh-plugin-store": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"wishesl/dsh-launcher": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"wjk-dot/dsh-desktop-pet": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"WJZ-P/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"worldfunction4/dsh-desk": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"wormggmm/dsh-booster": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"wuxiaoji/Dsh_Desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"wuxingyuyouxing/DeepSeek-Harness-Manager": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"wuyuzi-luo/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"wyf-777/deepseek-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"x102201/deepseek-harness-helper": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"xDylanLong/dsh-snapmarketing": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"xhvdhczd/dsh-plugin-marketplace": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"xiangshangya/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"xiaowei2025cqu23phy/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"xiaoyuxiaoyuqwq/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"xiincs/deepseek-harness-desktop": "Kept out of the star board: a Tauri desktop shell/wrapper. Stays in the catalog.",
"xiuxxx0/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"XSakura666/dsh-plugin-ChronoAgent": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"xtxo/dsh-ui": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"xuan-ao-1/deepseek-harness-workbench": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"xuanyuying/dsh-mobile": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"xuanyvne/DSHLauncher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"xuboboo/dsh-gui": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"xwtaidev/dsh-app": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"xxccdl/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"xxccdl/DeepSeek-Harness-Mobile": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"XXLxhPLMM/dsh-start": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"yangdongzhen590/dsh-knj-extension-center": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"yaotongsb/dsh-phosphor": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ydhrdh/dsh-marketplace": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"YELEBAI/dsh-plugin-marketplace": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"YgtqRun/Harnex": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"yhbd-top/dsh-plugin-top": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"yijigao/deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"yiqizhuapangxiema/harness-plugin-store-optimized": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"yjh051108/dsh-router-standard": "Kept out of the star board: merged into yjh051108/dsh-routing-suite (single-repo consolidation); this repo is a historical mirror/archive. Stays in the catalog.",
"ylw-a/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"youridol/dsh-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"yu-wenchao/deepseek-harness-desktop-Install": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Yuel25/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"yujianjian1013/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"yunhuantian/dsh-plugin-hub": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"YunlongL-byte/dsh-launcher": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"yunniees/DSH-Plugin-Manager": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"yunyunyunyunsuan/dsh-plugin-radar": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"yuye05/dsh-monitor": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"yuzhichenai/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"yxccai/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"yyyyukari/dsh-plugin-workshop": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Zara-Siwei/dsh-float": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"zdjmrq/dsh-shell": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"zeckauh/DSH_Desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Zenith-Lxz/dsh-foundry": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"zerorigin-studio/dsh-desktop-shell": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"zhaimingyou/dsh.plus": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"zhang66633/dsh-plugin-installer": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"zhangzheng25/dsh-minimal-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"Zhanxueyou/dsh-plugin-manager": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"zhaoxuanZzz/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"zhenghaoyang24/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"zhengjy01/dsh-start": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"zhu1090093659/dsh-web": "Kept out of the star board: a plugin aggregation package distributed through its own workshop market (dsh-market.com) — the market cannot include another market. Stays in the catalog.",
"zhuoxuanliu53-svg/dsh-plugin-market": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"zilliztech/memsearch": "Kept out of the star board: stars come from the cross-platform agent-memory product; the DSH plugin is one of several platform integrations. Stays in the catalog.",
"ZK-Andy/dotnet-deepseek-harness-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"zneoxlab/deepseek-harness-app": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"zoahdev/dsh-ecosystem": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"zoahdev/dsh-plugin-doctor-action": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"zoahdev/dsh-poison-guard-action": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"zoahdev/dsh-subscribe": "Kept out of the star board: a plugin market / store / directory — the market cannot include another market. Stays in the catalog.",
"Zomcxj/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"zoomc/dshpilot": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"zouzhe1/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ZPA76/deepseek-pa-dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"zrt-ai-lab/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"zsyu9779/dsh-desktop": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"ztmajor/DSCoder": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog.",
"zxheyi/dsh-work": "Kept out of the star board: a desktop shell/launcher/client, not an installable DSH plugin. Stays in the catalog."
},
"excluded_repos": {
"0326/dsh-plugin-market": "DSH plugin marketplace/store website, not an installable plugin.",
"0xrushmoon/dsh-plugin": "Not a DSH plugin — an empty placeholder repository.",
"0xsline/awesome-deepseek-harness": "Not a DSH plugin — a curated plugin list/directory.",
"270027qw/deepseek-dsh-NX": "A Siemens NX design Copilot tool, not a DSH plugin.",
"834063245-creator/HoloGram": "Not a DSH plugin — a language-agnostic 3D code dependency graph generator; rides the dsh-plugin topic.",
"863683348/dsh-project": "A lightweight DSH plugin host (platform), not an installable DSH plugin.",
"8b-is/deepsiper-enthea": "Not a DSH plugin — a fork of the DeepSeek Harness platform itself (sovereign LLM evaluation harness); excluded from the catalog.",
"AdamPlatin123/awesome-dsh-plugins": "Not a DSH plugin — a plugin-catalog site that tags itself with the dsh-plugin topic.",
"AdamPlatin123/dsh-plugin-radar": "Not a DSH plugin — an automated DSH plugin ecosystem radar whose output is a plugin catalog/leaderboard (a build artifact feeding downstream directory sites).",
"agent-plaza/agent-plaza": "Not a DSH plugin — a generic public commons for AI agents.",
"agentrq/agentrq": "Not a DSH plugin — a human-in-the-loop task-manager platform for 'any harness'; DSH is incidental.",
"airsota/talentme-mcp": "Not a DSH plugin — a generic career-coach MCP server for AI assistants.",
"aiworkskills/deepseek-harness-server": "A multi-user DSH hosting/server platform, not an installable DSH plugin.",
"ajhcs/Codex-Co-Engineer": "Codex-first control plane that treats DeepSeek Harness as a peer worker, not a DSH plugin.",
"Akimiya-z/codex-guard": "Not a DSH plugin — a GitHub Action quality gate for AI-generated PRs; rides the dsh-plugin topic.",
"akqwpeter-prog/skill-bartender": "A generic multi-host skill tool (DSH · Claude Code · Codex), not DSH-specific.",
"alaliqing/claude-paper": "Not a DSH plugin — a Claude Code plugin.",
"Alex-Yanggg/awesome-DSH-plugin": "Not a DSH plugin — a curated plugin list/directory.",
"alexchen5/research-epic-manager": "Not a DSH plugin — a generic agent-skills pack for research-project tracking; no DSH install path.",
"ali-meoo/meoo-cli": "Not a DSH plugin — the meoo cloud CLI.",
"alib8b8/aflare": "Not a DSH plugin — a standalone local-first automation agent (Go/ReAct/MCP).",
"alibaba/anolisa": "Not a DSH plugin — a generic agentic-OS/terminal infrastructure layer with no DSH integration path; excluded from the catalog.",
"alibaba/loongsuite-pilot": "Not a DSH plugin — a generic telemetry collector for Claude Code/Codex/Cursor and other CLIs; rides the dsh-plugin topic.",
"Alisa0808/vox-director": "Not a DSH plugin — a generic agent video skill for Claude Code/Codex with no DSH integration path; excluded from the catalog.",
"AlliotTech/deepseek-harness-docker": "Not an installable DSH plugin — deployment packaging (Docker/K8s/ops tooling)",
"AlloyPlane/gitguard": "Not a DSH plugin — a standalone git-hooks security tool riding the topic; excluded from the catalog.",
"alvinunreal/openpets": "Not a DSH plugin — a generic desktop companion platform with no DSH integration path in its README; excluded from the catalog.",
"alxshelepenok/grove": "Not a DSH plugin — a generic AI-agent workflow protocol (Rust) with no DSH integration anywhere in the README; excluded from the catalog.",
"Alyosha28/deep_option": "Not a DSH plugin — a stock/options research agent.",
"amruthpillai/reactive-resume": "Not a DSH plugin — a resume-builder web app that rides the dsh-plugin topic for reach.",
"anbeime/skill": "Not a DSH plugin — a multi-platform agent-skill store/directory that auto-scrapes and repackages skills from many ecosystems.",
"Andiii208/gzhflow": "Not a DSH plugin — a cross-agent WeChat official-account publishing workflow framework (AGENTS.md-based CLI for many agents).",
"Anil-matcha/awesome-dsh-plugin": "Not a DSH plugin — a curated plugin list/directory.",
"Anionex/agent-vision-toolkit": "Not a DSH plugin — a generic vision toolkit for Codex/Claude Code/OpenCode; the DSH-native port is dsh-vision-toolkit.",
"Anlushu/hkinsure": "A generic Hong Kong insurance MCP server for any agent, not DSH-specific.",
"anywhere-labs/dsh-desktop": "Blacklisted for editorial reasons — a desktop client originally forked from the official deepseek-harness source with the fork link detached; renamed from anywhere-labs/deepseek-harness-desktop and re-entered the catalog under the new name; removed from recommendations, the leaderboard, and the catalog.",
"arch3rPro/dsh-skills": "Not a DSH plugin — a generic coding-agent skills pack (npx skills / Claude Code installs) with no DSH install path, riding the topic; excluded from the catalog.",
"Ariestar/sivtr": "Not a DSH plugin — a generic Rust agent-memory workspace CLI + VS Code extension.",
"arkyu2077/awesome-dsh-plugin": "Not a DSH plugin — a curated plugin list/directory.",
"ArmyWas/dsh-plugin-reducer": "Not a DSH plugin — an external diagnostic CLI, not installable.",
"Arnoldkevin/prismrelay-mcp": "Not a DSH plugin — a generic vision MCP server.",
"artec/clat": "Not a DSH plugin — a standalone CLI agent runtime with a DSH adapter.",
"AtlasCloudAI/atlas-cloud-skills": "Not a DSH plugin — Atlas Cloud skills aimed at Claude Code/Codex/Gemini CLI.",
"AtlasCloudAI/mcp-server": "Not a DSH plugin — a generic MCP server for the Atlas Cloud API platform; rides the dsh-plugin topic.",
"awesimon/research-agent-harness": "Not a DSH plugin — its own plugin-driven runtime for research agents (a separate harness).",
"awesome-deepseekharness/awesome-deepseek-harness": "Not a DSH plugin — a curated plugin list/directory.",
"awesome-dsh-plugin/awesome-dsh-plugin": "Not a DSH plugin — a plugin-catalog site (a fork of this list).",
"B1lli/dsh-plugin-bench": "Not a DSH plugin — a plugin quality-scorecard CLI, not installable.",
"baihejiangnan/dsh-plugin-pack": "Not a DSH plugin — a plugin-pack manifest spec and publishing guide; nothing installable.",
"baihejiangnan/dsh-plugin-pack-ai-share-template": "Not a DSH plugin — an AI prompt-template document for generating plugin packs.",
"baixinghao/intent-gate": "Not a DSH plugin — a Claude Code plugin + MCP server.",
"Bandersnatch0x/design-playbook": "Not a DSH plugin — a Claude Code design plugin.",
"baobaolaodie/dsh-tui-vscode": "Not an installable DSH plugin — a VS Code companion extension for dsh-TUI",
"beancookie/awesome-dsh-plugin": "Not a DSH plugin — a curated plugin list/directory.",
"BenjaminSHI4008/deepseek-pet-Seeki": "Not a DSH plugin — a standalone desktop pet app.",
"billLiao/awesome-dsh-plugin": "Not a DSH plugin — a curated plugin list/directory.",
"BingoAgentTouch/Personal_MCP": "Personal MCP-server dump; generic MCP services with no clear DSH function.",
"bob334477/harness-safe-exhaust-probe-qs": "Not a DSH plugin — a plugin *spec proposal* / discussion document (\"no exploit code; only plugin spec & discussion hooks\"); nothing installable.",
"boheastill/phone-eye": "Not a DSH plugin — a generic adb phone-control MCP server for any MCP client.",
"botaochen840-lgtm/fatfish-pet-smart-companion": "Not a DSH plugin — a standalone desktop pet app.",
"bpc-oss/chrome-faithful": "Generic Chrome-control MCP server plus MV3 extension for any agent, not DSH-specific.",
"brokge/gold-monitor": "Gold-price monitor dashboard; the DSH web plugin is only a bundled add-on, not the repo's primary purpose.",
"BrokkAi/bifrost": "Not a DSH plugin — a generic multi-language static-analysis engine for agents and editors; no DSH integration path; rides the dsh-plugin topic.",
"bruc3van/dsh-doctor": "Not a DSH plugin — a companion diagnostic CLI installed via npm -g/npx, with no dsh plugin add install path or bundle manifest.",
"BugraAkdemir/gosearch": "Not a DSH plugin — a Go web-search library; rides the dsh-plugin topic.",
"c0nfident/github-slideshow": "Not a DSH plugin — a GitHub Learning Lab training repository.",
"cccakeee/awesome-dsh-plugins": "Not a DSH plugin — a curated plugin list/directory.",
"cerebrixos-org/tuning-engines-cli": "Not a DSH plugin — a generic LLM fine-tuning CLI/MCP server.",
"CH3SH-LC/dsh-plugins-CH3SH": "A plugin directory/index for the author's own plugins, not an installable plugin.",
"chengyuanjie455-cmd/writing-full-workflow": "Not a DSH plugin — a Codex skill for Chinese novel writing with no DSH integration path; riding the dsh topics; excluded from the catalog.",
"ChenSheg/knowledge-from-literature-and-bilibili": "Not a DSH plugin — a generic literature search toolbox.",
"chenshutian9610/deepseek-harness-plugin-list": "A personal plugin list/index, not an installable DSH plugin.",
"chenyedamw/dropshipping-product-scout": "Not a DSH plugin — a remote dropshipping MCP service connector for Claude Code and any MCP client.",
"chenyinrusi/dsh-engineering-skills": "Generic markdown skills aimed at multiple agents (DeepSeek Harness, Claude Code, Codex) with no DSH install path.",
"chenyinrusi/dsh-kanban-mcp": "Generic filesystem kanban MCP server that works with any MCP client, not DSH-specific.",
"Chinesezjc/dsh-tool-owned-render": "Not a DSH plugin — a design note and interactive prototype for tool-result rendering.",
"civaapple-alt/mini-dsh": "Not an installable DSH plugin — an educational re-implementation/learning guide of the DSH platform",
"civaapple-alt/pi-cordis": "Not a DSH plugin — a standalone Cordis-based terminal coding agent with its own CLI and marketplace (platform/fork), not installable into DSH; same rider as civaapple-alt/pi-dsh.",
"civaapple-alt/pi-dsh": "Not a DSH plugin — a standalone Cordis/DSH-based AI coding-agent harness with its own CLI and Web GUI (platform/fork), not installable into DSH; excluded from the catalog.",
"ciyuan1234/MCM_skills": "Not a DSH plugin — generic math-modeling skills aimed at Claude Code / Codex / opencode with no DSH install path.",
"CJackHwang/Succinix": "Not a DSH plugin — a browser-native Linux environment (WebContainer) with no DSH integration, riding the topic; excluded from the catalog.",
"classic-takeoff/DSH_plugins": "Not a DSH plugin — an empty plugin-collection stub with no installable plugin.",
"ClawsJoy/exam-prep-extension": "Not a DSH plugin — a Chrome extension exam-prep study tool riding the topic.",
"climpea/daily-news-digest": "Generic daily-news agent skill (Claude-skill format) that merely mentions DSH as one usage.",
"Co-Engram/Co-Engram": "Generic team-memory system for any agent; no DSH-specific install path.",
"CoaseEdge/AgentNavi": "Generic agent navigation/memory tool for many agents; DSH is only one of several topic tags.",
"cocofhu/dsh-testsuite": "Not an installable DSH plugin — a Docker test-environment manager for plugin testing",
"coeasy/oh-my-dsh": "Not an installable DSH plugin — an unofficial VS Code/Cursor extension + Electron desktop client",
"cofy-x/axern": "Not a DSH plugin — agent sandbox infrastructure.",
"ConradLu2740/ProactiveAgent": "Not a DSH plugin — a generic cross-tool MCP memory server for Claude Code/Kimi Code/Cline/Cursor/Proma with no DSH integration; rides the dsh-plugin topic; excluded from the catalog.",
"coolbat/awesome-dsh-plugins": "Not a DSH plugin — a curated plugin list/directory.",
"cooljser/dsh-plugin-portal": "Not a DSH plugin — a static directory portal for a curated list.",
"Coprexist/AIsChat": "Not a DSH plugin — a standalone AI group-chat framework.",
"cosyncing/cosyncing": "Not a DSH plugin — a generic cross-CLI agent orchestration platform (Claude Code/Codex/OpenCode/Pi); rides the dsh-plugin topic.",
"crafter-station/petdex": "Not a DSH plugin — a multi-agent pet gallery/CLI/desktop app aimed primarily at Codex; rides the dsh-plugin topic for reach.",
"creght-dev/skills": "Not a DSH plugin — Codex/agent skills for the Cregh website builder; rides the dsh-plugin topic.",
"curtiseng/spatiotemporal": "Not a DSH plugin — a standalone Rust spatiotemporal-composability library with its own agent harness that merely mirrors DSH's plugin form; excluded from the catalog.",
"daha1216/dsh-plugin-collection": "Not a DSH plugin — a curated plugin list/directory.",
"daishengli/dsh-docker": "Not an installable DSH plugin — a Docker/Caddy deployment packaging of the DSH web service",
"DaYanQLQ/DSH-Shortcut": "Not a DSH plugin — a Windows desktop shortcut and launcher utility script for dsh web.",
"ddtcorex/govard": "Not a DSH plugin — a Go-based local-development orchestrator for Magento/Laravel/Symfony/WordPress stacks with no DSH content in its README; rides the dsh-plugin topic.",
"debabsah/superstack": "Not a DSH plugin — a generic multi-host engineering bench (Claude Code / Codex / Copilot / Kiro); DSH is only one of many targets.",
"deepseek-ai/deepseek-harness": "Not a plugin — the DSH platform itself.",
"delicious28/wuming-books-mcp": "Not a DSH plugin — a generic remote MCP server for Chinese-book search.",
"dennisrongo/dsh-plugins": "Not a DSH plugin — a private pnpm monorepo for the author's @dennisrongo plugins; each plugin installs separately from npm, not this repo.",
"derekhu0002/archgraph": "Not a DSH plugin — a generic architecture-graph framework for agentic engineering (global CLI).",
"Devin-AXIS/iPolloWork": "Not a DSH plugin — a standalone AI workspace (Codex alternative) that mentions DSH as one integration.",
"devLythen/dsh-docker": "Not an installable DSH plugin — deployment packaging (Docker/K8s/ops tooling)",
"diguike/book-deepseek-harness": "Not an installable DSH plugin — a book/tutorial on DSH internals and plugin development",
"directwire/culmen": "Not a DSH plugin — a generic persona-state format spec for any runtime (Claude CLI / OpenClaw / Hermes); no DSH integration path.",
"DM010727/dsh-cline": "Not an installable DSH plugin — a VS Code extension embedding the DSH agent",
"DoggyHU/dsh4vscode": "Not an installable DSH plugin — a VS Code extension",
"Dominic789654/awesome-deepseek-harness": "Not a DSH plugin — a curated plugin list/directory.",
"dongsheng123132/awesome-dsh-plugins": "Not a DSH plugin — a curated plugin list/directory.",
"DongYaoZe/texpage-bridge": "Not a DSH plugin — a local TeXPage cloud-compile bridge, not DSH-specific.",
"dorisaimpatient855/awesome-dsh-plugin": "Not a DSH plugin — a curated plugin list/directory.",
"dqsjqian/agent-guild": "Not a DSH plugin — a generic multi-agent tool with no DSH install path; excluded from the downstream market.",
"dqsjqian/Aria": "Not a DSH plugin — a C++20 MVVM framework riding the topic.",
"dqsjqian/AriaAgent": "Provider-agnostic C++20 agent framework GUI; dsh-plugin topic added for reach.",
"Dragonwinner/chromex-browser": "VS Code web-browser extension unrelated to DSH; dsh-plugin topic added for reach.",
"drewnekota/cetus": "Not a DSH plugin — a standalone macOS launcher for Codex/Claude Code/etc.; DSH is just one of the runtimes it wraps.",
"drscrewdriver/inferglow": "Not a DSH plugin — a generic Go AI base + TUI system.",
"dsh-ai-org/top-dsh-plugins": "Not a DSH plugin — a plugin ranking/leaderboard site.",
"dsh-external/awesome-dsh-plugins": "Not a DSH plugin — a curated plugin list/directory.",
"dsh-external/dsh-my-rsi": "Not a DSH plugin — an RSI experiment repository that vendors the DeepSeek Harness platform; excluded from the catalog.",
"dsh-external/dsh-plugin-guide": "Not an installable DSH plugin — a plugin-development handbook/tutorial",
"dsh-external/dsh-STAGE": "Not a DSH plugin — a framework-agnostic academic-writing toolchain; rides the dsh-plugin topic.",
"dsh-external/dsh-STAR": "Not a DSH plugin — a framework-agnostic AI-research project toolchain; rides the dsh-plugin topic.",
"dsh-plugin/dsh-plugin.github.io": "Not a DSH plugin — a community directory/workshop website.",
"DSHCorrectover/ccs-runtime-verifier": "Not a DSH plugin — a generic MCP runtime-verification skill with no DSH packaging.",
"dshplugin-app/deepseek-harness-plugins": "A maintained plugin directory/registry, not an installable plugin.",
"Ed-Marcavage/awesome-security-agent-harnesses": "Not a DSH plugin — a curated awesome-list of security agent harnesses, sandboxes, MCP servers and evals.",
"eddiehuang227-source/live-talk": "Virtual companion / talking-photo app with no DSH mention in the description.",
"edison7009/EchoBird": "Not a DSH plugin — a multi-CLI installer/launcher (Claude Code, Codex, Grok Build, DSH, …); DSH is one of many.",
"EDMOK/claude-vision-mcp": "Not a DSH plugin — a generic MCP vision server for Claude Code with no DSH integration, riding the topic; excluded from the catalog.",
"edonadei/caliper": "Not a DSH plugin — a generic skill-evaluation harness for Claude Code/Codex/Pi/Hermes.",
"Electricitysheep/dsh-handbook": "Not an installable DSH plugin — documentation/tutorial",
"ErEbusE/dsh-termux": "Not an installable DSH plugin — Termux setup scripts and guide",
"ericshang98/Perfect-Web-Clone": "Not a DSH plugin — a generic webpage-clone skill for any coding agent.",
"Ericwong5021/deepseek-plugin-store": "Not a DSH plugin — an independent plugin-store website.",
"esengine/DeepSeek-Reasonix": "Not a DSH plugin — a standalone DeepSeek-native TUI coding agent (its own product) riding the topic; excluded from the catalog.",
"EthanYoQ/AI-Novel-Writer": "Not a DSH plugin — a standalone AI novel-writing desktop app.",
"EverMind-AI/EverOS": "Not a DSH plugin — a generic cross-agent memory library/runtime with no DSH integration path in its README; excluded from the catalog.",
"EverMind-AI/SkillCorpus": "Not a DSH plugin — generic agent-skill corpus infrastructure for any host.",
"evil7/deepSea": "Not a DSH plugin — a DSH plugin-ecosystem aggregation site/marketplace.",
"evoelsewhere/evoflux": "Not a DSH plugin — a standalone local-first AI-agent workspace desktop app.",
"ewceniza9009/wilsonix-studio": "Not a DSH plugin — a desktop digital audio workstation (DAW); rides the dsh-plugin topic.",
"Exaggarate/dshpkg": "Not a DSH plugin — a standalone Python security and health audit CLI for DSH plugins.",
"fakechris/dsh-harness-ops": "Not an installable DSH plugin — deployment packaging (Docker/K8s/ops tooling)",
"Fectivnfy112357/dsh-dual-plugin-guide": "Not an installable DSH plugin — a plugin-development guide/tutorial",
"Fectivnfy112357/github-explore": "Generic gh-CLI exploration wrappers for AI coding agents, not DSH-specific.",
"feicaiclub/deepseek-harness-whitepaper": "Not an installable DSH plugin — documentation/tutorial",
"Fengze233/dsh-vscode": "Not an installable DSH plugin — a VS Code extension",
"fgm-builds/corti": "Generic Postgres-backed memory layer for AI agent swarms; DSH only in topic tags.",
"Fish121380/auto-mouse": "Not a DSH plugin — a generic Windows UI-context picker MCP tool for any MCP client.",
"fore-vip/skills": "Generic skill pack for many agents (ChatGPT, Claude Code, OpenClaw, WorkBuddy); DSH incidental.",
"foryourhealth111-pixel/Vibe-Skills": "Not a DSH plugin — a generic multi-agent skill router.",
"FQXCS/web-desktop": "Not a DSH plugin — a generic Windows desktop launcher for arbitrary web services; rides the dsh-plugin topic; excluded from the catalog.",
"FrankHu-HK/mnemosyne": "Not a DSH plugin — a generic local-first AI memory system (MCP/API/CLI) whose only DSH story is an MCP deploy doc; no dsh plugin install path.",
"freerpa/Hrequest": "Not a DSH plugin — a generic Node.js multithreaded API load-testing utility; rides the dsh-plugin topic.",
"freestylefly/awesome-gpt-image-2": "Not a DSH plugin — a GPT-Image2 prompt-engine library riding the topic.",
"freestylefly/wesight": "Not a DSH plugin — a desktop workspace for Claude Code/Codex/OpenClaw/Hermes; DSH is only in the topics.",
"futrime/webdsh": "Not a DSH plugin — a browser-only build of the DeepSeek Harness platform itself (unmodified @deepseek-ai packages, no installable plugin form); excluded from the catalog.",
"fwerkor/local-shell-mcp": "Generic local-shell MCP server for any LLM; no DSH-specific integration.",
"fxylabs/superself": "Not a DSH plugin — a generic company-state CLI for any agent.",
"GanyuanRan/Aegis": "Not a DSH plugin — a generic architecture-aware coding-agent framework aimed at Claude Code/Codex/OpenCode; rides the dsh-plugin topic.",
"GCWing/BitFun": "Not a DSH plugin — a standalone Rust desktop agent runtime; the actual DSH bridge is bobleer/dsh-acp-for-bitfun.",
"geml-spec/geml": "Not a DSH plugin — a generic agent-native document markup format/spec with an MCP server and no DSH content; excluded from the catalog.",
"getpapi/papi": "Not a DSH plugin — a generic MCP project-cycle product for any coding tool.",
"ginuim/multi-screen-wireframe": "Not a DSH plugin — a generic offline wireframe generator.",
"GIStudio/SpatialHarness": "Unrelated standalone WebGIS workbench with no DSH function; added the dsh-plugin topic for reach.",
"git-hub-cloud/workled": "Not a DSH plugin — a generic skill.",
"Glazyonyt/dsh-lowtide": "Not a DSH plugin — a standalone Windows task-scheduling desktop app that queues dsh runs off-peak; no DSH plugin install path.",
"GM-HZ/agent-dag-workflow": "Not a DSH plugin — a host-neutral durable DAG workflow SDK (npm library) embeddable in any agent host; no dsh plugin install path.",
"GoalfyAI/goalfydata": "Not a DSH plugin — a generic shared data backend for agents.",
"goatliamia/dsh-runtime": "Not a DSH plugin — an experimental runtime/capability research repository, not an installable plugin.",
"greenthree/ProbHub-skill": "Not a DSH plugin — an ACM problem-setting workflow/skill pack for Codex/Claude Code-style agents; no DSH install path.",
"GuangminJu/mellos-mapping": "Not a DSH plugin — a generic MCP dependency-map tool for Claude Code/Codex CLI with no DSH integration, riding the topic; excluded from the catalog.",
"guobinmengxiang-rgb/awesome-dsh": "A curated list/directory for DeepSeek Harness, not an installable plugin.",
"gusibi/molibot": "Not a DSH plugin — a memory-first personal AI agent (Pi-oriented); rides the dsh-plugin topic.",
"GYINT/infoseek": "Not a DSH plugin — a generic Python research/MCP workflow (SDK + MCP server + SKILL.md for any agent) riding the dsh-plugin topic; its README contains no DSH integration path.",
"h4dex/opc-nexus": "Not a DSH plugin — a generic desktop AI-agent manager (DSH not central).",
"hackerFish/dsh-lab": "A curated list/directory of tested DSH plugins, not an installable plugin.",
"HackSing/dsh-plugins": "Not a DSH plugin — a plugin-directory site.",
"hairyf/deepseek-harness-desktop": "Not a DSH plugin — a desktop client for DeepSeek Harness.",
"hanelalo/browser-bridge": "Not a DSH plugin — generic browser control for agents.",
"haodongzhang022-hue/OpenLiulan": "Not a DSH plugin — a standalone browser-automation framework (Browser-Use/Stagehand/DevTools/Playwright MCP integration); DSH is one of several integrations.",
"HarcoChen/dsh-vsc-integration": "Not an installable DSH plugin — a VS Code extension",
"harness-home/harness-ai-plugins": "Not an installable DSH plugin — an npm-registry scanner and its generated community-plugin-catalog snapshot feeding harnessai.io.",
"Harzva/dsh-plugin-registry": "Not a DSH plugin — a first-party plugin registry (data + checks), not installable.",
"hashgraph-online/hol-guard": "Generic agent antivirus/security tool for Claude Code/Codex/Cursor/etc.; no DSH install path.",
"hellowind777/helloagents": "Not a DSH plugin — a standalone autonomous agent.",
"hezi2020/dsh-plugin-wiki": "Not an installable DSH plugin — documentation/tutorial",
"High-cla/multi-skilled-repository": "Generic AI-agent skills collection targeting OpenCode/any agent, not DSH-specific.",
"hikariming/dshfind": "Not a DSH plugin — the dshfind.com community/directory site itself.",
"Hoshino-Yumetsuki/as-compatible-copilot": "Not a DSH plugin — a VS Code extension that adds OpenAI/Anthropic/Gemini-compatible providers to GitHub Copilot Chat.",
"houyanchao/chatgpt-gemini-timeline": "Not a DSH plugin — a Chrome extension for the ChatGPT/Gemini/DeepSeek chat sites, unrelated to DeepSeek Harness.",
"HOWILLMAKEIT/football-mcp": "Not a DSH plugin — a generic football-data MCP server for any MCP client.",
"huaweicloud/huaweicloud-devkit": "Not a DSH plugin — an external multi-agent cloud devkit CLI installer (OpenCode/Codex/DSH) rather than a native DSH plugin.",
"huawolf/news-agent": "Not a DSH plugin — a personal news aggregator.",
"humblebanana/open-record-replay": "Not a DSH plugin — a macOS workflow recorder for computer-use agents.",
"hyhmrright/brooks-lint": "Not a DSH plugin — a generic multi-CLI code-review skill.",
"Hyperionjust/Primordial-soup-": "Not a DSH plugin — a generic collision-based memory system.",
"hyqibot/A-share-Ai": "Unrelated A-share stock trading bot; merely added the dsh-plugin topic.",
"iamaanahmad/everything-antigravity": "Collection of agents/skills/configs for Google's Antigravity IDE, not a DSH plugin.",
"iamaanahmad/everything-codex": "Collection of OpenAI Codex skills/prompts/workflows, not a DSH plugin.",
"iamaanahmad/everything-kiro": "Kiro IDE config/skills collection; not a DSH plugin.",
"IcyCreamDAS/shidi-skill": "Not a DSH plugin — a generic AI-for-Science skill for Claude Code/Codex/OpenClaw.",
"ifrankwang/openspec-agents": "Not a DSH plugin — an agent-agnostic multi-agent workflow orchestration library; DSH is only one of several host adapters riding the topic; excluded from the catalog.",
"ihorleleka/Local-Rag-Wiki": "Not an installable DSH plugin — a Docker-hosted per-repo MCP knowledge service",
"Ikalus1988/MisakaNet": "Not a DSH plugin — a generic failure-memory MCP server for AI coding agents.",
"imsai-sh/awesome-deepseek-harness-plugins": "Not a DSH plugin — a plugin-directory/marketplace site.",
"imsai-sh/zhuzhiliao": "Not a DSH plugin — a bamboo-cicada toy web simulation that tagged dsh-plugin for reach.",
"Inference1/clarify-intent-and-establish-shared-understanding": "Not a DSH plugin — a generic agent intent-clarification skill.",
"inthepond/ff-toolkit": "Generic FFmpeg toolkit with MCP server for any agent; not DSH-specific.",
"ising-tech/isingq-toolkit": "Not a DSH plugin — a generic QUBO agent toolkit for a proprietary solver.",
"isomoes/ikanban": "Not a DSH plugin — a Web interface for the OpenCode coding agent; rides the dsh-plugin topic.",
"itcraft-cn/memrec": "Not a DSH plugin — a standalone Rust terminal AI-memory tool.",
"jark006/RemoteOps": "Not a DSH plugin — a generic remote-ops MCP tool.",
"jarvis-intelligence/jarvis": "Generic code-intelligence/MCP layer for any agent (Claude Code, etc.), not DSH-specific.",
"jarvis-intelligence/jarvis-index": "Generic code-intelligence MCP server with Claude Code/Codex/Cursor plugins; no DSH install path.",
"Jayden-X-L/forkprobe": "Not a DSH plugin — a generic skill-comparison tool.",
"jcaiagent7143-ui/sendpage-mcp": "Generic SendPage MCP server aimed at any agent, no DSH install path.",
"jermaine123123/agent-context-editor": "Not a DSH plugin — a generic multi-host context-management tool primarily for Pi, with DSH as one of several adapters riding the topic; excluded from the catalog.",
"Jesseovo/last30days-skill-cn": "Not a DSH plugin — a generic Claude Code/OpenClaw agent skill with no DSH integration path in its README; excluded from the catalog.",
"jiawood2006/ai-project-advisor": "Not a DSH plugin — a standalone WeChat-based construction project-management assistant riding the topic; excluded from the catalog.",
"jiawood2006/construction-project-management": "Not a DSH plugin — a generic Hermes-format project-management skill with no DSH integration; excluded from the catalog.",
"jiawood2006/de-ai-writer": "Not a DSH plugin — a generic Hermes-format writing skill with no DSH integration; excluded from the catalog.",
"jiawood2006/doc-ocr": "Not a DSH plugin — a generic Hermes-format OCR skill with no DSH integration; excluded from the catalog.",
"jiawood2006/ecommerce-material-studio": "Not a DSH plugin — a generic Hermes-format image-compositing tool with no DSH integration; excluded from the catalog.",
"jiawood2006/video-to-text": "Not a DSH plugin — a generic Hermes-format video-transcription skill with no DSH integration; excluded from the catalog.",
"jiji262/awesome-deepseek-harness": "Not a DSH plugin — a curated plugin list/directory.",
"JingbiaoMei/Tokdash": "Not primarily a DSH plugin — a multi-provider agent dashboard (Claude Code/Codex/OpenCode/Pi/Kimi); DSH is only one of many integrations.",
"JingxuanC/causal-memory": "Not a DSH plugin — a generic MCP-server agent-memory system.",
"jmjmj009gt/vision-toolkit-for-dsh-v0.1-maybe-": "A zero-dependency vision OCR/Q&A toolkit (CLI + local web GUI) for OpenAI-compatible VLMs, not a DSH plugin.",
"jonah791/alice-digital-life": "A plugin collection hub/directory cross-promoting 16 plugin repos, not an installable DSH plugin.",
"JopenChen/dsh-go": "Not a DSH plugin — an in-process Go reimplementation of the DeepSeek Harness agent, not an installable plugin.",
"joygqz/vscode-dsh": "Not an installable DSH plugin — a VS Code/IDE extension that launches and manages the DSH Web UI",
"jqueryscript/awesome-dsh-plugins": "Not a DSH plugin — a curated plugin list/directory.",
"jukanntenn/grill-me-sleek": "Not a DSH plugin — a Claude Code plugin (plan stress-test web UI) with no DSH install path.",
"Justin-sky/ai-art-engine": "Not a DSH plugin — a standalone AI art / short-video creation engine; rides the dsh-plugin topic.",
"justinhuangai/deepseek-harness-desktop": "Empty repo — no README, no code (2 KB); nothing installable.",
"JW53222/faultseed": "Not a DSH plugin — a Claude Code-first deterministic hooks pack; DSH runs via a bundled adapters/dsh add-on, not the repo's primary purpose.",
"kaiwangleo/xiwen": "Not a DSH plugin — a standalone Chinese Data-Agent workbench (FastAPI/Qdrant/Elasticsearch); the dsh-xiwen adapter is a bundled add-on, not the repo's purpose.",
"kalynnka/vscode-deepseek-harness": "Not an installable DSH plugin — a VS Code extension",
"KCNyu/clawock": "Not a DSH plugin — a portable investment-workflow plugin for 'any agent in any harness'.",
"KeepLost/harniverse": "Not a DSH plugin — a fork/clone of the DeepSeek Harness platform itself (README mirrors the official one); rides the dsh-plugin topic.",
"kejixiaoliang/awesome-dsh-plugins": "Not a DSH plugin — a curated plugin list/directory.",
"kevinforge/orbit": "Not a DSH plugin — a local-first workspace for human-led collaboration with multiple AI employees; no DSH integration path; rides the dsh-plugin topic.",
"kevinshi3200/persona-auditor": "Not a DSH plugin — a generic multi-host agent skill (Claude Code / Codex / Cursor / DSH) installed via npx skills.",
"KirschBluteX/engineer-software": "Not a DSH plugin — a Codex workflow for software engineering.",
"kittimzhe/dsh-plugin-authoring-guide": "Not a DSH plugin — an authoring guide/handbook with reference links, not an installable plugin.",
"kobenfang/Eyes": "Not a DSH plugin — an OpenClaw/ClawHub skill (clawhub install eyes) for global news monitoring with no DeepSeek Harness integration; rides the dsh-plugin topic; excluded from the catalog.",
"kobenfang/FruitPi": "Not a DSH plugin — an OpenClaw/ClawHub skill (clawhub install fruit-pi) for fruit prices with no DeepSeek Harness integration; rides the dsh-plugin topic; excluded from the catalog.",
"kobenfang/ListForm": "Not a DSH plugin — an OpenClaw/ClawHub smart-form skill with no DSH content, riding the topic; excluded from the catalog.",
"ktao732084-arch/vibegap": "Not a DSH plugin — the generic VibeGap companion mini-window for Claude Code/Codex agents; its DSH plugin lives in ktao732084-arch/dsh-vibegap.",
"kuailexiaozixin/fasthtml-desktop": "Not a DSH plugin — a generic FastHTML desktop skill.",
"kuailexiaozixin/tkinter-desktop": "Not a DSH plugin — a generic Tkinter desktop skill.",
"kuangre123/codex-switch": "Not a DSH plugin — a macOS helper for switching Codex/Claude Code API providers.",
"kuangre123/iosdev": "Not a DSH plugin — a generic iOS development skill.",
"kxh4892636/pi-deepseek-anchor": "Not a DSH plugin — a pi extension; DSH is not the host.",
"kyrielrving11/LoopForge": "Not a DSH plugin — a generic governance runtime for coding agents (global CLI + Claude MCP).",
"L-mimimi/SnapShot": "Generic Windows screenshot/OCR utility that merely added the dsh-plugin topic; not a DSH plugin.",
"L-mimimi/WinPin": "Generic Windows window-pinning tool that merely added the dsh-plugin topic; not a DSH plugin.",
"labring/sealos-skills": "Not a DSH plugin — Sealos deployment skills aimed at Claude Code/Gemini CLI/Codex.",
"Lanxi26/dsh-bash-windows": "Not an installable DSH plugin — documentation/tutorial",
"laosji/clamicro": "Not an installable DSH plugin — a standalone mobile approval companion app.",
"Leeaoyin/dr-agent-skills": "Not a DSH plugin — generic coding-agent skill modules.",
"leenkcool/Blue-Whale-Harness": "Not a DSH plugin — a DSH plugin directory/catalog website (searchable online catalog + CSV export).",
"Leslie-SSS/seeWxapkg": "Not a DSH plugin — a WeChat mini-program decompiler web tool.",
"lewes2/archpresent": "Not a DSH plugin — a Claude Code skill with only a .claude/skills clone install path and no DSH targeting.",
"Li3NGa/DHS-multi-agent-plugin": "Not a DSH plugin — a standalone Python multi-agent library/CLI/HTTP/MCP service for the DeepSeek ecosystem, usable from many agents; rides the dsh-plugin topic; excluded from the catalog.",
"liangwythu/deepseek-harness-vscode": "Not an installable DSH plugin — a VS Code extension",
"libukai/awesome-deepseek-harness": "Not a DSH plugin — a curated plugin list/directory.",
"liebaojun/MakoCode": "Not a DSH plugin — a Galgame-style desktop app wrapping Claude Code CLI with no DSH integration path; excluded from the catalog.",
"like-study1/Oh-My-DSH": "Not a DSH plugin — a plugin aggregator/directory community site.",
"limccn/deepseek-vl-support": "Not a DSH plugin — a generic vision-routing tool for ~20 agents (Claude Code, Codex, DSH among them) installed via npx/Agent Plugins; rides the dsh-plugin topic; excluded from the catalog.",
"linhay/harmony-next.skills": "Not a DSH plugin — HarmonyOS NEXT guidance skills, unrelated to DSH.",
"linxuhao/AItelier": "Not an installable DSH plugin — a generic multi-agent workflow engine driven from DSH via its MCP endpoint",
"lispking/git-skills": "Not a DSH plugin — a Claude Code Git skill.",
"litestartup-com/litestartup-skills": "Not a DSH plugin — generic publishing/marketing skills.",
"littleDogWang/dsh-agora": "Not a DSH plugin — an empty repository (no files at all) riding the dsh-plugin topic.",
"liuchang8877/dsh-plugin-openviking": "Not an installable DSH plugin — a config/tutorial hookup guide for OpenViking via dsh-mcp-client",
"Lixxx1/dsh-vscode": "Not an installable DSH plugin — a VS Code extension/IDE integration.",
"Liyuan1992/memdsl": "Not a DSH plugin — a generic Python MCP memory server; rides the dsh-plugin topic.",
"Liyuan1992/rawmem": "Not a DSH plugin — a generic Python raw-evidence ledger and MCP server; rides the dsh-plugin topic.",
"lonelymoon87/dsh-vscode": "Not an installable DSH plugin — a VS Code extension",
"Loong-wql/Build-HOS-mcp": "Not a DSH plugin — a Codex HarmonyOS MCP plugin.",
"louisecxqiu-glitch/html-doc-center": "Not a DSH plugin — a standalone HTML editor/workbench (Python app + Claude Code plugin) with no DSH integration, riding the topic; excluded from the catalog.",
"LouisHaoL/cloudcli-timer-agent": "Not a DSH plugin — a CloudCLI platform plugin (a port of dsh-timer-agent to another agent platform).",
"lovaxi/Rubato_Device": "Not a DSH plugin — ESP8266 firmware for a palm-sized retro-screen health-reminder desk device.",
"lujoai/Lujo-MCP": "Not a DSH plugin — a generic AI debugging/tracing platform.",
"lwmxiaobei/dsh-plugins": "Not a DSH plugin — a community plugin-directory site.",
"Lyn-77/ProMentor": "Not a DSH plugin — a generic AI coding mentor skill.",
"LynLiCoder/scan-corrector": "Not a DSH plugin — a standalone Python PDF orientation-correction tool riding the topic; excluded from the catalog.",
"M1ssbe4r/PocketCode": "Not a DSH plugin — a standalone Android AI coding agent; rides the dsh-plugin topic.",
"MaimoryLab/dib": "Not an installable DSH plugin — deployment packaging (Docker/K8s/ops tooling)",
"mapan0424/deepseek-harness-plugins": "Not a DSH plugin — an unofficial community plugins collection and monorepo rather than an installable DSH plugin.",
"Mappedinfo/PlainDeck": "Not a DSH plugin — a slide editor.",
"mcsam163/shared-memory-layer": "Generic multi-agent shared-memory layer aimed at any agent, with no DSH install path.",
"melandlabs/opencontext": "Not a DSH plugin — a standalone agentic context runtime \"designed to be embedded into any host process\"; the dsh-opencontext plugin is one integration target, not the repo's primary purpose.",
"MemTensor/memmy-agent": "Not a DSH plugin — a desktop memory-hub app for Claude Code/Codex etc. with no DSH content in its README; excluded from the catalog.",
"MemTensor/MemOS": "Not a DSH plugin — a generic memory OS for LLM agents (ChatGPT/Claude/etc.); \"DeepSeek Harness support\" is one integration and there is no dsh plugin install path; rides the dsh-plugin topic with stars accrued by the generic product.",
"menantonio83-hue/tnt-house": "Not a DSH plugin — a Solana token-audit platform + generic MCP server (Claude/Cursor); unrelated to DSH, rides the topic.",
"MerlinShieh/Agent-skill-wechatPush": "Not a DSH plugin — a generic WeChat push notification agent skill with no DSH install path.",
"MerlinShieh/AgentMemHub": "Not a DSH plugin — a standalone multi-harness session-history extractor (ZCode/OpenCode/Hermes/DSH as data sources) with no dsh plugin install path.",
"metabolism-tools/workspace-metabolism": "Not a DSH plugin — a generic workspace-file lifecycle tool for Claude Code/Codex/Aider/OpenClaw; no DSH install path.",
"MiaoQichuan/new-litigation-visualization": "Not a DSH plugin — a legal-litigation visualization toolkit aimed at Claude skills, no DSH install path.",
"MickLife/mex": "Not a DSH plugin — a standalone local memory system for AI services.",
"MicroHEROX/Mult-Hands-Eyes-MCP": "Generic local-inference MCP server for any LLM (Codex/OpenCode/etc.), not DSH-specific.",
"Mikoribbit/ODSH-Bridge": "Not an installable DSH plugin — a Docker connectivity bridge between OpenClaw and DSH",
"Minara-AI/minara-skills": "Not a DSH plugin — Codex trading skills.",
"ming-14/PTY-Agent": "Not a DSH plugin — a generic PTY/terminal agent runtime; rides the dsh-plugin topic.",
"Mingbing-get/holdRein": "Not a DSH plugin — a standalone model-agnostic AI agent workbench with no DSH content in the README; excluded from the catalog.",
"Minglink/DeepSeek-Harness-Hub": "A DSH plugin marketplace/directory site (deepseek.stream) — a directory site, not an installable plugin.",
"Minglink/dsh-infinite-gen-2": "A DeepSeek-focused prompt-injection (\"armor-breaking\") jailbreak plugin that suppresses the host model's system instructions; kept out of the catalog on safety grounds.",
"MisRightW/dsh-taskboard": "Not a DSH plugin — an empty placeholder repository.",
"MJ-Chang/dsh-vscode": "Not an installable DSH plugin — a VS Code extension",
"ML-QSeek/SurvX": "Not a DSH plugin — a research paradigm/prototype for intelligent systems.",
"mnemon-dev/mnemon": "Not a DSH plugin — memory for Claude Code/OpenClaw and other CLIs.",
"Modellix/dsh-modellix": "Not a DSH plugin — an empty repository with only a LICENSE file.",
"Modellix/dsh-modellix-web-tools": "Not a DSH plugin — an empty repository with only a LICENSE file.",
"Molunerfinn/PicGo": "Not a DSH plugin — a standalone image-uploader desktop app; rides the dsh-plugin topic.",
"moneka123/deepseek-harness-plugin-dev-guide": "Not an installable DSH plugin — a plugin development guide (documentation/tutorial)",
"morluto/flameox": "Not a DSH plugin — a generic multi-agent tool with no DSH install path; excluded from the downstream market.",
"morluto/internalcot": "Not a DSH plugin — an opt-in reasoning-workspace skill for Codex and Claude Code (npx internalcot@latest setup); zero DSH integration, rides the dsh-plugin topic.",
"morluto/jacobian": "Not a DSH plugin — a generic multi-agent tool with no DSH install path; excluded from the downstream market.",
"morluto/leantoken": "Not a DSH plugin — a generic multi-agent tool with no DSH install path; excluded from the downstream market.",
"morluto/rea": "Not a DSH plugin — a generic multi-agent tool with no DSH install path; excluded from the downstream market.",
"moxingovo/dsh-web-panel": "Not an installable DSH plugin — a VS Code extension",
"mtdx2001/think-zh": "Not a DSH plugin — a standalone local reasoning-translation engine (OpenAI-compatible endpoint, multi-harness); the DSH install path in its README installs the separate dsh-think-translate plugin instead.",
"mudden2380078550-creator/write-chinese-long-screenplay": "Screenwriting skill for Claude Code/Codex; no DSH install path.",
"multica-ai/dsh-multica-runtime": "Not an installable DSH plugin — deployment packaging (Docker/K8s/ops tooling)",
"Mutton-hub/adatile-mcp": "Not a DSH plugin — a generic MCP image-tiling server for any MCP client.",
"N0zoM1z0/th08": "Not a DSH plugin — a Touhou game source reconstruction, unrelated to DSH.",
"N0zoM1z0/vocaloid-mcp": "Not a DSH plugin — a VOCALOID MCP server.",
"Nagi-ovo/voyager": "Not a DSH plugin — a browser enhancement suite for Gemini/Claude/ChatGPT web UIs; DSH is only one target of its generic prompt manager.",
"name-loading/dsh-vscode": "Not an installable DSH plugin — a VS Code extension",
"Nana7mi0721/anima-prompt-caption": "Not a DSH plugin — a generic Anima/Anima3 image-prompt skill that installs into any SKILL.md agent (DeepSeek Harness, Claude Code, …); DSH is only one of many targets.",
"Nana7mi0721/anima-prompt-naturalang": "Not a DSH plugin — a generic Anima/Anima3 image-prompt skill that installs into any SKILL.md agent (DeepSeek Harness, Claude Code, …); DSH is only one of many targets.",
"NEXTINDIE/DeepSeek-Harness-for-VS-Code": "Not an installable DSH plugin — a VS Code extension",
"nexu-io/open-design": "Not a DSH plugin — a standalone design app for 20+ CLIs; rides the dsh-plugin topic for reach.",
"NexusClawHQ/nexusclaw-agent-governance": "Not a DSH plugin — a framework-neutral agent-governance library (LangGraph/CrewAI/n8n); DSH is only one topic tag.",
"ningbonb/dsh-installer": "Not a DSH plugin — one-click installer/launcher scripts for the dsh CLI itself (macOS/Windows).",
"niuhuoshan/launch-wechat-miniprogram": "Not a DSH plugin — a generic WeChat miniprogram agent skill with no DSH install path.",
"niyongsheng/free-vision-skill": "Not a DSH plugin — a generic macOS vision skill.",
"nocobase/nocobase": "Not a DSH plugin — an open-source no-code business-platform builder riding the dsh-plugin topic.",
"NOirBRight/dsh-plugins": "Not a DSH plugin — a machine-readable catalog/directory of the author's DSH plugins and mobile companion.",
"npxcnency-ux/pi-trace-extension": "Not a DSH plugin — a trace-viewer extension for the pi-agent platform.",
"nutshellai-tech/mobius": "Not a DSH plugin — a standalone agent OS.",
"octoparse/agent-skills": "Not a DSH plugin — Octoparse scraping skills.",
"oh-summy/dsh-remote-control": "Not a DSH plugin — Cloudflare-Tunnel remote-access setup scripts and guides; DSH plugin packaging is a roadmap item (M4), not shipped.",
"omdsh-dev/dsh-container": "Not an installable DSH plugin — Docker containerization deployment packaging",
"omdsh-dev/dsh-plugin-dev": "Not an installable DSH plugin — documentation/tutorial",
"openguardrails/openguardrails": "Not a DSH plugin — an AI safety/security protocol.",
"openHacking/pptkit-presentation": "Not a DSH plugin — generic presentation workflows.",
"openma-ai/open-managed-agents": "Not a DSH plugin — a Claude Managed Agents implementation.",
"opqnext/moji-docs": "Not a DSH plugin — a Markdown Wiki desktop app (Electron + Vue) unrelated to DSH.",
"orangeofcarl0-sys/J-Space-Cognition-Suite-VNext-Governor": "Not a DSH plugin — a non-official J-Space Cognition Suite derivative (built on the excluded J-Space-Cognition-Suite-V3.6); a generic cognitive-governance skill that rides the dsh-plugin topic.",
"orchestral-media/orchestral": "Not a DSH plugin — a TypeScript library for building multimedia-generation agents.",
"orziz/odai": "Not a DSH plugin — a generic multi-agent task-governance framework; rides the dsh-plugin topic.",
"oslook/awesome-dsh-plugins": "Not a DSH plugin — a curated plugin list/directory.",
"osmondlee/dsh-web-tailscale": "Not an installable DSH plugin — a remote-access/deployment setup (PowerShell launcher + docs)",
"paean-ai/deeptide": "Not a DSH plugin — a standalone Swift macOS coding agent.",
"Paloma966/dsh-ff": "Not a DSH plugin — a standalone Go CLI (fiction_factory) that calls DeepSeek/Claude/Ollama APIs directly to generate novels; no DSH integration path despite the dsh-plugin topic; excluded from the catalog.",
"peiyuwang54/deepseek-harness-cli": "Not a DSH plugin — an unofficial fork/repack of the DeepSeek Harness platform itself (CLI).",
"PerryLink/dsh-plugin-certification": "Not an installable DSH plugin — a community certification spec and registry (docs plus machine-checkable data).",
"PerryLink/dsh-plugin-portal": "Not a DSH plugin — a static portal/index page for the author's plugins; nothing installable.",
"PerryLink/perrylink": "Not an installable DSH plugin — a profile/index README directory of the author's 33 plugins.",
"pgmi-builds/corti": "Not a DSH plugin — a generic Postgres-backed memory layer for agent swarms with no DSH integration path.",
"phoenixlucky/zerotoken-skill": "Not a DSH plugin — a generic token-discipline skill for Reasonix/Codex/OpenCode/Hermes.",
"PicGo/PicGo-Core": "Not a DSH plugin — an image-upload engine unrelated to DSH.",
"pingfanfan/hello-dsh": "Not an installable DSH plugin — documentation/tutorial",
"plastic-labs/honcho": "Not a DSH plugin — the generic Honcho memory library and platform; its DSH integration plugin is plastic-labs/dsh-honcho.",
"Platohykj/dsh-vsc": "Not an installable DSH plugin — a VS Code extension",
"platonai/Browser4": "Not a DSH plugin — the generic Browser4 AI browser engine (8-year-old repo, stars accrued by the long-standing generic product); its DSH integration lives in the separate platonai/dsh-browser4 plugin.",
"PM-Shawn/Abu-Cowork": "Not a DSH plugin — a Claude Cowork alternative; DSH integration is 'in progress'.",
"pmorgan3/deep-tui": "Not a DSH plugin — a separate coding-agent harness built on Cordis.",
"Porphyrioon/ironlaw": "Not a DSH plugin — a generic completion/repair layer for agents.",
"ptonlix/dsh-forge": "Not a DSH plugin — a desktop-distribution / packaging toolchain around DeepSeek Harness.",
"pulseaiclub/phi": "Not a DSH plugin — a standalone coding agent.",
"Q00/ouroboros": "Not a DSH plugin — an agent OS / MCP server aimed at 13 runtimes (Claude Code, Codex, Gemini CLI, …); DSH is one of many.",
"qomob/dsh": "Not a DSH plugin — a community wiki and daily-aggregated plugin-directory site (renamed from qomob/DSHwiki).",
"qubyyang/awesome-ios-sim": "Not a DSH plugin — an iOS Simulator state-as-code tool (Swift CLI + MCP for any agent); the dsh-plugin bundle is a secondary delivery, not the repo's purpose.",
"qw457812/dotfiles": "Not a DSH plugin — a personal dotfiles/chezmoi repository with no DSH content, riding the topic; excluded from the catalog.",
"r600a-code/swarm-dashboard": "A short-drama script swarm-evolution experiment website, not a DSH plugin.",
"RagnarPitla/dsh-field-guide": "Not an installable DSH plugin — an evidence-badged documentation/field guide with a bundled sample plugin",
"RangeKing/vibemeter": "Not a DSH plugin — a generic agent dashboard.",
"RaulLazaro/dsh-pwa-plugin": "Not a DSH plugin — a PWA/service-worker add-on without a DSH plugin install path.",
"recoluan/recowork": "Not a DSH plugin — a generic AI-workflow product with no DSH content or install path in its README; rides the dsh-plugin topic.",
"remybroun/infographic": "Claude Code skill for infographics; not a DSH plugin.",
"renjianguojinqianfan/Project-Bootstrap-Harness": "Not a DSH plugin — a generic Python project template for AI-assisted development.",