forked from matrix-org/twim-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
1078 lines (960 loc) · 29.6 KB
/
config.toml
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
bot_user_id = '@twim:cadair.com'
reporting_room_id = '!QQpfJfZvqxbCfeDgCj:matrix.org'
admin_room_id = '!yHqAuTnFgksYvVnlMY:ergaster.org'
notice_emoji = '⭕️'
image_emoji = '📷️'
image_markdown = '> ![](/blog/img/{{file}})'
video_emoji = '🎥'
video_markdown = '> {{< video src="{{file}}" >}}'
verbs = ["reports", "says", "announces"]
update_config_command = "sh /data/update_config.sh"
editors = [
'@thib:ergaster.org'
]
[[sections]]
emoji = '✅'
name = 'todo'
title = 'TODO UNKNOWN SECTION'
order = 1000
usual_reporters = []
[[sections]]
emoji = '🌡️'
name = 'status'
title = 'Dept of *Status of Matrix* 🌡️'
order = 1010
usual_reporters = []
[[sections]]
emoji = '🙆'
name = 'social'
title = 'Dept of Social Good 🙆'
order = 1020
usual_reporters = ['@denise.a:vector.modular.im']
[[sections]]
emoji = '📜'
name = 'spec'
title = 'Dept of Spec 📜'
order = 1030
usual_reporters = ['@andrewm:amorgan.xyz']
[[sections]]
emoji = '🎓️'
name = 'gsoc'
title = 'Dept of GSoC 🎓️'
order = 1040
usual_reporters = []
[[sections]]
emoji = '👥'
name = 'p2p'
title = 'Dept of P2P 👥'
order = 1050
usual_reporters = []
[[sections]]
emoji = '🏢'
name = 'servers'
title = 'Dept of Servers 🏢'
order = 1060
usual_reporters = []
[[sections]]
emoji = '📥️'
name = 'homeserver-deployment'
title = 'Homeserver Deployment 📥️'
order = 1080
usual_reporters = []
[[sections]]
emoji = '🌉'
name = 'bridges'
title = 'Dept of Bridges 🌉'
order = 1090
usual_reporters = []
[[sections]]
emoji = '📱'
name = 'clients'
title = 'Dept of Clients 📱'
order = 1100
usual_reporters = []
[[sections]]
emoji = '🎛️'
name = 'non-chat-clients'
title = 'Dept of Non Chat Clients 🎛️'
order = 1110
usual_reporters = []
[[sections]]
emoji = '🧩'
name = 'widgets'
title = 'Dept of Widgets 🧩'
order = 1115
usual_reporters = []
[[sections]]
emoji = '🤙'
name = 'voip'
title = 'Dept of VoIP 🤙'
order = 1120
usual_reporters = []
[[sections]]
emoji = '🔐'
name = 'encryption'
title = 'Dept of Encryption 🔐'
order = 1130
usual_reporters = []
[[sections]]
emoji = '🧰'
name = 'sdks'
title = 'Dept of SDKs and Frameworks 🧰'
order = 1140
usual_reporters = []
[[sections]]
emoji = '🛠️'
name = 'ops'
title = 'Dept of Ops 🛠'
order = 1150
usual_reporters = []
[[sections]]
emoji = '🚀'
name = 'services'
title = 'Dept of Services 🚀'
order = 1160
usual_reporters = []
[[sections]]
emoji = '💡'
name = 'iot'
title = 'Dept of Internet of Things 💡'
order = 1170
usual_reporters = []
[[sections]]
emoji = '🤖'
name = 'bots'
title = 'Dept of Bots 🤖'
order = 1180
usual_reporters = []
[[sections]]
emoji = '📹'
name = 'eventvideos'
title = 'Dept of Videos 📹'
order = 1190
usual_reporters = []
[[sections]]
emoji = '🗣️'
name = 'talks'
title = 'Dept of Events and Talks 🗣️'
order = 1200
usual_reporters = []
[[sections]]
emoji = '🛰️'
name = 'projects'
title = 'Dept of Interesting Projects 🛰️'
order = 1210
usual_reporters = []
[[sections]]
emoji = '🏗️'
name = 'build'
title = 'Dept of *Built on Matrix* 🏗️'
order = 1230
usual_reporters = []
[[sections]]
emoji = '🧭'
name = 'guides'
title = 'Dept of Guides 🧭'
order = 1240
usual_reporters = []
[[sections]]
emoji = '🍕'
name = 'hackathons'
title = 'Dept of Hackathons 🍕'
order = 1250
usual_reporters = []
[[sections]]
emoji = '💰️'
name = 'jobs'
title = 'Dept of Jobs 💰️'
order = 1260
usual_reporters = []
[[sections]]
emoji = '📰'
name = 'news'
title = 'Matrix in the News 📰'
order = 1270
usual_reporters = []
[[sections]]
emoji = '📆'
name = 'room-of-the-week'
title = 'Room of the Week 📆'
order = 1280
usual_reporters = ['@timokoesters:fachschaften.org']
[[sections]]
emoji = '💭'
name = 'thoughts'
title = 'Final Thoughts 💭'
order = 2000
usual_reporters = []
[[projects]]
emoji = 'Nheko?'
name = 'nheko'
title = 'Nheko'
description = 'Desktop client for Matrix using Qt and C++17.'
website = 'https://nheko-reborn.github.io'
default_section = 'clients'
usual_reporters = ['@deepbluev7:neko.dev']
[[projects]]
emoji = 'Fractal?'
name = 'fractal'
title = 'Fractal'
description = 'Matrix messaging app for GNOME written in Rust.'
website = 'https://gitlab.gnome.org/GNOME/fractal'
default_section = 'clients'
usual_reporters = [
'@afranke:matrix.org',
'@jsparber:gnome.org']
[[projects]]
emoji = 'FluffyChat?'
name = 'fluffychat'
title = 'FluffyChat'
description = ''
website = 'https://fluffychat.im'
default_section = 'clients'
usual_reporters = [
'@krille:janian.de',
'@Sorunome:matrix.org'
]
[[projects]]
emoji = 'Synapse?'
name = 'synapse'
title = 'Synapse'
description = 'Synapse is a Matrix homeserver implementation developed by the matrix.org core team'
website = 'https://github.com/matrix-org/synapse/'
default_section = 'servers'
usual_reporters = [
'@callahad:matrix.org',
'@erikj:jki.re',
'@babolivier:vector.modular.im',
'@babolivier:element.io',
'@dmrobertson:matrix.org'
]
[[projects]]
emoji = 'Hydrogen?'
name = 'hydrogen'
title = 'Hydrogen'
description = 'Hydrogen is a lightweight matrix client with legacy and mobile browser support'
website = 'https://github.com/vector-im/hydrogen-web'
default_section = 'clients'
usual_reporters = ['@bwindels:matrix.org']
[[projects]]
emoji = 'Heisenbridge?'
name = 'heisenbridge'
title = 'Heisenbridge'
description = 'Heisenbridge is a bouncer-style Matrix IRC bridge.'
website = 'https://github.com/hifi/heisenbridge/'
default_section = 'bridges'
usual_reporters = ['@hifi:vi.fi']
[[projects]]
emoji = 'GoMatrixHosting?'
name = 'gomatrixhosting'
title = 'GoMatrixHosting'
description = 'GoMatrixHosting deploys Matrix, Element and Jitsti instance as managed services'
website = 'http://gomatrixhosting.com'
default_section = 'services'
usual_reporters = ['@michael:perthchat.org']
[[projects]]
emoji = 'Cinny?'
name = 'cinny'
title = 'Cinny'
description = 'Cinny is a Matrix client focused on simplicity, elegance and security'
website = 'https://cinny.in'
default_section = 'clients'
usual_reporters = [
'@ajbura:matrix.org',
'@kfiven:matrix.org'
]
[[projects]]
emoji = 'Quaternion?'
name = 'quaternion'
title = 'Quaternion'
description = 'A Qt5-based IM client for Matrix'
website = 'https://github.com/quotient-im/Quaternion'
default_section = 'clients'
usual_reporters = ['@kitsune:matrix.org']
[[projects]]
emoji = 'libQuotient?'
name = 'libquotient'
title = 'libQuotient'
description = 'A Qt5 library to write cross-platform clients for Matrix'
website = 'https://github.com/quotient-im/libQuotient'
default_section = 'sdks'
usual_reporters = ['@kitsune:matrix.org']
[[projects]]
emoji = 'Conduit?'
name = 'conduit'
title = 'Conduit'
description = 'Conduit is a simple, fast and reliable chat server powered by Matrix'
website = 'https://conduit.rs'
default_section = 'servers'
usual_reporters = ['@timokoesters:fachschaften.org']
[[projects]]
emoji = 'Element?'
name = 'element'
title = 'Element'
description = 'Everything related to Element but not strictly bound to a client'
website = 'https://element.io'
default_section = 'clients'
usual_reporters = [
'@thib:ergaster.org',
'@kittykat:matrix.org',
'@valere35:matrix.org',
'@nadonomy:matrix.org',
'@jsalter:matrix.org',
'@daniellekirkwood:one.ems.host'
]
[[projects]]
emoji = 'Emt Web?'
name = 'element-web'
title = 'Element Web/Desktop'
description = 'Secure and independent communication, connected via Matrix. Come talk with us in [#element-web:matrix.org](https://matrix.to/#/#element-web:matrix.org)!'
website = 'https://github.com/vector-im/element-web'
default_section = 'clients'
usual_reporters = [
'@thib:ergaster.org',
'@kittykat:matrix.org',
'@daniellekirkwood:one.ems.host'
]
[[projects]]
emoji = 'Emt iOS?'
name = 'element-ios'
title = 'Element iOS'
description = 'Secure and independent communication for iOS, connected via Matrix. Come talk with us in [#element-ios:matrix.org](https://matrix.to/#/#element-ios:matrix.org)!'
website = 'https://github.com/vector-im/element-ios'
default_section = 'clients'
usual_reporters = [
'@thib:ergaster.org',
'@kittykat:matrix.org',
'@daniellekirkwood:one.ems.host',
'@Manu:matrix.org',
'@douge:matrix.org'
]
[[projects]]
emoji = 'Emt Android?'
name = 'element-android'
title = 'Element Android'
description = 'Secure and independent communication for Android, connected via Matrix. Come talk with us in [#element-android:matrix.org](https://matrix.to/#/#element-android:matrix.org)!'
website = 'https://github.com/vector-im/element-android'
default_section = 'clients'
usual_reporters = [
'@thib:ergaster.org',
'@kittykat:matrix.org',
'@benoit.marty:matrix.org',
'@daniellekirkwood:one.ems.host',
'@ouchadam:matrix.org'
]
[[projects]]
emoji = 'NeoChat?'
name = 'neochat'
title = 'Neochat'
description = 'A client for matrix, the decentralized communication protocol'
website = 'https://invent.kde.org/network/neochat'
default_section = 'clients'
usual_reporters = [
'@tobiasfella:kde.org',
'@carl:kde.org'
]
[[projects]]
emoji = 'Dendrite?'
name = 'dendrite'
title = 'Dendrite'
description = 'Second generation Matrix homeserver'
website = 'https://invent.kde.org/network/neochat'
default_section = 'servers'
usual_reporters = [
'@neilalexander:matrix.org',
'@neilalexander:dendrite.matrix.org',
'@kegan:matrix.org',
'@s7evink:matrix.org'
]
[[projects]]
emoji = 'Slack Bridge?'
name = 'slack-bridge'
title = 'Slack Bridge'
description = 'A Matrix <-> Slack bridge'
website = 'https://github.com/matrix-org/matrix-appservice-slack'
default_section = 'bridges'
usual_reporters = ['@Half-Shot:half-shot.uk']
[[projects]]
emoji = 'Helm Chart?'
name = 'helm-chart'
title = 'Helm Chart'
description = 'Matrix Kubernetes applications packaged into helm charts'
website = 'https://gitlab.com/ananace/charts'
default_section = 'homeserver-deployment'
usual_reporters = ['@ace:kittenface.studio']
[[projects]]
emoji = 'k8s dendrite?'
name = 'dendrite-helm-chart'
title = 'Dendrite Helm Chart'
description ='Helm Chart to deploy Dendrite on Kubernetes'
website = 'https://github.com/k8s-at-home/charts/tree/master/charts/incubator/dendrite'
default_section = 'homeserver-deployment'
usual_reporters = ['@gh-jonnobrow:matrix.org']
[[projects]]
emoji = 'dendrite-helm?'
name = 'dendrite-helm'
title = 'Dendrite Helm'
description = 'This chart creates a polylith, where every component is in its own deployment and requires a Postgres server aswell as a NATS JetStream server.'
website = 'https://github.com/S7evinK/dendrite-helm'
default_section = 'homeserver-deployment'
usual_reporters = ['@s7evink:dendrite.s3cr3t.me']
[[projects]]
emoji = 'Pinecone?'
name = 'pinecone'
title = 'Pinecone'
description = 'Peer-to-peer overlay routing for the Matrix ecosystem'
website = 'https://github.com/matrix-org/pinecone'
default_section = 'p2p'
usual_reporters = [
'@neilalexander:matrix.org',
'@neilalexander:dendrite.matrix.org'
]
[[projects]]
emoji = 'Halcyon?'
name = 'halcyon'
title = 'Halcyon'
description = 'Halcyon is an easy to use matrix library inspired by discord.py'
website = 'https://github.com/WesR/Halcyon'
default_section = 'sdks'
usual_reporters = ['@gen3:blackline.xyz']
[[projects]]
emoji = 'SchildiChat?'
name = 'schildichat'
title = 'SchildiChat'
description = 'SchildiChat is a fork of Element that focuses on UI changes such as message bubbles and a unified chat list for both direct messages and groups, which is a more familiar approach to users of other popular instant messengers.'
website = 'https://schildi.chat'
default_section = 'clients'
usual_reporters = [
'@qg:supercable.onl',
'@spiritcroc:spiritcroc.de'
]
[[projects]]
emoji = 'standupbot?'
name = 'standupbot'
title = 'standupbot'
description = 'Standupbot helps automate the process of writing nicely formatted daily standup posts and sending that standup post to a shared, configurable standup room.'
website = 'https://sr.ht/~sumner/standupbot/'
default_section = 'bots'
usual_reporters = ['@sumner:sumnerevans.com']
[[projects]]
emoji = 'PTSN Bridge?'
name = 'ptsn-bridge'
title = 'PTSN Bridge'
description = 'A matrix <-> SIP bridge'
website = 'https://github.com/alangecker/matrix-appservice-pstn'
default_section = 'bridges'
usual_reporters = ['@chandi:livingutopia.org']
[[projects]]
emoji = 'Mother Miounne?'
name = 'mother-miounne'
title = 'Mother Miounne'
description = 'The backoffice of etke.cc service'
website = 'https://gitlab.com/etke.cc/miounne'
default_section = 'ops'
usual_reporters = ['@aine:etke.cc']
[[projects]]
emoji = 'etke.cc?'
name = 'etke'
title = 'etke.cc'
description = 'Your matrix server on your conditions'
website = 'https://etke.cc'
default_section = 'services'
usual_reporters = ['@aine:etke.cc']
[[projects]]
emoji = 'Review Bot?'
name = 'matrix-review-bot'
title = 'matrix-review-bot'
description = 'Get your latest AppStore & Playstore review directly in your fav matrix room.'
website = 'https://github.com/BillCarsonFr/matrix-review-bot'
default_section = 'bots'
usual_reporters = ['@valere35:matrix.org']
[[projects]]
emoji = 'Collabs?'
name = 'collabs'
title = 'Collabs'
description = 'A library to make decentralized collaborative apps'
website = 'https://www.npmjs.com/package/@collabs/collabs'
default_section = 'sdks'
usual_reporters = ['@mweidner:matrix.org']
[[projects]]
emoji = 'MRSBFH?'
name = 'mrsbfh'
title = 'Matrix-Rust-SDK-Bot-Framework-Helper'
description = 'A toolkit for writing commandbots more efficient in rust for matrix.'
website = 'https://github.com/MTRNord/mrsbfh'
default_section = 'sdks'
usual_reporters = ['@mtrnord:nordgedanken.dev']
[[projects]]
emoji = 'mautrix-whatsapp?'
name = 'mautrix-whatsapp'
title = 'mautrix-whatsapp'
description = 'A Matrix-WhatsApp puppeting bridge'
website = 'https://github.com/mautrix/whatsapp'
default_section = 'bridges'
usual_reporters = ['@tulir:maunium.net']
[[projects]]
emoji = 'simplematrixbotlib?'
name = 'simplematrixbotlib'
title = 'simplematrixbotlib'
description = 'simplematrixbotlib is an easy to use bot library for the Matrix ecosystem written in Python and based on matrix-nio.'
website = 'https://github.com/KrazyKirby99999/simple-matrix-bot-lib'
default_section = 'sdks'
usual_reporters = ['@krazykirby99999:matrix.org']
[[projects]]
emoji = 'time-to-matrix?'
name = 'time-to-matrix'
title = 'time-to-matrix'
description = 'The time command, but it sends the output to a Matrix room'
website = 'https://gitlab.com/etke.cc/ttm'
default_section = 'non-chat-clients'
usual_reporters = ['@aine:etke.cc']
[[projects]]
emoji = 'Mjolnir?'
name = 'mjolnir'
title = 'Mjölnir'
description = 'The moderation bot for Matrix'
website = 'https://github.com/matrix-org/mjolnir'
default_section = 'bots'
usual_reporters = [
'@dotyoric:matrix.org',
'@gnuxie:matrix.org'
]
[[projects]]
emoji = 'synadm?'
name = 'synadm'
title = 'synadm'
description = 'Command line admin tool for Synapse (Matrix reference homeserver)'
website = 'https://github.com/JOJ0/synadm'
default_section = 'ops'
usual_reporters = ['@jojo:peek-a-boo.at']
[[projects]]
emoji = 'jOlm?'
name = 'jolm'
title = 'jOlm'
description = 'Olm bindings for Java'
website = 'https://github.com/brevilo/jolm'
default_section = 'sdks'
usual_reporters = ['@brevilo:matrix.org']
[[projects]]
emoji = 'MinesTRIX?'
name = 'minestrix'
title = 'MinesTRIX'
description = 'A privacy focused social media based on MATRIX'
website = 'https://minestrix.henri2h.fr'
default_section = 'projects'
usual_reporters = ['@henri2h:carnot.cc']
[[projects]]
emoji = 'hookshot?'
name = 'matrix-hookshot'
title = 'matrix-hookshot'
description = 'A multi purpose multi platform bridge, formerly known as matrix-github'
website = 'https://github.com/Half-Shot/matrix-hookshot'
default_section = 'bridges'
usual_reporters = ['@Half-Shot:half-shot.uk']
[[projects]]
emoji = 'maubot?'
name = 'maubot'
title = 'maubot'
description = 'A plugin-based Matrix bot system.'
website = 'https://github.com/maubot/maubot'
default_section = 'bots'
usual_reporters = ['@tulir:maunium.net']
[[projects]]
emoji = 'Webhook Receiver?'
name = 'webhook-receiver'
title = 'Matrix Webhook Receiver'
description = 'An add-on for the matrix-appservice-webhooks bridge. Webhooks are essentially web interfaces for applications to "push" data to. The bridge can receive messages in a certain format, which is nice if the notifying app can be configured. Often it cannot.'
website = 'https://github.com/HarHarLinks/matrix-webhook-receiver'
default_section = 'bridges'
usual_reporters = ['@kim:sosnowkadub.de']
[[projects]]
emoji = 'Trixnity?'
name = 'trixnity'
title = 'Trixnity'
description = 'Multiplatform Kotlin SDK for Matrix'
website = 'https://gitlab.com/benkuly/trixnity'
default_section = 'sdks'
usual_reporters = ['@benedict:imbitbu.de']
[[projects]]
emoji = 'Sydent?'
name = 'sydent'
title = 'Sydent'
description = 'Sydent is the reference Matrix Identity server. It provides a lookup service, so that you can find a Matrix user via their email address or phone number (if they have chosen to share it).'
website = 'https://github.com/matrix-org/sydent'
default_section = 'servers'
usual_reporters = ['@dmrobertson:matrix.org']
[[projects]]
emoji = 'Commune?'
name = 'commune'
title = 'Commune'
description = 'Commune is a communications suite built on top of matrix. Commune aims to bring together chat, discussions, email and other interactive apps into a single matrix client.'
website = 'https://github.com/commune-org/commune'
default_section = 'clients'
usual_reporters = [
'@erlend_sh:matrix.org',
'@ahq:matrix.org']
[[projects]]
emoji = 'matrix-streamchat?'
name = 'matrix-streamchat'
title = 'matrix-streamchat'
description = 'Matrix powered stream overlay for OBS, to integrate live chat in your favorite (selfhosted) streaming setups.'
website = 'https://git.pixie.town/f0x/matrix-streamchat'
default_section = 'non-chat-clients'
usual_reporters = ['@f0x:pixie.town']
[[projects]]
emoji = 'highlight?'
name = 'matrix-highlight'
title = 'Matrix Highlight'
description = 'A decentralized and federated way of annotating the web based on Matrix.'
website = 'https://github.com/DanilaFe/matrix-highlight'
default_section = 'non-chat-clients'
usual_reporters = ['@daniel:matrix.danilafe.com']
[[projects]]
emoji = 'pops-viewr?'
name = 'populus-viewer'
title = 'Populus Viewer'
description = 'A Social Annotation Tool Powered by Matrix'
website = 'https://github.com/opentower/populus-viewer'
default_section = 'non-chat-clients'
usual_reporters = ['@gleachkr:matrix.org']
[[projects]]
emoji = 'dimension?'
name = 'dimension'
title = 'Dimension'
description = 'An open source integration manager for matrix clients, like Element.'
website = 'https://github.com/turt2live/matrix-dimension'
default_section = 'sdks'
usual_reporters = ['@travis:t2l.io']
[[projects]]
emoji = 'commit?'
name = 'matrix-commit'
title = 'matrix-commit'
description = 'A Github Action for sending messages to a Matrix Room.'
website = 'https://github.com/KrazyKirby99999/matrix-commit'
default_section = 'ops'
usual_reporters = ['@krazykirby99999:matrix.org']
[[projects]]
emoji = 'ChatStat?'
name = 'chatstat'
title = 'ChatStat'
description = 'An R package To Gather Stats From Chat Platforms'
website = 'https://github.com/GregSutcliffe/ChatStat/'
default_section = 'projects'
usual_reporters = ['@gwmngilfen:matrix.org']
[[projects]]
emoji = 'imposterbot?'
name = 'matrix-imposter-bot'
title = 'matrix-imposter-bot'
description = 'A Matrix appservice for relaying messages.'
website = 'https://github.com/mrjohnson22/matrix-imposter-bot'
default_section = 'bots'
usual_reporters = ['@mr_johnson22:matrix.org']
[[projects]]
emoji = 'vodozemac?'
name = 'vodozemac'
title = 'vodozemac'
description = 'An implementation of Olm and Megolm in pure Rust.'
website = 'https://github.com/matrix-org/vodozemac'
default_section = 'sdks'
usual_reporters = ['@poljar:matrix.org']
[[projects]]
emoji = 'wrench?'
name = 'matrix-wrench'
title = 'Matrix Wrench'
description = 'Matrix Wrench is a web client to tweak Matrix rooms.'
website = 'https://gitlab.com/jaller94/matrix-wrench/'
default_section = 'non-chat-clients'
usual_reporters = ['@christianp:vector.modular.im']
[[projects]]
emoji = 'matrix-bot-sdk?'
name = 'matrix-bot-sdk'
title = 'matrix-bot-sdk'
description = 'A TypeScript/JavaScript SDK for Matrix bots'
website = 'https://github.com/turt2live/matrix-bot-sdk'
default_section = 'sdks'
usual_reporters = ['@travis:t2l.io']
[[projects]]
emoji = 'matrix-media-repo?'
name = 'matrix-media-repo'
title = 'matrix-media-repo'
description = 'Matrix media repository with multi-domain in mind.'
website = 'https://github.com/turt2live/matrix-media-repo'
default_section = 'servers'
usual_reporters = ['@travis:t2l.io']
[[projects]]
emoji = 'polyjuice?'
name = 'Polyjuice'
title = 'Polyjuice'
description = 'Elixir libraries related to the Matrix communications protocol.'
website = 'https://gitlab.com/polyjuice'
default_section = 'sdks'
usual_reporters = ['@hubert:uhoreg.ca']
[[projects]]
emoji = 'complement?'
name = 'complement'
title = 'Complement'
description = 'Matrix compliance test suite'
website = 'https://github.com/matrix-org/complement'
default_section = 'sdks'
usual_reporters = ['@kegan:matrix.org']
[[projects]]
emoji = 'nixos-dept?'
name = 'nixos-deployment'
title = 'NixOS Deployment'
description = 'Matrix packaging for NixOS'
website = 'https://nixos.org'
default_section = 'ops'
usual_reporters = ['@piegames:matrix.org']
[[projects]]
emoji = 'dckr-ansible-dpy?'
name = 'matrix-docker-ansible-deploy'
title = 'matrix-docker-ansible-deploy'
description = 'Matrix server setup using Ansible and Docker'
website = 'https://github.com/spantaleev/matrix-docker-ansible-deploy'
default_section = 'ops'
usual_reporters = ['@slavi:devture.com']
[[projects]]
emoji = 'cactus?'
name = 'cactus'
title = 'Cactus Comments'
description = 'Cactus Comments is a federated comment system for the web, based on the Matrix protocol.'
website = 'https://cactus.chat'
default_section = 'non-chat-clients'
usual_reporters = ['@asbjorn:olli.ng']
[[projects]]
emoji = 'ruby-sdk?'
name = 'ruby-matrix-sdk'
title = 'ruby-matrix-sdk'
description = 'Ruby SDK for the Matrix communication protocol'
website = 'https://github.com/ananace/ruby-matrix-sdk'
default_section = 'sdks'
usual_reporters = ['@ace:kittenface.studio']
[[projects]]
emoji = 'mx-art?'
name = 'matrix-art'
title = 'matrix-art'
description = 'An image gallery for Matrix'
website = 'https://github.com/MTRNord/matrix-art'
default_section = 'projects'
usual_reporters = ['@mtrnord:nordgedanken.dev']
[[projects]]
emoji = 'gh-bot?'
name = 'gh-bot'
title = 'GH-Bot'
description = 'The worst (according to its author!) but simplest webhook bot for GitHub and Matrix.'
website = 'https://github.com/Jaedotmoe/gh-bot'
default_section = 'bots'
usual_reporters = ['@me:jae.fi']
[[projects]]
emoji = 'mx-crdt?'
name = 'matrix-crdt'
title = 'matrix-crdt'
description = 'Use Matrix as a backend for local-first applications with the Matrix-CRDT Yjs provider.'
website = 'https://github.com/yousefED/matrix-crdt'
default_section = 'sdks'
usual_reporters = ['@yousefed:matrix.org']
[[projects]]
emoji = 'beeper?'
name = 'beeper'
title = 'Beeper'
description = 'All you chats in one app.'
website = 'https://www.beeper.com'
default_section = 'clients'
usual_reporters = ['@brad:beeper.com']
[[projects]]
emoji = 'circles?'
name = 'circles'
title = 'Circles'
description = 'E2E encrypted social networking built on Matrix. Safe, private sharing for your friends, family, and community.'
website = 'https://www.kombuchaprivacy.com/circles/'
default_section = 'non-chat-clients'
usual_reporters = ['@cvwright:matrix.org']
[[projects]]
emoji = 'emm?'
name = 'emm'
title = 'export matrix messages'
description = 'A commandline utility to export matrix messages'
website = 'https://gitlab.com/etke.cc/emm'
default_section = 'non-chat-clients'
usual_reporters = ['@aine:etke.cc']
[[projects]]
emoji = 'honoroit?'
name = 'honoroit'
title = 'Honoroit'
description = 'A Matrix helpdesk bot'
website = 'https://gitlab.com/etke.cc/honoroit'
default_section = 'bots'
usual_reporters = ['@aine:etke.cc']
[[projects]]
emoji = 'sailtrix?'
name = 'sailtrix'
title = 'Sailtrix'
description = 'Sailtrix is a matrix client for SailfishOS'
website = 'https://gitlab.com/HengYeDev/harbour-sailtrix'
default_section = 'clients'
usual_reporters = ['@hengyedev:mozilla.org']
[[projects]]
emoji = 'watch-mx?'
name = 'watch-mx'
title = 'Watch The Matrix'
description = 'A watchOS client for Matrix'
website = 'https://github.com/pixlwave/Watch-The-Matrix'
default_section = 'clients'
usual_reporters = ['@douge:matrix.org']
[[projects]]
emoji = 'bubo?'
name = 'bubo'
title = 'Bubo'
description = 'Matrix bot to help with community management'
website = 'https://github.com/elokapina/bubo'
default_section = 'bots'
usual_reporters = ['@jaywink:federator.dev']
[[projects]]
emoji = 'moment?'
name = 'moment'
title = 'Moment'
description = 'A Matrix client; forked from Mirage.'
website = 'https://mx-moment.xyz'
default_section = 'clients'
usual_reporters = ['@maze:mazie.rocks']
[[projects]]
emoji = 'corporal?'
name = 'matrix-corporal'
title = 'Matrix Corporal'
description = 'reconciliator and gateway for a managed Matrix server'
website = 'https://github.com/devture/matrix-corporal'
default_section = 'ops'
usual_reporters = ['@slavi:devture.com']
[[projects]]
emoji = 'nheko-krunner?'
name = 'nheko-krunner'
title = 'nheko-krunner'
description = 'A KRunner plugin to list joined rooms and possibly other things from nheko.'
website = 'https://github.com/LorenDB/nheko-krunner'
default_section = 'non-chat-clients'
usual_reporters = ['@lorendb:matrix.org']
[[projects]]
emoji = 'matrix-wordle?'
name = 'matrix-wordle'
title = 'matrix-wordle'
description = 'An implementation of the popular Wordle game for the Matrix Protocol.'
website = 'https://github.com/KrazyKirby99999/matrix-wordle'
default_section = 'bots'
usual_reporters = ['@krazykirby99999:matrix.org']
[[projects]]
emoji = 'mnir-widget?'
name = 'mnir-widget'
title = 'Mjolnir Widget'
description = 'A widget for moderating with mjolnir. Highly WIP. Use at your own risk!'
website = 'https://github.com/MTRNord/matrix-moderation-widget'
default_section = 'widgets'
usual_reporters = ['@mtrnord:nordgedanken.dev']
[[projects]]
emoji = 'mtxclient?'
name = 'mtxclient'
title = 'mtxclient'
description = 'Client API library for Matrix, built on top of libcurl'
website = 'https://github.com/Nheko-Reborn/mtxclient'
default_section = 'sdks'
usual_reporters = ['@deepbluev7:neko.dev']
[[projects]]
emoji = 'commty-mgr?'
name = 'matrix-community-manager'
title = 'Matrix Community Manager'
description = 'Looking for a bot to manage events and feedback from your community?'
website = 'https://gitlab.com/Sleuth56/Matrix-Community-Manager/'
default_section = 'bots'
usual_reporters = ['@sloth56:chat.mountainview.theworkpc.com', '@sleuth:rexrobotics.org']
[[projects]]
emoji = 'kakaotalk bridge?'
name = 'matrix-appservice-kakaotalk'
title = 'matrix-appservice-kakaotalk'
description = 'A Matrix-KakaoTalk puppeting bridge.'
website = 'https://src.miscworks.net/fair/matrix-appservice-kakaotalk/'
default_section = 'bridges'
usual_reporters = ['@fair:miscworks.net']
[[projects]]
emoji = 'Ruma?'
name = 'ruma'
title = 'Ruma'
description = 'A set of Rust library crates for working with the Matrix protocol. Ruma’s approach to Matrix emphasizes correctness, security, stability and performance.'
website = 'https://www.ruma.io'
default_section = 'sdks'
usual_reporters = ['@jplatte:flipdot.org']
[[projects]]
emoji = 'Synatainer?'
name = 'synatainer'
title = 'Synatainer'
description = 'Synapse Maintenance Container – Docker container with tools for synapse & postgres database maintenance'
website = 'https://gitlab.com/mb-saces/synatainer'
default_section = 'ops'