-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathawesome-nostr-japan.toml
1363 lines (1061 loc) · 49.7 KB
/
awesome-nostr-japan.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
[awesome-nostr-japan]
caption = "awesome-nostr-japan"
description = "Awesome [nostr](https://nostr.com/) in Japan. Software, Web service, Clients, Bots created by Japanese. [日本語版](README-ja.md)"
description_ja = "日本版Awesome [nostr](https://nostr.com/). 日本製のSoftware, Web service, Clients, Bots. [English version](README.md)"
# Key is for reference only.
[Relays]
caption = "Relays"
[Relays.relay_nostr_wirednet_jp]
name = ""
address = "wss://relay.nostr.wirednet.jp"
description = "World wide relay"
description_ja = "ワールドワイドリレー"
author_name = ["imksoo"]
author_url = ["https://github.com/imksoo"]
[Relays.relay-jp_nostr_wirednet_jp]
name = ""
address = "wss://relay-jp.nostr.wirednet.jp"
description = "Japanese oriented relay"
description_ja = "日本向けリレー"
author_name = ["imksoo"]
author_url = ["https://github.com/imksoo"]
[Relays.ipv6_nostr_wirednet_jp]
name = ""
address = "wss://ipv6.nostr.wirednet.jp"
description = "ipv6 relay"
description_ja = "ipv6リレー"
author_name = ["imksoo"]
author_url = ["https://github.com/imksoo"]
[Relays.nostr_holybea_com]
name = ""
address = "wss://nostr.holybea.com"
description = ""
description_ja = ""
author_name = ["ほりべあ"]
author_url = ["https://holybea.com"]
[Relays.nostr_fediverse_jp]
name = ""
address = "wss://nostr.fediverse.jp"
description = ""
description_ja = ""
author_name = ["αυγοτάραχο σολωμου"]
author_url = ["https://nostx.shino3.net/npub1xmqfm9s0yxyadzjh0cp7gsf7fxy0xfgaq23cp9p7fnee6cehrlxq6c6tkw"]
[Relays.yabu_me]
name = ""
address = "wss://yabu.me"
description = "Aggregator relay for (mainly) Japanese users."
description_ja = "(主に) 日本ユーザー向けのアグリゲーターリレー"
author_name = ["αυγοτάραχο σολωμου"]
author_url = ["https://yabu.me/npub1kurad0nlm8xfuxhws05pcwv5z4k0ea6da4dsjygexr77a666pssqsftsm7"]
[Relays.nostr-relay_nokotaro_com]
name = ""
address = "wss://nostr-relay.nokotaro.com"
description = "World wide relay"
description_ja = "ワールドワイドリレー"
author_name = ["Nokotaro Takeda"]
author_url = ["https://github.com/nokotaro"]
[Relays.nrelay_c-stellar_net]
name = ""
address= "wss://nrelay.c-stellar.net"
description = "Relay that only allows followers of the operator to write"
description_ja = "運営者のフォロワーのみ書き込み可能なリレー"
author_name = ["jiftechnify"]
author_url = ["https://github.com/jiftechnify"]
[Relays.nrelay-jp_c-stellar_net]
name = ""
address= "wss://nrelay-jp.c-stellar.net"
description = "Japanese oriented relay"
description_ja = "日本向けリレー"
author_name = ["jiftechnify"]
author_url = ["https://github.com/jiftechnify"]
[Relays.relay_yozora_world]
name = ""
address= "wss://relay.yozora.world"
description = "Paid relay via Starlink's satellite network"
description_ja = "Starlinkの衛星回線のみで運用されている有料リレー"
author_name = ["godzhigella"]
author_url = ["https://github.com/higedamc"]
[Relays.r_kojira_io]
name = ""
address = "wss://r.kojira.io"
description = "Japanese oriented relay"
description_ja = "日本向けリレー"
author_name = ["kojira"]
author_url = ["https://github.com/kojira"]
[Relays.nostr_compile_error_net]
name = ""
address = "wss://nostr.compile-error.net"
description = "Japanese oriented relay written in Go"
description_ja = "Go で書かれた日本向けリレー"
author_name = ["mattn"]
author_url = ["https://github.com/mattn"]
[Relays.cagliostr_compile_error_net]
name = ""
address = "wss://cagliostr.compile-error.net"
description = "Japanese oriented relay written in C++"
description_ja = "C++ で書かれた日本向けリレー"
author_name = ["mattn"]
author_url = ["https://github.com/mattn"]
[WebServices]
caption = "Web Services"
[WebServices.Nostrends]
name = "Nostrends"
address = "https://nostrends.vercel.app"
description = "Trending posts on nostr."
description_ja = "nostrのトレンド表示サイト"
author_name = ["akiomik"]
author_url = ["https://github.com/akiomik"]
[WebServices.nostrbuzzs]
name = "nostrbuzzs"
address = "https://nostrbuzzs.deno.dev"
description = "Trending nostr's buzz word"
description_ja = "nostrのトレンドバズワード表示サイト"
author_name = ["darashi"]
author_url = ["https://github.com/darashi"]
[WebServices.nosutora]
name = "nosutora"
address = "https://nosutora.com"
description = "Get NIP-05"
description_ja = "nostr のドメイン名認証(NIP-05)を簡単にできるやつ"
author_name = ["https://njump.me/[email protected]"]
author_url = ["https://njump.me/[email protected]"]
[WebServices.nostr-post-checker]
name = "nostr-post-checker"
address = "https://koteitan.github.io/nostr-post-checker/"
description = "post checker for nostr protocol."
description_ja = "イベントがどのリレーに存在し、どのリレーに存在していないかを確認できるツール"
author_name = ["koteitan"]
author_url = ["https://github.com/koteitan"]
[WebServices.Nosli]
name = "Nosli"
address = "https://nosli.vercel.app"
description = "Create curated list of posts on nostr with NIP-23 backend."
description_ja = "Nosli (ノスリ) は、分散SNSのためのオープンプロトコルである Nostr 上の投稿まとめ作成ツール(NIP-23を使用)"
author_name = ["akiomik"]
author_url = ["https://github.com/akiomik"]
[WebServices.nostr-picker]
name = "nostr-picker"
address = "https://penpenpng.github.io/nostr-picker/"
description = "Nostr Picker"
description_ja = "公開鍵からお気に入り投稿を取得します"
author_name = ["penpenpng"]
author_url = ["https://github.com/penpenpng"]
[WebServices.nostradio]
name = "Nostr村放送局(nostradio)"
address = "https://nostradio.deno.dev/"
description = "Speaking nostr's post on web radio"
description_ja = "nostrの投稿を読み上げるWebラジオ"
author_name = ["darashi"]
author_url = ["https://github.com/darashi"]
[WebServices.murasaki]
name = "murasaki"
address = "https://github.com/darashi/murasaki"
description = "Nostr speaker on web with [VOICEVOX](https://voicevox.hiroshiba.jp/)"
description_ja = "VOICEVOX を利用したタイムライン読み上げツール"
author_name = ["darashi"]
author_url = ["https://github.com/darashi"]
[WebServices.Speaking_nostrs_post_on_web_radio_by_murasaki]
name = "Speaking nostr's post on web radio by murasaki"
address = "http://ik1-219-79732.vs.sakura.ne.jp:5000/nostr_listen.html"
description = ""
description_ja = "murasakiを用いたnostrの投稿を読み上げるWebラジオ"
author_name = ["淀川"]
author_url = ["https://nostx.shino3.net/npub15w7wp9wdp6p53vy5eysph5xryu82ltmc7am9zl6pqyexmt6ukllst6ddy2"]
[WebServices.Nosaray]
name = "Nosaray"
address = "https://github.com/jiftechnify/nosaray"
description = "Wayback Machine for Nostr"
description_ja = "過去の投稿を取得するツール"
author_name = ["jiftechnify"]
author_url = ["https://github.com/jiftechnify"]
[WebServices.nostr-notes-duplicate]
name = "nostr-notes-duplicate"
address = "https://nostrlogs-relay-jp.nostr.wirednet.jp/nostr-notes-duplicate.html"
description = "Post synchronization tool to multiple relays"
description_ja = "複数リレー間の投稿同期ツール"
author_name = ["imksoo"]
author_url = ["https://github.com/imksoo"]
[WebServices.nostrlogs]
name = "nostrlogs"
address = "https://nostrlogs-relay-jp.nostr.wirednet.jp/nostrlogs.html"
description = "Fetch posts from multi relays and submit to a selected relay"
description_ja = "過去の投稿の表示と、別リレーへの投稿同期ツール"
author_name = ["imksoo"]
author_url = ["https://github.com/imksoo"]
[WebServices.NostrFlu]
name = "NostrFlu"
address = "https://heguro.github.io/nostr-following-list-util/"
description = "Find and display past kind:3 (Contacts) events from multiple relays, backup and etc"
description_ja = "Nostr Following List Util: Nostrのフォローリストを集めたり再送信するやつ"
author_name = ["heguro"]
author_url = ["https://github.com/heguro"]
[WebServices.NosTx]
name = "NosTx"
address = "https://github.com/ShinoharaTa/Nostx"
description = "To Nostr client transformer from note & userpub key"
description_ja = ""
author_name = ["ShinoharaTa"]
author_url = ["https://github.com/ShinoharaTa/Nostx"]
[WebServices.Nostr_search_portal]
name = "Nostr search portal"
address = "https://nostr.hoku.in/"
description = "Nostr portal. Big function is a search engine in japanese. and etc."
description_ja = "Nostr上の日本語のNote(つぶやき)をキーワード検索できるポータル"
author_name = ["hoku"]
author_url = ["https://njump.me/[email protected]"]
[WebServices.illust_tagged_notes_on_Nostr]
name = "#illust tagged notes on Nostr"
address = "https://nostr-illust.vercel.app/"
description = "Illustration viewing"
description_ja = "#illust タグで投稿されたイラストを表示するサイト"
author_name = ["murakmii"]
author_url = ["https://github.com/murakmii"]
[WebServices.BBS_on_Nostr]
name = "BBS on Nostr"
address = "https://bbs-on-nostr.vercel.app/"
description = "BBS using nostr as data storage [https://github.com/murakmii/bbs-on-nostr](https://github.com/murakmii/bbs-on-nostr)"
description_ja = "Nostr上に実験的に実装されたBBS [https://github.com/murakmii/bbs-on-nostr](https://github.com/murakmii/bbs-on-nostr)"
author_name = ["murakmii"]
author_url = ["https://github.com/murakmii"]
[WebServices.nostrbbs]
name = "nostrbbs"
address = "https://test.ikeji.ma/nostrbbs"
description = "BBS using nostr as data storage"
description_ja = "nostrをデータ保存場所として使う掲示板"
author_name = ["ikeji"]
author_url = ["https://github.com/ikeji"]
[WebServices.nostr-reversi]
name = "nostr-reversi"
address = "https://github.com/studiokaiji/nostr-reversi"
description = "Reversi working on Nostr"
description_ja = "nostr上で動作するリバーシ"
author_name = ["kaiji"]
author_url = ["https://github.com/studiokaiji"]
[WebServices.shotr]
name = "shotr"
address = "https://6or.cc/"
description = "Shorted URL service powered by nostr. [https://github.com/ocknamo/shotr](https://github.com/ocknamo/shotr)"
description_ja = "nostrで動作するURL短縮サービス [https://github.com/ocknamo/shotr](https://github.com/ocknamo/shotr)"
author_name = ["ocknamo"]
author_url = ["https://github.com/ocknamo"]
[WebServices.nostr-hottrr]
name = "野州田川水系 定点観測所"
address = "https://nostr-hotter-site.vercel.app"
description = "nostr Relay (JP) site that displays the number of posts in a graph."
description_ja = "nostr リレー(JP)の投稿数をグラフ表示してくれるサイト"
author_name = ["ShinoharaTa"]
author_url = ["https://github.com/ShinoharaTa"]
[WebServices.nosey]
name = "nosey"
address = "https://nosey.vercel.app"
description = "Search engine for nostr"
description_ja = "nostr 用サーチエンジン"
author_name = ["akiomik"]
author_url = ["https://github.com/akiomik"]
[WebServices."nostr.json generator"]
name = "nostr.json generator"
address = "https://snowcait.github.io/nostr-json-generator"
description = "Generate nostr.json from NIP-65 or NIP-07"
description_ja = "NIP-65 または NIP-07 から nostr.json を生成"
author_name = ["SnowCait"]
author_url = ["https://github.com/SnowCait"]
[WebServices.findmine]
name = "findmine"
address = "https://koteitan.github.io/findmine/"
description = "search your posts in nostr/Bluesky/twitter/twilog."
description_ja = "nostr/Bluesky/twitter/twilog で自分の投稿を検索"
author_name = ["koteitan"]
author_url = ["https://github.com/koteitan"]
[WebServices.nostr-bookmark-trend]
name = "nostr-bookmark-trend"
address = "https://nikolat.github.io/nostr-bookmark-trend/"
description = "show Nostr events bookmarked by followees"
description_ja = "フォローイーがブックマークしているイベントを表示"
author_name = ["nikolat"]
author_url = ["https://github.com/nikolat"]
[WebServices.NostViewstr]
name = "NostViewstr"
address = "https://nostviewstr.vercel.app/"
description = "Web app to view and edit various Nostr events"
description_ja = "いろんなNostrイベントを見たり編集したりできるWebアプリ"
author_name = ["mono"]
author_url = ["https://github.com/TsukemonoGit"]
[WebServices.Luminostr]
name = "Luminostr"
address = "https://tsukemonogit.github.io/luminostr/"
description = "Find replaceable events of a specific kind from various relays, and overwrite them with the events at a specific point in time."
description_ja = "Nostrの特定のkindの置換可能(replaceable)イベントをいろんなリレーから探しだして、特定の時点でのイベントで上書きする"
author_name = ["mono"]
author_url = ["https://github.com/TsukemonoGit"]
[WebServices.zapline-jp]
name = "Zapline-JP"
address = "https://tiltpapa.github.io/zapline-jp"
description = "Watching Zap of Japan cluster"
description_ja = "日本ユーザーのZapの流れを観察できるサイト"
author_name = ["tiltpapa"]
author_url = ["https://github.com/tiltpapa"]
[WebServices.MAKIBISHI]
name = "MAKIBISHI"
address = "https://nikolat.github.io/makibishi/"
description = "add a star to any website"
description_ja = "あらゆるWebサイトにスターを付けられるようにする"
author_name = ["nikolat"]
author_url = ["https://github.com/nikolat"]
[WebServices.nostr-hours]
name = "Nostr hours"
address = "https://snowcait.github.io/nostr-hours/"
description = "How many hours do you spend in Nostr?"
description_ja = "活動時間の可視化"
author_name = ["SnowCait"]
author_url = ["https://github.com/SnowCait"]
[WebServices.chiihou]
name = "地鳳"
address = "https://nikolat.github.io/chiihou/"
description = "Mahjong game online"
description_ja = "オンライン麻雀ゲーム"
author_name = ["nikolat"]
author_url = ["https://github.com/nikolat"]
[WebServices.NFO]
name = "Nostr Follow Organizer"
address = "https://tsukemonogit.github.io/NFO/"
description = "It retrieves a user's following list and displays information such as the time of their most recent post and whether or not they are following each other. There is also a sorting function, so you can easily organize your following, such as people who haven't posted recently."
description_ja = "ユーザーのフォローリストを取得し、最新の投稿日時や相互フォローの有無などの情報を表示します。並び替え機能もあるので、最近投稿していない人など、フォローしているユーザーを簡単に整理できます。"
author_name = ["mono"]
author_url = ["https://github.com/TsukemonoGit"]
[WebServices.nostr-share]
name = "nostr-share-component"
address = "https://tsukemonogit.github.io/nostr-share-component/"
description = "This component allows you to easily add a button to share a web page on Nostr."
description_ja = "サイトをNostrで共有するボタンを簡単に追加できるコンポーネントです。"
author_name = ["mono"]
author_url = ["https://github.com/TsukemonoGit"]
[WebClients]
caption = "Web Clients"
[WebClients.nostter]
name = "nostter"
address = "http://nostter.vercel.app"
description = "Nostr client for web."
description_ja = "Nostr Webクライアント"
author_name = ["SnowCait"]
author_url = ["https://github.com/SnowCait"]
[WebClients.Rabbit]
name = "Rabbit"
address = "https://rabbit.syusui.net/"
description = "A nostr client like TweetDeck."
description_ja = "TweetDeckライクなNostr Webクライアント"
author_name = ["syusui-s"]
author_url = ["https://github.com/syusui-s"]
[WebClients.Astraea]
name = "Astraea"
address = "https://astraea.mousedev.page"
description = "Nostr client for web."
description_ja = "Nostr Webクライアント"
author_name = ["mouse"]
author_url = ["https://njump.me/[email protected]"]
[WebClients.lumilumi]
name = "Lumilumi"
address = "https://lumilumi.app/"
description = "Nostr client for web."
description_ja = "Nostr Webクライアント"
author_name = ["mono"]
author_url = ["https://github.com/TsukemonoGit"]
[WebClients.Nos_Haiku]
name = "Nos Haiku"
address = "https://nos-haiku.vercel.app/"
description = "Nostr client for web."
description_ja = "Nostr Webクライアント"
author_name = ["nikolat"]
author_url = ["https://github.com/nikolat"]
[WebClients.Nostr_Feeds_from_relay-jp_nostr_wirednet_jp]
name = "Nostr Feeds from relay-jp.nostr.wirednet.jp. (のぞき窓/Nozokimado)"
address = "https://relay-jp.nostr.wirednet.jp/index.html"
description = "Simple Nostr Relay Feed Reader"
description_ja = "シンプルなリレーフィードリーダー"
author_name = ["imksoo"]
author_url = ["https://github.com/imksoo"]
[WebClients.GARNET]
name = "GARNET"
address = "https://garnet.nostrian.net"
description = "Nostr Public Chat(NIP-28) Client."
description_ja = "Nostr パブリックチャット(NIP-28) クライアント"
author_name = ["murakmii"]
author_url = ["https://github.com/murakmii"]
[WebClients.Unyu_house]
name = "うにゅうハウス"
address = "https://unyu-house.vercel.app"
description = "The web client for NIP-28(Public Chat)."
description_ja = "NIP-28(パブリックチャット)用Webクライアント"
author_name = ["nikolat"]
author_url = ["https://github.com/nikolat"]
[WebClients.nos_today]
name = "nos.today"
address = "https://nos.today/"
description = "search web client"
description_ja = "Web検索クライアント"
author_name = ["darashi"]
author_url = ["https://github.com/darashi"]
[WebClients.Nostr_playground]
name = "Nostr playground"
address = "https://snowcait.github.io/nostr-playground/"
description = "JSON-based Nostr web client written in plain JavaScript."
description_ja = "plain JavaScriptで作成された、JSONベースのNostr Webクライアント"
author_name = ["SnowCait"]
author_url = ["https://github.com/SnowCait"]
[WebClients.Angolmois]
name = "Angolmois"
address = "https://github.com/nikolat/angolmois"
description = "Retrieve posts from Nostr and send SSTP to Ukagaka."
description_ja = "投稿を表示すると同時に伺か互換ベースウェア(SSTPサーバー)にSSTPを送信し、ゴースト(キャラクター)に投稿を喋らせるNostr Webアプリ"
author_name = ["nikolat"]
author_url = ["https://github.com/nikolat"]
[WebClients.vscode-nostr-client]
name = "vscode-nostr-client"
address = "https://marketplace.visualstudio.com/items?itemName=jiftechnify.nostr-client"
description = "Nostr client as a VSCode extension."
description_ja = "VSCode拡張機能として動作するNostrクライアント"
author_name = ["jiftechnify"]
author_url = ["https://github.com/jiftechnify"]
[WebClients.nostatus]
name = "nostatus"
address = "https://nostatus.vercel.app"
description = "A nostr client that specializes in browsing user statuses (NIP-38)."
description_ja = "ユーザステータス(NIP-38) の閲覧に特化したクライアント"
author_name = ["jiftechnify"]
author_url = ["https://github.com/jiftechnify"]
[CLIClients]
caption = "CLI Clients"
[CLIClients.algia]
name = "algia"
address = "https://github.com/mattn/algia"
description = "A cli application for nostr"
description_ja = "nostr向けcliアプリケーション"
author_name = ["mattn"]
author_url = ["https://github.com/mattn"]
[CLIClients.nostk]
name = "nostk"
address = "https://github.com/mitsugu/nostk"
description = "A cli application for nostr"
description_ja = "nostr向けcliアプリケーション"
author_name = ["mitsugu oyama (orzbruford)"]
author_url = ["https://github.com/mitsugu"]
[CLIClients.nosp]
name = "nosp"
address = "https://github.com/mitsugu/nosp"
description = "A tui controller and pager for nostk"
description_ja = ""
author_name = ["mitsugu oyama (orzbruford)"]
author_url = ["https://github.com/mitsugu"]
[CLIClients.nosdump]
name = "nosdump"
address = "https://github.com/jiftechnify/nosdump"
description = "A cli tool for dumping events stored in relays"
description_ja = "リレーに保存されたイベントをダンプするCLIツール"
author_name = ["jiftechnify"]
author_url = ["https://github.com/jiftechnify"]
[CLIClients.nostui]
name = "nostui"
address = "https://github.com/akiomik/nostui"
description = "A TUI client for Nostr"
description_ja = "Nostr用TUIクライアント"
author_name = ["akiomik"]
author_url = ["https://github.com/akiomik"]
[WindowsClients]
caption = "Windows Clients"
[WindowsClients.nokakoi]
name = "nokakoi"
address = "https://github.com/betonetojp/nokakoi"
description = "A nostr client for Windows just to post and browse the global timeline."
description_ja = "Nostrのリレーサーバーに接続して投稿したりグローバルタイムラインをリアルタイムに表示したりするアプリケーション"
author_name = ["betoneto"]
author_url = ["https://github.com/betonetojp"]
[WindowsClients.noka]
name = "noka"
address = "https://github.com/betonetojp/noka"
description = "A nostr client for Windows just to browse the global timeline."
description_ja = "Nostrのリレーサーバーに接続してグローバルタイムラインをリアルタイムに表示するアプリケーション"
author_name = ["betoneto"]
author_url = ["https://github.com/betonetojp"]
[WindowsClients.nostalk]
name = "nostalk"
address = "https://github.com/nikolat/nostalk"
description = "Ukagaka ghost with support for Nostr event notification via SSTP"
description_ja = "SSTP通信によるNostrイベント通知に対応した伺かゴースト"
author_name = ["nikolat"]
author_url = ["https://github.com/nikolat"]
[RelayImplementations]
caption = "Relay implementations"
[RelayImplementations.nostr-relay]
name = "nostr-relay"
address = "https://github.com/mattn/nostr-relay"
description = "postgresql/mysql/sqlite3 backended nostr relay. backup by [litestream](https://litestream.io/) for sqlite"
description_ja = ""
author_name = ["mattn"]
author_url = ["https://github.com/mattn"]
[RelayImplementations.searchnos]
name = "searchnos"
address = "https://github.com/darashi/searchnos"
description = "An experimental implementation of NIP-50."
description_ja = "NIP-50の試験的な実装"
author_name = ["darashi"]
author_url = ["https://github.com/darashi"]
[RelayImplementations.cagliostr]
name = "cagliostr"
address = "https://github.com/mattn/cagliostr"
description = "C++ implementation of Nostr relay"
description_ja = ""
author_name = ["mattn"]
author_url = ["https://github.com/mattn"]
[RelayImplementations.zig-nostr-relay]
name = "zig-nostr-relay"
address = "https://github.com/mattn/zig-nostr-relay"
description = "Zig implementation of Nostr relay"
description_ja = ""
author_name = ["mattn"]
author_url = ["https://github.com/mattn"]
[Tools]
caption = "Tools"
[Tools.nostr-keyx]
name = "nostr-keyx"
address = "https://github.com/susumuota/nostr-keyx"
description = "A NIP-07 browser extension that uses the OS's keychain or YubiKey to protect your private keys. "
description_ja = "OSキーチェーンやYubikeyを用いて秘密鍵を保護するNIP-07ブラウザ拡張"
author_name = ["susumuota"]
author_url = ["https://github.com/susumuota"]
[Tools.share-on-nostr]
name = "share-on-nostr"
address = "https://github.com/penpenpng/share-on-nostr"
description = "Chrome extension to share URL of an active tab on Nostr."
description_ja = "アクティブなタブを短縮URLにしてNostrで共有するChrome拡張"
author_name = ["penpenpng"]
author_url = ["https://github.com/penpenpng"]
[Tools.nake]
name = "nake"
address = "https://github.com/TsukemonoGit/nake"
description = "chrome & firefox Extension easily convert between NOSTR's hexid⇔NIP-19 (bech32-encoded entities)."
description_ja = "NostrのHEXIDとNIP-19 (bech32-encoded entities)を簡単に相互変換できるchrome & firefox 拡張機能"
author_name = ["mono"]
author_url = ["https://github.com/TsukemonoGit"]
[Tools.danmakustr]
name = "danmakustr"
address = "https://chromewebstore.google.com/detail/mohbdimkkpjjibdfipfajpgpmegnglhb"
description = "A Chrome extension based on Nostr that allows users to send comments on YouTube in a style similar to Niconico."
description_ja = "Nostrを基盤としたChrome拡張機能で、YouTube上でニコニコ風のコメントを送信できます"
author_name = ["cody"]
author_url = ["https://github.com/CodyTseng"]
[Bots]
caption = "Bots"
[Bots.haiku]
name = "haiku"
address = "https://njump.me/[email protected]"
description = "[Haiku](https://en.wikipedia.org/wiki/Haiku) collector"
description_ja = "[俳句](https://ja.wikipedia.org/wiki/%E4%BF%B3%E5%8F%A5)コレクター"
author_name = ["mattn"]
author_url = ["https://github.com/mattn"]
[Bots.markovbot]
name = "markovbot"
address = "https://njump.me/[email protected]"
description = "Markov chain bot"
description_ja = "マルコフ連鎖ボット"
author_name = ["mattn"]
author_url = ["https://github.com/mattn"]
[Bots.golang_news]
name = "golang_news"
address = "https://njump.me/[email protected]"
description = "[Go](https://go.dev) language news"
description_ja = "[Go](https://go.dev) 言語ニュース"
author_name = ["mattn"]
author_url = ["https://github.com/mattn"]
[Bots.nips_changes]
name = "nips_changes"
address = "https://njump.me/[email protected]"
description = "Git commit changes on [github.com/nostr-protocol/nips](https://github.com/nostr-protocol/nips/)"
description_ja = "[github.com/nostr-protocol/nips](https://github.com/nostr-protocol/nips/)のgitコミットをお知らせ"
author_name = ["mattn"]
author_url = ["https://github.com/mattn"]
[Bots.makeitquote]
name = "makeitquote"
address = "https://njump.me/[email protected]"
description = "Generate image of the post"
description_ja = "投稿から画像を生成"
author_name = ["mattn"]
author_url = ["https://github.com/mattn"]
[Bots.nullpoga]
name = "nullpoga"
address = "https://nostx.shino3.net/npub1f6rvmwc76arl7sxx2vparlzx8cg2ajc3xpymqh7yx97znccue2hs5mkavc"
description = "A misc bot"
description_ja = "いろいろbot"
author_name = ["mattn"]
author_url = ["https://github.com/mattn"]
[Bots.mahjong]
name = "mahjong"
address = "https://nostx.shino3.net/npub1ttqyyl8stz9wtj0sn25qp6vah0jdcxwpdtaaxg4efsqkczz7rsxshjpp3x"
description = "A bot for playing mahjong game"
description_ja = "麻雀ゲームbot"
author_name = ["mattn"]
author_url = ["https://github.com/mattn"]
[Bots.namazu]
name = "EEWなまずくん予報"
address = "https://njump.me/[email protected]"
description = "Earthquake Early Warning"
description_ja = "緊急地震速報"
author_name = ["matsuu"]
author_url = ["https://njump.me/[email protected]"]
[Bots.Nostify]
name = "Nostify"
address = "https://github.com/kojira/nostify"
description = "A bot that posts Nostr posts that match the filter settings to discord."
description_ja = "Nostrのリレーサーバーに接続して、discordに投稿するdiscord bot"
author_name = ["kojira"]
author_url = ["https://github.com/kojira"]
[Bots.Nostr-chan]
name = "Nostr-chan"
address = "https://github.com/kojira/nostr-chan"
description = "communication bots powered by ChatGPT"
description_ja = "ChatGPTにより会話できるbot"
author_name = ["kojira"]
author_url = ["https://github.com/kojira"]
[Bots.Nostrchan]
name = "Nostrchan"
address = "https://nostx.shino3.net/npub1f2v6jwct47c2wx5849zzyv5hmpkzulmj3tj44s0r5h7ljxfyay3s5fp3te"
description = "communication bots powered by ChatGPT"
description_ja = "ChatGPTにより会話できるbot"
author_name = ["kojira"]
author_url = ["https://github.com/kojira"]
[Bots.Nostrchan2]
name = "Nostrchan2"
address = "https://nostx.shino3.net/npub1ev3s5h5ngxscp8qd094wfd367xj38de4cjdc4gyj0r7ng99wmqeqj66k2s"
description = "communication bots powered by ChatGPT"
description_ja = "ChatGPTにより会話できるbot"
author_name = ["kojira"]
author_url = ["https://github.com/kojira"]
[Bots.Nostrchan3]
name = "Nostrchan3"
address = "https://nostx.shino3.net/npub1qpvchcscwvtxnn4aj4r0ya2lfujmvua76k7rn3mrcap47vjkp5nsu7rcm3"
description = "communication bots powered by ChatGPT"
description_ja = "ChatGPTにより会話できるbot"
author_name = ["kojira"]
author_url = ["https://github.com/kojira"]
[Bots.Nostrchan4]
name = "Nostrchan4"
address = "https://nostx.shino3.net/npub1ytrn8t6yeehhkgarfkd7hxdnpy665zfxkhd6gnjdm6wzmkjqjnlsgnz5r2"
description = "communication bots powered by ChatGPT"
description_ja = "ChatGPTにより会話できるbot"
author_name = ["kojira"]
author_url = ["https://github.com/kojira"]
[Bots.Nostrchan0]
name = "Nostrchan0"
address = "https://nostx.shino3.net/npub1hk8wmj288k48ezpqe9ptw3rkkmucue6c60gs9rtjk60ftpp9qxlqv2xhle"
description = "communication bots powered by ChatGPT"
description_ja = "ChatGPTにより会話できるbot"
author_name = ["kojira"]
author_url = ["https://github.com/kojira"]
[Bots.kojiranyan]
name = "kojiranyan"
address = "https://nostx.shino3.net/npub1nnumvzrexs63usytjuwn6ntcy3gr4jqm3ek5tcqsuf2yqk2dkjrsrdxqrl"
description = "communication bots powered by ChatGPT"
description_ja = "ChatGPTにより会話できるbot"
author_name = ["kojira"]
author_url = ["https://github.com/kojira"]
[Bots.Nostaro]
name = "Nostaro"
address = "https://nostx.shino3.net/npub1nwzquyssngld942vwh58yfrwwmvk530um443w8w8y0h2cu3ju2dsl4hqsg"
description = "communication bots powered by ChatGPT"
description_ja = "ChatGPTにより会話できるbot"
author_name = ["kojira"]
author_url = ["https://github.com/kojira"]
[Bots.Skyka]
name = "Skyka"
address = "https://nostx.shino3.net/npub1ae7eax3n5erecwys65kwjcp0lqlsxfj9789f842gwvuy79kq9dzqf7h6mm"
description = "communication bots powered by ChatGPT"
description_ja = "ChatGPTにより会話できるbot"
author_name = ["kojira"]
author_url = ["https://github.com/kojira"]
[Bots.Qchan]
name = "Qchan"
address = "https://nostx.shino3.net/npub13exd4j32ldnktu7p34w4csw2nc2s9cypd6tw3h60cau7qvgrp49qpvqjhl"
description = "Create a Japanese timeline summary"
description_ja = "日本語タイムラインの要約を作成"
author_name = ["kojira"]
author_url = ["https://github.com/kojira"]
[Bots.npub1pp79ruvjd7xned8lgh6n4rhz4pg3els3x5n6kr58l8zcyysp5c0qrkan2p]
name = "日本人ユーザー (bot)"
address = "https://nostx.shino3.net/npub1pp79ruvjd7xned8lgh6n4rhz4pg3els3x5n6kr58l8zcyysp5c0qrkan2p"
description = "Follow Japanese users."
description_ja = "日本語圏ユーザーをフォロー"
author_name = ["SnowCait"]
author_url = ["https://github.com/SnowCait"]
[Bots.REQ]
name = "REQ"
address = "https://nostx.shino3.net/npub1x22zy06nn8h44cycdv4trxp8v0dv8qq3ayahpkrcn3rh90gp552sqs8hmv"
description = "A bot for replying REQ response"
description_ja = "REQ応答を返却するbot"
author_name = ["SnowCait"]
author_url = ["https://github.com/SnowCait"]
[Bots.search]
name = "search"
address = "https://nostx.shino3.net/npub1n2uhxrph9fgyp3u2xxqxhuz0vykt8dw8ehvw5uaesl0z4mvatpas0ngm26"
description = "A bot to help you search"
description_ja = "検索を補助するbot"
author_name = ["SnowCait"]
author_url = ["https://github.com/SnowCait"]
[Bots.cnpgirl]
name = "ログボbot"
address = "https://njump.me/[email protected]"
description = "A bot to earn \"Login bonus\""
description_ja = "\"ログインボーナス\"を獲得できるbot"
author_name = ["erechorse"]
author_url = ["https://nostx.shino3.net/npub17syr9cntr5f03gnhz7mqdxtt4mmgh39khpky5dw2sflkl09l2y0qra94wl"]
[Bots.npub1slszekg4rjlknw3qy69z5s3h45hnnlrrrjt9tr3ffjsqtpj8wsfqfgh8l7]
name = "じほう"
address = "https://nostx.shino3.net/npub1slszekg4rjlknw3qy69z5s3h45hnnlrrrjt9tr3ffjsqtpj8wsfqfgh8l7"
description = "a bot that tells JST time"
description_ja = "日本標準時に基づいてお知らせするbot"
author_name = ["mono"]
author_url = ["https://github.com/TsukemonoGit"]
[Bots.npub1823chanrkmyrfgz2v4pwmu22s8fjy0s9ps7vnd68n7xgd8zr9neqlc2e5r]
name = "やぶみちゃん"
address = "https://nostx.shino3.net/npub1823chanrkmyrfgz2v4pwmu22s8fjy0s9ps7vnd68n7xgd8zr9neqlc2e5r"
description = "A relay bot on wss://yabu.me"
description_ja = "wss://yabu.me リレーbot"
author_name = ["𓃠"]
author_url = ["https://nostx.shino3.net/npub1kurad0nlm8xfuxhws05pcwv5z4k0ea6da4dsjygexr77a666pssqsftsm7"]
[Bots.npub1738uh3jagexkr27wyw7pwx2gh8xnrcfk09pxptqf6f6aqwtrf5hq3q0j8s]
name = "へんしんbot"
address = "https://nostx.shino3.net/npub1738uh3jagexkr27wyw7pwx2gh8xnrcfk09pxptqf6f6aqwtrf5hq3q0j8s"
description = "An Kamen-Rider-like bot"
description_ja = "仮面ライダーbot"
author_name = ["ひゅうが霄"]
author_url = ["https://nostx.shino3.net/npub1xgcsn9lkkdake4stk9dz36dpfwkam7lssad8mcjvdyfr5rq7vnxqq2sgy4"]
[Bots.npub1r25zsj7hcpjqd0yur2ss4t3r0l9h6wavzp6na9vnnjhr87wttp2qmx0zct]
name = "迫るショッカーbot"
address = "https://nostx.shino3.net/npub1r25zsj7hcpjqd0yur2ss4t3r0l9h6wavzp6na9vnnjhr87wttp2qmx0zct"
description = "An Shocker-like bot"
description_ja = "ショッカー風bot"
author_name = ["ひゅうが霄"]
author_url = ["https://nostx.shino3.net/npub1xgcsn9lkkdake4stk9dz36dpfwkam7lssad8mcjvdyfr5rq7vnxqq2sgy4"]
[Bots.mochi]
name = "mochi"
address = "https://nostx.shino3.net/npub19xm6kcedxef3232d222gj0sxql8vs2tutyg0fq4z6875zfs3d8ascl440n"
description = "A mochi mochi bot"
description_ja = "もちもちbot"
author_name = ["awayuki"]
author_url = ["https://nostx.shino3.net/npub1e4qg56wvd3ehegd8dm7rlgj8cm998myq0ah8e9t5zeqkg7t7s93q750p76"]
[Bots.Yodogawa-Janken]
name = "Yodogawa-Janken"
address = "https://nostx.shino3.net/npub1y0d0eezhwaskpjhc7rvk6vkkwepu9mj42qt5pqjamzjr97amh2yszkevjg"
description = "A bot for playing RPS game"
description_ja = "じゃんけんbot"
author_name = ["n0nakamura"]
author_url = ["https://github.com/n0nakamura"]
[Bots.npub19we2h0793y4hhk500r2ndqkez0xf53rtghs3j20sjdwclh7tgz7s36kl6t]
name = "うにゅう"
address = "https://nostx.shino3.net/npub19we2h0793y4hhk500r2ndqkez0xf53rtghs3j20sjdwclh7tgz7s36kl6t"
description = "An Unyu bot"
description_ja = "うにゅうbot。えんいー"
author_name = ["nikolat"]
author_url = ["https://github.com/nikolat"]
[Bots.npub1d0hysq6tqys54n2v4tdu2zh2f2e758kj9dr4fpgcvz3ps3l8dzmswes3pc]
name = "Scrapbox更新通知(bot)"
address = "https://nostx.shino3.net/npub1d0hysq6tqys54n2v4tdu2zh2f2e758kj9dr4fpgcvz3ps3l8dzmswes3pc"
description = "A bot that serves notification about updated nostr Scrapbox articles"
description_ja = "nostr Scrapboxの更新をお知らせするbot"
author_name = ["jiftechnify"]
author_url = ["https://github.com/jiftechnify"]
[Bots.npub1cwve0du5w46zetzsqymx6ae5hr7ghyn6xs339e0tpkeft6htm07sm8qm6f]
name = "リプライ連鎖数はかるくん"
address = "https://nostx.shino3.net/npub1cwve0du5w46zetzsqymx6ae5hr7ghyn6xs339e0tpkeft6htm07sm8qm6f"
description = "A bot that counts the number of chains of replies from other bots"
description_ja = "他のbotのリプライ連鎖をカウントするbot"
author_name = ["jiftechnify"]
author_url = ["https://github.com/jiftechnify"]
[Bots.npub1vf4huvhkfhgvys2qf4wlmncf855dzd3c6894mw2snktpxzh08vdsgcgkxx]
name = "やる夫bot"
address = "https://nostx.shino3.net/npub1vf4huvhkfhgvys2qf4wlmncf855dzd3c6894mw2snktpxzh08vdsgcgkxx"
description = "Communication bots powered by ChatGPT"
description_ja = "ChatGPTにより会話できるbot"
author_name = ["Hakkadaikon"]
author_url = ["https://github.com/Hakkadaikon"]
[Bots.kojiraBot]
name = "kojiraBot"
address = "https://nostx.shino3.net/npub1ddn7myeq28llwegqzejmqtr33hfm3j6mepspxcrk70hn4r4268sqvamy64"
description = "A kojira bot, 呼んだ?"
description_ja = "kojira bot。呼んだ?"
author_name = ["imksoo"]
author_url = ["https://github.com/imksoo/nostr-kojirabot"]