-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepo-index.json
2002 lines (2002 loc) · 83.5 KB
/
repo-index.json
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
[
{
"name": "Homebox-Desktop-Wrapper-AppImage",
"pretty_name": "Homebox Desktop Wrapper Appimage",
"description": "Linux Electron desktop wrapper for Homebox",
"url": "https://github.com/danielrosehill/Homebox-Desktop-Wrapper-AppImage",
"is_fork": false,
"created_at": "2025-02-24T15:07:02Z"
},
{
"name": "Thought-Pad",
"pretty_name": "Thought Pad",
"description": "Linux desktop application that provides a two-stage process for creating notes from dictated speech (first stage, transcription via Whisper API; second stage light text formatting). Exports to markdown docs.",
"url": "https://github.com/danielrosehill/Thought-Pad",
"is_fork": false,
"created_at": "2025-02-23T12:35:55Z"
},
{
"name": "Github-Master-Index",
"pretty_name": "Github Master Index",
"description": "A repository that indexes my Github projects",
"url": "https://github.com/danielrosehill/Github-Master-Index",
"is_fork": false,
"created_at": "2025-02-22T18:49:30Z"
},
{
"name": "Reddit-Posts",
"pretty_name": "Reddit Posts",
"description": "Things I've posted on Reddit and which are copied here so that they can be ingested as context for various AI workflows",
"url": "https://github.com/danielrosehill/Reddit-Posts",
"is_fork": false,
"created_at": "2025-02-22T18:30:29Z"
},
{
"name": "OpenWebUI-Macro-Keypad",
"pretty_name": "Openwebui Macro Keypad",
"description": "WIP idea. Macro keypad config for OpenWebUI shortcuts",
"url": "https://github.com/danielrosehill/OpenWebUI-Macro-Keypad",
"is_fork": false,
"created_at": "2025-02-20T23:56:35Z"
},
{
"name": "OpenWebUI-Prompt-Library",
"pretty_name": "Openwebui Prompt Library",
"description": "A selection of prompts designed for use with Open Web UI (rather than conventional prompts, they're more useful for steering existing conversations)",
"url": "https://github.com/danielrosehill/OpenWebUI-Prompt-Library",
"is_fork": false,
"created_at": "2025-02-19T18:26:47Z"
},
{
"name": "Two-AIs-Talk",
"pretty_name": "Two Ais Talk",
"description": "Just a ridiculous experiment I have to try out at least once",
"url": "https://github.com/danielrosehill/Two-AIs-Talk",
"is_fork": false,
"created_at": "2025-02-18T19:41:42Z"
},
{
"name": "open-webui",
"pretty_name": "Open Webui",
"description": "User-friendly AI Interface (Supports Ollama, OpenAI API, ...)",
"url": "https://github.com/danielrosehill/open-webui",
"is_fork": true,
"created_at": "2025-02-18T17:58:09Z"
},
{
"name": "System-Prompt-Generation-Agent-Configs",
"pretty_name": "System Prompt Generation Agent Configs",
"description": "A collection of system prompts for agents instructed to generate or edit system prompts for other AI agents (yes, you read that right!)",
"url": "https://github.com/danielrosehill/System-Prompt-Generation-Agent-Configs",
"is_fork": false,
"created_at": "2025-02-17T18:41:06Z"
},
{
"name": "Snap-It",
"pretty_name": "Snap It",
"description": "Simple GUI for taking on-demand Snapper snapshots",
"url": "https://github.com/danielrosehill/Snap-It",
"is_fork": false,
"created_at": "2025-02-17T11:30:47Z"
},
{
"name": "Linux-CUAs",
"pretty_name": "Linux Cuas",
"description": "List of a few computer user agents (CUAs) with support for Linux",
"url": "https://github.com/danielrosehill/Linux-CUAs",
"is_fork": false,
"created_at": "2025-02-17T09:32:05Z"
},
{
"name": "Cline-Roo-Code-Repo-Template",
"pretty_name": "Cline Roo Code Repo Template",
"description": "Repo template for Cline / Roo Code AI dev with my docs-as-prompts approach!",
"url": "https://github.com/danielrosehill/Cline-Roo-Code-Repo-Template",
"is_fork": false,
"created_at": "2025-02-16T07:14:59Z"
},
{
"name": "AI-Assistants",
"pretty_name": "Artificial Intelligence Assistants",
"description": "My useful, sprawling and only slightly crazy network of AI assistants for ... anything and everything",
"url": "https://github.com/danielrosehill/AI-Assistants",
"is_fork": false,
"created_at": "2025-02-16T06:17:12Z"
},
{
"name": "RooCode-Mode-Prompts",
"pretty_name": "Roocode Mode Prompts",
"description": "Some custom mode-setting system prompts for Roo Code",
"url": "https://github.com/danielrosehill/RooCode-Mode-Prompts",
"is_fork": false,
"created_at": "2025-02-15T22:06:05Z"
},
{
"name": "Github-Repo-Pruner",
"pretty_name": "Github Repo Pruner",
"description": "Helps to discard old repositories from a local filesystem (for Linux)",
"url": "https://github.com/danielrosehill/Github-Repo-Pruner",
"is_fork": false,
"created_at": "2025-02-15T19:32:20Z"
},
{
"name": "Homebox-Ideas",
"pretty_name": "Homebox Ideas",
"description": "Tracking repo for some ideas for improving Homebox that I'm going to try develop!",
"url": "https://github.com/danielrosehill/Homebox-Ideas",
"is_fork": false,
"created_at": "2025-02-15T18:23:01Z"
},
{
"name": "Awesome-AI-Agents-And-Assistants",
"pretty_name": "Awesome Artificial Intelligence Agents And Assistants",
"description": "An ecosystem map of the AI agent and assistant building landscape in Feb 2025",
"url": "https://github.com/danielrosehill/Awesome-AI-Agents-And-Assistants",
"is_fork": false,
"created_at": "2025-02-14T18:51:44Z"
},
{
"name": "Friendly-AI-Exploration-Bot",
"pretty_name": "Friendly Artificial Intelligence Exploration Bot",
"description": "Configuration for an instructional tool for inquisitive AI students",
"url": "https://github.com/danielrosehill/Friendly-AI-Exploration-Bot",
"is_fork": false,
"created_at": "2025-02-14T14:27:34Z"
},
{
"name": "RAG-Markdown-Loader",
"pretty_name": "Retrieval Augmented Generation Markdown Loader",
"description": "Loads markdown documents into a folder",
"url": "https://github.com/danielrosehill/RAG-Markdown-Loader",
"is_fork": false,
"created_at": "2025-02-13T16:21:41Z"
},
{
"name": "Awesome-AI-Subreddits",
"pretty_name": "Awesome Artificial Intelligence Subreddits",
"description": "Subreddits discussing AI related things!",
"url": "https://github.com/danielrosehill/Awesome-AI-Subreddits",
"is_fork": false,
"created_at": "2025-02-13T12:19:44Z"
},
{
"name": "Personal-RAG-Agent-Workflow",
"pretty_name": "Personal Retrieval Augmented Generation Agent Workflow",
"description": "AI workflows for building personal RAG pipelines with interviewing agents",
"url": "https://github.com/danielrosehill/Personal-RAG-Agent-Workflow",
"is_fork": false,
"created_at": "2025-02-12T11:15:00Z"
},
{
"name": "RAG-API-SDK-Docs-Pipeline",
"pretty_name": "Retrieval Augmented Generation Api Sdk Docs Pipeline",
"description": "Pipeline for gathering useful API and SDK docs for ingestion into a RAG pipeline (for grounding)",
"url": "https://github.com/danielrosehill/RAG-API-SDK-Docs-Pipeline",
"is_fork": false,
"created_at": "2025-02-11T01:03:19Z"
},
{
"name": "AI-Interview-Workflow-V2",
"pretty_name": "Artificial Intelligence Interview Workflow V2",
"description": "No description provided",
"url": "https://github.com/danielrosehill/AI-Interview-Workflow-V2",
"is_fork": false,
"created_at": "2025-02-09T10:25:20Z"
},
{
"name": "LLM-Max-Token-Length-0225",
"pretty_name": "Large Language Model Max Token Length 0225",
"description": "A plot showing the evolution of the max output token length by major LLMs, Feb 2025",
"url": "https://github.com/danielrosehill/LLM-Max-Token-Length-0225",
"is_fork": false,
"created_at": "2025-02-08T16:15:33Z"
},
{
"name": "Open-That-Repo",
"pretty_name": "Open That Repo",
"description": "Utility for quickly opening a Github repo on your computer",
"url": "https://github.com/danielrosehill/Open-That-Repo",
"is_fork": false,
"created_at": "2025-02-07T16:19:21Z"
},
{
"name": "AI-Job-Search-Assistant-Workflow",
"pretty_name": "Artificial Intelligence Job Search Assistant Workflow",
"description": "A chained agent workflow for job hunters (presented as a model)",
"url": "https://github.com/danielrosehill/AI-Job-Search-Assistant-Workflow",
"is_fork": false,
"created_at": "2025-02-07T13:30:56Z"
},
{
"name": "Home-Assistant-Smoke-Alarm-Config",
"pretty_name": "Home Assistant Smoke Alarm Config",
"description": "Documentation and code samples for smoke alarm monitoring in HA",
"url": "https://github.com/danielrosehill/Home-Assistant-Smoke-Alarm-Config",
"is_fork": false,
"created_at": "2025-02-06T17:23:37Z"
},
{
"name": "Israel-Preparedness-Guidelines-AI-Assistant",
"pretty_name": "Israel Preparedness Guidelines Artificial Intelligence Assistant",
"description": "AI assistant configuration for proviidng Home Front Command guidelines",
"url": "https://github.com/danielrosehill/Israel-Preparedness-Guidelines-AI-Assistant",
"is_fork": false,
"created_at": "2025-02-05T22:01:41Z"
},
{
"name": "Israel-To-ROW-Salary-Converter-V2",
"pretty_name": "Israel To Row Salary Converter V2",
"description": "V2 of Israel to ROW salary conversion utility (Streamlit)",
"url": "https://github.com/danielrosehill/Israel-To-ROW-Salary-Converter-V2",
"is_fork": false,
"created_at": "2025-02-05T20:03:57Z"
},
{
"name": "Israeli-Google-Drive-Accounting-Doc-Router",
"pretty_name": "Israeli Google Drive Accounting Doc Router",
"description": "Routes accounting documents through Google Drive",
"url": "https://github.com/danielrosehill/Israeli-Google-Drive-Accounting-Doc-Router",
"is_fork": false,
"created_at": "2025-02-05T19:21:15Z"
},
{
"name": "Google-Drive-Folder-Scaffolding-Builder",
"pretty_name": "Google Drive Folder Scaffolding Builder",
"description": "Builds date/year folder scaffolding in Drive folders (with App Scripts)",
"url": "https://github.com/danielrosehill/Google-Drive-Folder-Scaffolding-Builder",
"is_fork": false,
"created_at": "2025-02-05T17:29:31Z"
},
{
"name": "Dual-WhatsApp-Linux-Desktop",
"pretty_name": "Dual Whatsapp Linux Desktop",
"description": "Dual WA client for the Linux desktop (AI generated)",
"url": "https://github.com/danielrosehill/Dual-WhatsApp-Linux-Desktop",
"is_fork": false,
"created_at": "2025-02-03T17:09:57Z"
},
{
"name": "Cline-Website-Creation-Demo",
"pretty_name": "Cline Website Creation Demo",
"description": "Demonstration project for YouTube using referred prompts for development",
"url": "https://github.com/danielrosehill/Cline-Website-Creation-Demo",
"is_fork": false,
"created_at": "2025-02-03T17:03:37Z"
},
{
"name": "Agentic-Context-Development-Interview-Demo",
"pretty_name": "Agentic Context Development Interview Demo",
"description": "Demonstration modelling how a chained LLM agent workflow could be used to expedite the generation of personal contextual data for personalised LLM experiences and personal RAG development",
"url": "https://github.com/danielrosehill/Agentic-Context-Development-Interview-Demo",
"is_fork": false,
"created_at": "2025-02-03T17:01:23Z"
},
{
"name": "AI-Generated-Projects-Index",
"pretty_name": "Artificial Intelligence Generated Projects Index",
"description": "Index of development projects that were partially or fully developed using AI",
"url": "https://github.com/danielrosehill/AI-Generated-Projects-Index",
"is_fork": false,
"created_at": "2025-02-01T10:58:21Z"
},
{
"name": "NFC-Reader-Writer-App",
"pretty_name": "Nfc Reader Writer App",
"description": "Desktop NFC reader/writer GUI for the ACR1252U (validated with NTAG213 on Linux)",
"url": "https://github.com/danielrosehill/NFC-Reader-Writer-App",
"is_fork": false,
"created_at": "2025-02-01T09:14:04Z"
},
{
"name": "Home-Assistant-Israel-Dashboards",
"pretty_name": "Home Assistant Israel Dashboards",
"description": "HA dashboards with Israel-specifc entities",
"url": "https://github.com/danielrosehill/Home-Assistant-Israel-Dashboards",
"is_fork": false,
"created_at": "2025-01-31T15:39:43Z"
},
{
"name": "Weird-AI-Bots",
"pretty_name": "Weird Artificial Intelligence Bots",
"description": "Some configurations for offbeat AI roleplay characters just for fun",
"url": "https://github.com/danielrosehill/Weird-AI-Bots",
"is_fork": false,
"created_at": "2025-01-31T01:09:50Z"
},
{
"name": "Home-Assistant-YAML-Snippets",
"pretty_name": "Home Assistant Yaml Snippets",
"description": "Code snippets for Home Assistant dashboard elements",
"url": "https://github.com/danielrosehill/Home-Assistant-YAML-Snippets",
"is_fork": false,
"created_at": "2025-01-30T15:16:09Z"
},
{
"name": "HA-Shabbat-Dashboard-0125",
"pretty_name": "Home Assistant Shabbat Dashboard 0125",
"description": "Simple designed Home Assistant dashboard for Shabbat / Yom Tov times",
"url": "https://github.com/danielrosehill/HA-Shabbat-Dashboard-0125",
"is_fork": false,
"created_at": "2025-01-30T09:38:34Z"
},
{
"name": "Assistant-Config-Editor",
"pretty_name": "Assistant Config Editor",
"description": "Streamlit web UI for editing assistant configuration texts",
"url": "https://github.com/danielrosehill/Assistant-Config-Editor",
"is_fork": false,
"created_at": "2025-01-28T23:59:59Z"
},
{
"name": "LLM-Assistants-Web-Library",
"pretty_name": "Large Language Model Assistants Web Library",
"description": "A web UI for open-sourcing my assistant configurations (WIP)",
"url": "https://github.com/danielrosehill/LLM-Assistants-Web-Library",
"is_fork": false,
"created_at": "2025-01-28T22:07:00Z"
},
{
"name": "Personalised-AI-Idea",
"pretty_name": "Personalised Artificial Intelligence Idea",
"description": "Some updated thoughts and sketches for creating personalised AI systems",
"url": "https://github.com/danielrosehill/Personalised-AI-Idea",
"is_fork": false,
"created_at": "2025-01-28T17:11:06Z"
},
{
"name": "AI-Assistant-Template",
"pretty_name": "Artificial Intelligence Assistant Template",
"description": "Template repository for version controlling AI assistant configurations (and associated elements like context data)",
"url": "https://github.com/danielrosehill/AI-Assistant-Template",
"is_fork": false,
"created_at": "2025-01-27T12:40:04Z"
},
{
"name": "AI-Assistants-Index",
"pretty_name": "Artificial Intelligence Assistants Index",
"description": "Indexing repository nesting links to standalone repositories containing configurations for AI assistants & agents",
"url": "https://github.com/danielrosehill/AI-Assistants-Index",
"is_fork": false,
"created_at": "2025-01-27T12:38:46Z"
},
{
"name": "Assistant-Configuration-Improver",
"pretty_name": "Assistant Configuration Improver",
"description": "Assistant which improves the configuration of assistant configuration texts",
"url": "https://github.com/danielrosehill/Assistant-Configuration-Improver",
"is_fork": false,
"created_at": "2025-01-27T12:32:16Z"
},
{
"name": "Github-Ideas-And-FRs",
"pretty_name": "Github Ideas And Frs",
"description": "Ideas and feature requests contributed to Github projects",
"url": "https://github.com/danielrosehill/Github-Ideas-And-FRs",
"is_fork": false,
"created_at": "2025-01-25T18:17:17Z"
},
{
"name": "Voice-Assistant-Agent-Platforms",
"pretty_name": "Voice Assistant Agent Platforms",
"description": "A list of a few interesting tools for creating context-backed agents & assistants for voice interaction",
"url": "https://github.com/danielrosehill/Voice-Assistant-Agent-Platforms",
"is_fork": false,
"created_at": "2025-01-23T18:42:17Z"
},
{
"name": "Environmental-Data---AI-Assistants",
"pretty_name": "Environmental Data Artificial Intelligence Assistants",
"description": "This repository is a gathering of AI assistants that I've developed for analysing sustainability-related data",
"url": "https://github.com/danielrosehill/Environmental-Data---AI-Assistants",
"is_fork": false,
"created_at": "2025-01-22T15:23:31Z"
},
{
"name": "Home-Assistant-YomTov-Shabbat-0125",
"pretty_name": "Home Assistant Yomtov Shabbat 0125",
"description": "Updated documentation for Home Assistant automations for Shabbat & Yom Tov observance",
"url": "https://github.com/danielrosehill/Home-Assistant-YomTov-Shabbat-0125",
"is_fork": false,
"created_at": "2025-01-20T14:48:11Z"
},
{
"name": "OpenWebUI-My-Docker-Compose",
"pretty_name": "Openwebui My Docker Compose",
"description": "A Docker Compose for Open Web UI with a few modifications",
"url": "https://github.com/danielrosehill/OpenWebUI-My-Docker-Compose",
"is_fork": false,
"created_at": "2025-01-12T13:09:59Z"
},
{
"name": "Better-Hashnode-Backups",
"pretty_name": "Better Hashnode Backups",
"description": "Backups a Hashnode blog including the images from the CDN",
"url": "https://github.com/danielrosehill/Better-Hashnode-Backups",
"is_fork": false,
"created_at": "2025-01-12T10:28:28Z"
},
{
"name": "Personal-AI-Agent-Development-Template",
"pretty_name": "Personal Artificial Intelligence Agent Development Template",
"description": "A model template/skeleton for creating personalised LLM agents",
"url": "https://github.com/danielrosehill/Personal-AI-Agent-Development-Template",
"is_fork": false,
"created_at": "2025-01-11T00:29:23Z"
},
{
"name": "AI-Second-Brain-Tools",
"pretty_name": "Artificial Intelligence Second Brain Tools",
"description": "AI platforms that market themselves as \"second brains\" (RAG + LLM). Usually: knowledge discovery, mgmt, wiki + LLM capabilities. ",
"url": "https://github.com/danielrosehill/AI-Second-Brain-Tools",
"is_fork": false,
"created_at": "2025-01-09T14:02:26Z"
},
{
"name": "My-AI-LLM-Configs",
"pretty_name": "My Artificial Intelligence Large Language Model Configs",
"description": "Configurations for various models accessed via API",
"url": "https://github.com/danielrosehill/My-AI-LLM-Configs",
"is_fork": false,
"created_at": "2025-01-09T05:07:50Z"
},
{
"name": "Personal-Context-Store-Ideation",
"pretty_name": "Personal Context Store Ideation",
"description": "Prompts generating ideas for developing personal contextual knowledge storage vaults",
"url": "https://github.com/danielrosehill/Personal-Context-Store-Ideation",
"is_fork": false,
"created_at": "2025-01-08T23:10:46Z"
},
{
"name": "Just-Some-AI-App-Ideas",
"pretty_name": "Just Some Artificial Intelligence App Ideas",
"description": "Gathering repository for various ideas involving AI that I am or have been working on (experiments, etc!)",
"url": "https://github.com/danielrosehill/Just-Some-AI-App-Ideas",
"is_fork": false,
"created_at": "2025-01-08T17:38:53Z"
},
{
"name": "Tool-Searches",
"pretty_name": "Tool Searches",
"description": "Documenting some tools that I'm on active quest to find!",
"url": "https://github.com/danielrosehill/Tool-Searches",
"is_fork": false,
"created_at": "2025-01-06T14:40:43Z"
},
{
"name": "USB-Foot-Mouse-Linux",
"pretty_name": "Usb Foot Mouse Linux",
"description": "Documentation for getting a cheap USB HID foot mouse to work on Linux",
"url": "https://github.com/danielrosehill/USB-Foot-Mouse-Linux",
"is_fork": false,
"created_at": "2025-01-05T01:21:45Z"
},
{
"name": "Awesome-STT-Tools",
"pretty_name": "Awesome Speech to Text Tools",
"description": "A few useful speech to text tools that I've stumbled across including browser extensions, Linux desktop tools and ASR. ",
"url": "https://github.com/danielrosehill/Awesome-STT-Tools",
"is_fork": false,
"created_at": "2025-01-04T22:25:54Z"
},
{
"name": "My-Docker-Compose-Lib-Private",
"pretty_name": "My Docker Compose Lib Private",
"description": "No description provided",
"url": "https://github.com/danielrosehill/My-Docker-Compose-Lib-Private",
"is_fork": false,
"created_at": "2025-01-04T18:21:53Z"
},
{
"name": "Task-Management-App-Prompt",
"pretty_name": "Task Management App Prompt",
"description": "A versioned prompt just to find one tool! (Experimenting with prompt length and details provided to improve accuracy!)",
"url": "https://github.com/danielrosehill/Task-Management-App-Prompt",
"is_fork": false,
"created_at": "2025-01-02T18:15:07Z"
},
{
"name": "Awesome-STT-Projects",
"pretty_name": "Awesome Speech to Text Projects",
"description": "A list of some STT projects from around the internet",
"url": "https://github.com/danielrosehill/Awesome-STT-Projects",
"is_fork": false,
"created_at": "2025-01-02T11:30:09Z"
},
{
"name": "Personal-STT-Benchmarking",
"pretty_name": "Personal Speech to Text Benchmarking",
"description": "Some personal benchmarks of STT models",
"url": "https://github.com/danielrosehill/Personal-STT-Benchmarking",
"is_fork": false,
"created_at": "2024-12-31T15:29:51Z"
},
{
"name": "Voice-LLM-App-Notes",
"pretty_name": "Voice Large Language Model App Notes",
"description": "A few notes describing the kind of voice app for large language models I would love to have!",
"url": "https://github.com/danielrosehill/Voice-LLM-App-Notes",
"is_fork": false,
"created_at": "2024-12-30T16:10:23Z"
},
{
"name": "Public-Or-Private-Repo-Extension",
"pretty_name": "Public Or Private Repo Extension",
"description": "WIP - VS Code Extension to notify users whether the repo they're working on is public or private",
"url": "https://github.com/danielrosehill/Public-Or-Private-Repo-Extension",
"is_fork": false,
"created_at": "2024-12-30T15:20:38Z"
},
{
"name": "Deepgram-STT-Linux-App",
"pretty_name": "Deepgram Speech to Text Linux App",
"description": "Work in progress - AI-assisted STT app for Linux desktop users",
"url": "https://github.com/danielrosehill/Deepgram-STT-Linux-App",
"is_fork": false,
"created_at": "2024-12-30T15:17:42Z"
},
{
"name": "Gmail-Search-Strings",
"pretty_name": "Gmail Search Strings",
"description": "Just a few search strings for finding stuff in overcrowded Gmail inboxes!",
"url": "https://github.com/danielrosehill/Gmail-Search-Strings",
"is_fork": false,
"created_at": "2024-12-30T14:24:35Z"
},
{
"name": "Perplexity-Security-1224",
"pretty_name": "Perplexity Security 1224",
"description": "Repository to demonstrate the \"security through security\" being currently implemented",
"url": "https://github.com/danielrosehill/Perplexity-Security-1224",
"is_fork": false,
"created_at": "2024-12-29T18:00:05Z"
},
{
"name": "Feature-Ideas-And-Requests",
"pretty_name": "Feature Ideas And Requests",
"description": "General feature requests for tech tools that I use and love!",
"url": "https://github.com/danielrosehill/Feature-Ideas-And-Requests",
"is_fork": false,
"created_at": "2024-12-29T14:49:30Z"
},
{
"name": "Corn-The-Sloth-Public",
"pretty_name": "Corn The Sloth Public",
"description": "Character sketches for an AI character...",
"url": "https://github.com/danielrosehill/Corn-The-Sloth-Public",
"is_fork": false,
"created_at": "2024-12-24T19:00:45Z"
},
{
"name": "GVFD-Explorer-Chatbot-V2",
"pretty_name": "Gvfd Explorer Chatbot V2",
"description": "Chatbot supporting user discovery of the global value factors database",
"url": "https://github.com/danielrosehill/GVFD-Explorer-Chatbot-V2",
"is_fork": false,
"created_at": "2024-12-24T17:46:02Z"
},
{
"name": "Context-Data-Generation-Bot",
"pretty_name": "Context Data Generation Bot",
"description": "Configuration for an AI assistant to generate personal contextual data (and intended workflow)",
"url": "https://github.com/danielrosehill/Context-Data-Generation-Bot",
"is_fork": false,
"created_at": "2024-12-24T10:48:50Z"
},
{
"name": "My-OpenAI-Python-SDK-Helper",
"pretty_name": "My Openai Python Sdk Helper",
"description": "Docs for a utility that pulls the readme page from OpenAI Python SDK documentation and formats it for a context snippet. ",
"url": "https://github.com/danielrosehill/My-OpenAI-Python-SDK-Helper",
"is_fork": false,
"created_at": "2024-12-23T19:42:27Z"
},
{
"name": "openai-python",
"pretty_name": "Openai Python",
"description": "The official Python library for the OpenAI API",
"url": "https://github.com/danielrosehill/openai-python",
"is_fork": true,
"created_at": "2024-12-23T19:41:02Z"
},
{
"name": "Prompt-And-Output-Separator",
"pretty_name": "Prompt And Output Separator",
"description": "Streamlit-deployed app which attempts to separate prompts and outputs from continuous text files",
"url": "https://github.com/danielrosehill/Prompt-And-Output-Separator",
"is_fork": false,
"created_at": "2024-12-22T19:37:53Z"
},
{
"name": "Mock-PII-Data",
"pretty_name": "Mock Pii Data",
"description": "Synthetic data containing personally identifiable information",
"url": "https://github.com/danielrosehill/Mock-PII-Data",
"is_fork": false,
"created_at": "2024-12-20T14:19:04Z"
},
{
"name": "Global-Value-Factors-Explorer-Dataset",
"pretty_name": "Global Value Factors Explorer Dataset",
"description": "Derivative database of IFVI Global Value Factors for data analysis and visualization use cases. ",
"url": "https://github.com/danielrosehill/Global-Value-Factors-Explorer-Dataset",
"is_fork": false,
"created_at": "2024-12-20T00:10:49Z"
},
{
"name": "Emissions-Monetisation-Calculator",
"pretty_name": "Emissions Monetisation Calculator",
"description": "Calculation tool for \"monetising\" companies' emissions at various proposed social cost of carbon values",
"url": "https://github.com/danielrosehill/Emissions-Monetisation-Calculator",
"is_fork": false,
"created_at": "2024-12-19T17:25:31Z"
},
{
"name": "Prompt-Puncutation-Experiment",
"pretty_name": "Prompt Puncutation Experiment",
"description": "Experimenting to test the effect of puncutation in prompts on inference quality",
"url": "https://github.com/danielrosehill/Prompt-Puncutation-Experiment",
"is_fork": false,
"created_at": "2024-12-19T14:02:02Z"
},
{
"name": "Context-Waterfall-Architecture-Notes",
"pretty_name": "Context Waterfall Architecture Notes",
"description": "A model for routing contextual data into vector storage for use with LLMs",
"url": "https://github.com/danielrosehill/Context-Waterfall-Architecture-Notes",
"is_fork": false,
"created_at": "2024-12-18T15:22:56Z"
},
{
"name": "Personal-Context-Vector-Pipeline",
"pretty_name": "Personal Context Vector Pipeline",
"description": "Notes planning a personal contextual data pipeline",
"url": "https://github.com/danielrosehill/Personal-Context-Vector-Pipeline",
"is_fork": false,
"created_at": "2024-12-17T23:18:45Z"
},
{
"name": "Bias-Censorship-Eval-Tests",
"pretty_name": "Bias Censorship Eval Tests",
"description": "Some loosely organised experiments intended to probe the levels of political censorship inherent in LLMs",
"url": "https://github.com/danielrosehill/Bias-Censorship-Eval-Tests",
"is_fork": false,
"created_at": "2024-12-17T01:43:52Z"
},
{
"name": "Anonymisation-Assistant",
"pretty_name": "Anonymisation Assistant",
"description": "Configuration for a large language assistant designed to assist with redacting personally identifiable details in documents",
"url": "https://github.com/danielrosehill/Anonymisation-Assistant",
"is_fork": false,
"created_at": "2024-12-16T23:13:12Z"
},
{
"name": "AI-Abusive-Message-Documentation-Tool",
"pretty_name": "Artificial Intelligence Abusive Message Documentation Tool",
"description": "Configuration text for an LLM assistant designed to assist users with documenting abusive messages",
"url": "https://github.com/danielrosehill/AI-Abusive-Message-Documentation-Tool",
"is_fork": false,
"created_at": "2024-12-15T14:22:14Z"
},
{
"name": "Personal-Context-Repo-Idea",
"pretty_name": "Personal Context Repo Idea",
"description": "Outlining an idea for a personal context repository for enhancing LLM inference",
"url": "https://github.com/danielrosehill/Personal-Context-Repo-Idea",
"is_fork": false,
"created_at": "2024-12-14T11:36:47Z"
},
{
"name": "every-chatgpt-gui",
"pretty_name": "Every Chatgpt Gui",
"description": "Every front-end GUI client for ChatGPT, Claude, and other LLMs",
"url": "https://github.com/danielrosehill/every-chatgpt-gui",
"is_fork": true,
"created_at": "2024-12-12T21:05:06Z"
},
{
"name": "PDF-Extract-And-TTS",
"pretty_name": "Pdf Extract And Text to Speech",
"description": "Streamlit app using Google Cloud APIs to extract core text from a PDF and perform TTS. For listening to long docs. API keys required.",
"url": "https://github.com/danielrosehill/PDF-Extract-And-TTS",
"is_fork": false,
"created_at": "2024-12-12T17:47:27Z"
},
{
"name": "LLM-Long-Codegen-Test",
"pretty_name": "Large Language Model Long Codegen Test",
"description": "Experiment to evaluate the ability of code-gen LLMs to generate a long continuous (single) output",
"url": "https://github.com/danielrosehill/LLM-Long-Codegen-Test",
"is_fork": false,
"created_at": "2024-12-10T19:03:07Z"
},
{
"name": "LLM-API-Key-Manager",
"pretty_name": "Large Language Model Api Key Manager",
"description": "Coming soon, a minimalist local first tool for organizing and displaying a list of API keys for large language models that can be accessed this way. ",
"url": "https://github.com/danielrosehill/LLM-API-Key-Manager",
"is_fork": false,
"created_at": "2024-12-09T23:02:51Z"
},
{
"name": "AI-Generated-Project-Starters",
"pretty_name": "Artificial Intelligence Generated Project Starters",
"description": "AI-generated project starters for anyone wishing to carry on the ideas!",
"url": "https://github.com/danielrosehill/AI-Generated-Project-Starters",
"is_fork": false,
"created_at": "2024-12-09T19:03:53Z"
},
{
"name": "My-Calculators",
"pretty_name": "My Calculators",
"description": "Unit exchange calculators for calculations I commonly require",
"url": "https://github.com/danielrosehill/My-Calculators",
"is_fork": false,
"created_at": "2024-12-09T12:55:03Z"
},
{
"name": "GHG-Emissions-Data-Pipeline",
"pretty_name": "Ghg Emissions Data Pipeline",
"description": "Data pipeline repository supplying various data visualisation projects",
"url": "https://github.com/danielrosehill/GHG-Emissions-Data-Pipeline",
"is_fork": false,
"created_at": "2024-12-09T12:39:31Z"
},
{
"name": "GHG-vs-EBITDA-V2",
"pretty_name": "Ghg Vs Ebitda V2",
"description": "Another data visualisation series comparing companies' GHG emissions with their EBITDA",
"url": "https://github.com/danielrosehill/GHG-vs-EBITDA-V2",
"is_fork": false,
"created_at": "2024-12-09T09:46:21Z"
},
{
"name": "Master-Index",
"pretty_name": "Master Index",
"description": "This repository serves as a master index linking to the various indices I have for more narrow groupings of topics.",
"url": "https://github.com/danielrosehill/Master-Index",
"is_fork": false,
"created_at": "2024-12-08T09:58:23Z"
},
{
"name": "Data-Projects-Index",
"pretty_name": "Data Projects Index",
"description": "Data apps and datasets deployed to Streamlit Community Cloud, Hugging Face, and elsewhere. ",
"url": "https://github.com/danielrosehill/Data-Projects-Index",
"is_fork": false,
"created_at": "2024-12-08T09:56:47Z"
},
{
"name": "Sustainability-Report-Data-Extractor",
"pretty_name": "Sustainability Report Data Extractor",
"description": "Tool for extracting data-containing pages from sustainability reports",
"url": "https://github.com/danielrosehill/Sustainability-Report-Data-Extractor",
"is_fork": false,
"created_at": "2024-12-08T09:45:05Z"
},
{
"name": "Value-Factors-Data-Vis",
"pretty_name": "Value Factors Data Vis",
"description": "Streamlit app containing visualisations of the Global Value Factors Database (GVFD) released by the IFVI in 2024",
"url": "https://github.com/danielrosehill/Value-Factors-Data-Vis",
"is_fork": false,
"created_at": "2024-12-05T01:52:24Z"
},
{
"name": "Monetised-GHG-Emissions",
"pretty_name": "Monetised Ghg Emissions",
"description": "Calculating monetised GHG emissions for various companies based upon disclosure data",
"url": "https://github.com/danielrosehill/Monetised-GHG-Emissions",
"is_fork": false,
"created_at": "2024-12-04T18:50:21Z"
},
{
"name": "GHG-EBITDA-Correlations",
"pretty_name": "Ghg Ebitda Correlations",
"description": "Streamlit data visualisation examining correlation between emissions & profitability",
"url": "https://github.com/danielrosehill/GHG-EBITDA-Correlations",
"is_fork": false,
"created_at": "2024-12-04T14:39:18Z"
},
{
"name": "Fun-LLM-Data-Prompts",
"pretty_name": "Fun Large Language Model Data Prompts",
"description": "As prompting fro data analysis & vis is quite specific, a small side collection of prompts for this purpose",
"url": "https://github.com/danielrosehill/Fun-LLM-Data-Prompts",
"is_fork": false,
"created_at": "2024-12-03T19:04:12Z"
},
{
"name": "Linux-Desktop-LLM-Apps",
"pretty_name": "Linux Desktop Large Language Model Apps",
"description": "Quick list of some LLM related apps with Linux desktop support (chat UIs, CLIs, wrappers, etc)",
"url": "https://github.com/danielrosehill/Linux-Desktop-LLM-Apps",
"is_fork": false,
"created_at": "2024-12-02T20:31:08Z"
},
{
"name": "Eco-Ninja-3",
"pretty_name": "Eco Ninja 3",
"description": "Configuration for an LLM assistant that performs analysis on sustainability data",
"url": "https://github.com/danielrosehill/Eco-Ninja-3",
"is_fork": false,
"created_at": "2024-12-02T17:59:34Z"
},
{
"name": "LLM-System-Prompts",
"pretty_name": "Large Language Model System Prompts",
"description": "A few system prompts for LLMs intended to improve the format and utility of outputs. Written primarily for LibreChat but should be reasonably frontend-agnostic",
"url": "https://github.com/danielrosehill/LLM-System-Prompts",
"is_fork": false,
"created_at": "2024-12-02T01:01:17Z"
},
{
"name": "dsnote",
"pretty_name": "Dsnote",
"description": "Speech Note Linux app. Note taking, reading and translating with offline Speech to Text, Text to Speech and Machine translation.",
"url": "https://github.com/danielrosehill/dsnote",
"is_fork": true,
"created_at": "2024-12-01T19:23:43Z"
},
{
"name": "Prompt-Builder",
"pretty_name": "Prompt Builder",
"description": "Work in progress. Assemble prompts based upon templated forms in the browser. ",
"url": "https://github.com/danielrosehill/Prompt-Builder",
"is_fork": false,
"created_at": "2024-12-01T16:37:18Z"
},
{
"name": "LLM-Output-Vault-Parameters",
"pretty_name": "Large Language Model Output Vault Parameters",
"description": "Some parameteric data about my LLM output repository as it scales",
"url": "https://github.com/danielrosehill/LLM-Output-Vault-Parameters",
"is_fork": false,
"created_at": "2024-12-01T14:07:35Z"
},
{
"name": "Monetised-Emissions-V2",
"pretty_name": "Monetised Emissions V2",
"description": "Monetised",
"url": "https://github.com/danielrosehill/Monetised-Emissions-V2",
"is_fork": false,
"created_at": "2024-12-01T12:16:41Z"
},
{
"name": "My-Docs-Index",
"pretty_name": "My Docs Index",
"description": "An index to my various documentation projects, both on Github and elsewhere",
"url": "https://github.com/danielrosehill/My-Docs-Index",
"is_fork": false,
"created_at": "2024-11-29T17:44:27Z"
},
{
"name": "Demo-Github-Repo-Cleaner-Utility",
"pretty_name": "Demo Github Repo Cleaner Utility",
"description": "Demo repo for a YouTube video to share some thoughts about prompting for code generation.",
"url": "https://github.com/danielrosehill/Demo-Github-Repo-Cleaner-Utility",
"is_fork": false,
"created_at": "2024-11-27T17:44:24Z"
},
{
"name": "VS-Code-LLM-Tools",
"pretty_name": "Vs Code Large Language Model Tools",
"description": "A list of some extensions for working with large language models (LLMs) within the VS Code IDE",
"url": "https://github.com/danielrosehill/VS-Code-LLM-Tools",
"is_fork": false,
"created_at": "2024-11-26T14:24:36Z"
},
{
"name": "Daniels-Take-On",
"pretty_name": "Daniels Take On",
"description": "My thoughts on a few random topics (for my documentation site), to get a bit of space to jot down things besides tech notes",
"url": "https://github.com/danielrosehill/Daniels-Take-On",
"is_fork": false,
"created_at": "2024-11-25T22:41:46Z"
},
{
"name": "LLM-Attribution-Badges",
"pretty_name": "Large Language Model Attribution Badges",
"description": "Markdown badges for attributing LLM generated (or co-generated) content (using Shields.io)",
"url": "https://github.com/danielrosehill/LLM-Attribution-Badges",
"is_fork": false,
"created_at": "2024-11-24T12:41:49Z"
},
{
"name": "Langchain-Workflows",
"pretty_name": "Langchain Workflows",
"description": "A few projects for LangChain workflows using programmatic prompting for various purposes. ",
"url": "https://github.com/danielrosehill/Langchain-Workflows",
"is_fork": false,
"created_at": "2024-11-23T12:04:20Z"
},
{
"name": "Testing-Repo-Public",
"pretty_name": "Testing Repo Public",
"description": "General first entry testing repository for things that need to be publicly accessible. ",
"url": "https://github.com/danielrosehill/Testing-Repo-Public",
"is_fork": false,
"created_at": "2024-11-22T11:46:07Z"
},
{
"name": "Prompt-Engineering-Resources",
"pretty_name": "Prompt Engineering Resources",
"description": "Lists of resources and tools for prompt engineering and evaluation",
"url": "https://github.com/danielrosehill/Prompt-Engineering-Resources",
"is_fork": false,
"created_at": "2024-11-21T19:22:56Z"
},
{
"name": "Local-Github-Repo-Index-Generator",
"pretty_name": "Local Github Repo Index Generator",
"description": "Script to generate an index of the Github repos on your local / computer",
"url": "https://github.com/danielrosehill/Local-Github-Repo-Index-Generator",
"is_fork": false,
"created_at": "2024-11-21T17:24:42Z"
},
{
"name": "Projects",
"pretty_name": "Projects",
"description": "A list of projects I am working on",
"url": "https://github.com/danielrosehill/Projects",
"is_fork": false,
"created_at": "2024-11-20T14:37:31Z"
},
{
"name": "LLM-Workflow-Documentation",
"pretty_name": "Large Language Model Workflow Documentation",
"description": "Documentation for managing prompts and outputs and working professionally with large language models (LLMs)",
"url": "https://github.com/danielrosehill/LLM-Workflow-Documentation",
"is_fork": false,
"created_at": "2024-11-20T10:30:01Z"
},
{
"name": "LLM-Output-Notes",
"pretty_name": "Large Language Model Output Notes",
"description": "First entry documentation repository for notes mostly unedited from LLMs",
"url": "https://github.com/danielrosehill/LLM-Output-Notes",
"is_fork": false,
"created_at": "2024-11-19T17:26:57Z"
},
{
"name": "Github-Submodules-Docs",
"pretty_name": "Github Submodules Docs",
"description": "A few personal notes jotted down for working with submodules in Github while trying to avoid going insane",
"url": "https://github.com/danielrosehill/Github-Submodules-Docs",
"is_fork": false,
"created_at": "2024-11-19T17:24:14Z"
},
{
"name": "Docs-Archive",
"pretty_name": "Docs Archive",
"description": "archived documentation gathered from different sources and centralized on this repository. ",
"url": "https://github.com/danielrosehill/Docs-Archive",
"is_fork": false,
"created_at": "2024-11-19T17:11:51Z"
},
{
"name": "Gists",
"pretty_name": "Gists",
"description": "Short tech notes (as in Github Gists, but versioned in a repo to sync them to a doc site)",
"url": "https://github.com/danielrosehill/Gists",
"is_fork": false,
"created_at": "2024-11-19T17:05:04Z"
},
{
"name": "Ideas",
"pretty_name": "Ideas",
"description": "The first seedlings of ideas as they pop out of my head and onto the page/code editor",
"url": "https://github.com/danielrosehill/Ideas",
"is_fork": false,
"created_at": "2024-11-19T17:02:48Z"
},
{
"name": "Sustainability-Reports-Source",
"pretty_name": "Sustainability Reports Source",
"description": "Source data and documentation for corporat sustainability disclosures/reporting",
"url": "https://github.com/danielrosehill/Sustainability-Reports-Source",
"is_fork": false,
"created_at": "2024-11-19T15:36:25Z"