-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata-tools-old.json
1396 lines (1396 loc) · 58.4 KB
/
data-tools-old.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
[ {
"category" : "Front Ends",
"name" : "taskwarrior-pomodoro",
"description" : "taskwarrior-pomodoro is a simple application allowing you to use Pomodoro techniques with Taskwarrior on OSX. \n<a href=\"/~https://github.com/coddingtonbear/taskwarrior-pomodoro\"> <img alt=\"taskwarrior-pomodoro\" src=\"/~https://camo.githubusercontent.com/e88877839afe5bc08e29a1d632257397bc4cc677/687474703a2f2f636f6464696e67746f6e626561722d7075626c69632e73332e616d617a6f6e6177732e636f6d2f6769746875622f7461736b77617272696f722d706f6d6f646f726f2f73637265656e73686f742e706e67\"> </a> \n<small><a href=\"/~https://github.com/coddingtonbear/taskwarrior-pomodoro\"></a></small>\n<a href=\"/~https://github.com/coddingtonbear/taskwarrior-pomodoro\"> </a>",
"descriptionText" : "taskwarrior-pomodoro is a simple application allowing you to use Pomodoro techniques with Taskwarrior on OSX.",
"url" : "/~https://github.com/coddingtonbear/taskwarrior-pomodoro",
"url_src" : null,
"license" : "Unknown",
"language" : [ ],
"author" : [ "Adam Coddington" ],
"theme" : [ "OSX" ],
"compatibility" : "2.0+",
"obsolete" : false,
"verified" : null,
"last_update" : "2015-12-07"
}, {
"category" : "Front Ends",
"name" : "taskswamp",
"description" : "taskswamp is a simple script to launch an xterm containing a tmux containing multiple task reports, and have them refreshed at a keypress.",
"descriptionText" : "taskswamp is a simple script to launch an xterm containing a tmux containing multiple task reports, and have them refreshed at a keypress.",
"url" : "/~https://github.com/danielshahaf/taskswamp/",
"url_src" : "/~https://github.com/danielshahaf/taskswamp/",
"license" : "Apache 2.0",
"language" : [ ],
"author" : [ "Daniel Shahaf" ],
"theme" : [ ],
"compatibility" : "any",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-08-12"
}, {
"category" : "Front Ends",
"name" : "vim-taskwarrior",
"description" : "A full-featured, interactive interface for taskwarrior using vim",
"descriptionText" : "A full-featured, interactive interface for taskwarrior using vim",
"url" : "http://github.com/farseer90718/vim-taskwarrior",
"url_src" : "http://github.com/farseer90718/vim-taskwarrior",
"license" : "MIT",
"language" : [ ],
"author" : [ "zc he" ],
"theme" : [ "Vim" ],
"compatibility" : "2.2.0+",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-04-29"
}, {
"category" : "Front Ends",
"name" : "Vit",
"description" : "Vit is a full-screen terminal interface to Taskwarrior with Vim key bindings.",
"descriptionText" : "Vit is a full-screen terminal interface to Taskwarrior with Vim key bindings.",
"url" : "http://tasktools.org/projects/vit.html",
"url_src" : "https://git.tasktools.org/scm/ex/vit.git",
"license" : "GPLv3",
"language" : [ ],
"author" : [ "Scott Kostyshak", "Steve Rader" ],
"theme" : [ "Vim" ],
"compatibility" : "2.0.0+",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-03-08"
}, {
"category" : "Front Ends",
"name" : "Inthe.AM",
"description" : "A modern web frontend for accessing your tasks",
"descriptionText" : "A modern web frontend for accessing your tasks",
"url" : "http://inthe.am/",
"url_src" : null,
"license" : "AGPLv3",
"language" : [ ],
"author" : [ "Adam Coddington & others" ],
"theme" : [ "Web" ],
"compatibility" : "2.3.0+",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : null
}, {
"category" : "Front Ends",
"name" : "tasksh",
"description" : "Tasksh is an interactive shell for taskwarrior \n<small> <a href=\"http://taskwarrior.org/download/tasksh-latest.tar.gz\">Tarball</a> SHA1 5fb9209ec1cafbbde4aa165f41ffb3aeba6faca8 </small>",
"descriptionText" : "Tasksh is an interactive shell for taskwarrior Tarball SHA1 5fb9209ec1cafbbde4aa165f41ffb3aeba6faca8",
"url" : "https://git.tasktools.org/projects/EX/repos/tasksh",
"url_src" : "https://git.tasktools.org/projects/EX/repos/tasksh",
"license" : "MIT",
"language" : [ ],
"author" : [ "GBF" ],
"theme" : [ ],
"compatibility" : "2.4.0+",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2014-12-21"
}, {
"category" : "Front Ends",
"name" : "ptask",
"description" : "ptask is a GTK+ graphical user interface for managing tasks.",
"descriptionText" : "ptask is a GTK+ graphical user interface for managing tasks.",
"url" : "http://wpitchoune.net/ptask",
"url_src" : "http://wpitchoune.net/ptask/files",
"license" : "GPLv2",
"language" : [ ],
"author" : [ "Jean-Philippe Orsini" ],
"theme" : [ "GUI" ],
"compatibility" : "2.0.0+",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2014-11-22"
}, {
"category" : "Front Ends",
"name" : "tchart",
"description" : "Python reporting and front-end for Taskwarrior. A GANTT chart style front end Taskwarrior. Tchart allows for rapid selection and modification of tasks, while the GANTT type report enables a rapid visual overview of tasks based on their due dates.",
"descriptionText" : "Python reporting and front-end for Taskwarrior. A GANTT chart style front end Taskwarrior. Tchart allows for rapid selection and modification of tasks, while the GANTT type report enables a rapid visual overview of tasks based on their due dates.",
"url" : "/~https://github.com/grovesteyn/tchart.git",
"url_src" : "/~https://github.com/grovesteyn/tchart",
"license" : "GPLv2",
"language" : [ "Python" ],
"author" : [ "Grové Steyn" ],
"theme" : [ ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-10-31"
}, {
"category" : "Front Ends",
"name" : "Taskwarrior-web",
"description" : "Taskwarrior-web is a Sinatra-based web front end for Taskwarrior.",
"descriptionText" : "Taskwarrior-web is a Sinatra-based web front end for Taskwarrior.",
"url" : "/~https://github.com/theunraveler/taskwarrior-web",
"url_src" : "/~https://github.com/theunraveler/taskwarrior-web",
"license" : "MIT",
"language" : [ ],
"author" : [ "Jake Bell" ],
"theme" : [ "Web" ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-09-18"
}, {
"category" : "Services",
"name" : "FreeCinc",
"description" : "Don't want to manage your own Taskserver? FreeCinc is a hosted implementation of Taskserver, where you can download a set of uniquely-generated credentials and start syncing for free.",
"descriptionText" : "Don't want to manage your own Taskserver? FreeCinc is a hosted implementation of Taskserver, where you can download a set of uniquely-generated credentials and start syncing for free.",
"url" : "http://freecinc.com",
"url_src" : null,
"license" : "Unknown",
"language" : [ ],
"author" : [ "Jack Desert" ],
"theme" : [ ],
"compatibility" : "2.3.0+",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : null
}, {
"category" : "Libraries",
"name" : "tasklib",
"description" : "Python library for interacting with Taskwarrior data",
"descriptionText" : "Python library for interacting with Taskwarrior data",
"url" : "http://tasklib.readthedocs.org/en/latest/",
"url_src" : "/~https://github.com/tbabej/tasklib",
"license" : "BSD 3 clause",
"language" : [ "Python" ],
"author" : [ "Rob Golding", "Tomas Babej" ],
"theme" : [ ],
"compatibility" : "2.1.x - 2.4.x",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-08-09"
}, {
"category" : "Libraries",
"name" : "Taskwarrior PHP lib",
"description" : "PHP Taskwarrior library, used in \n<a href=\"/~https://github.com/DavidBadura/doThings\">doThings</a>.",
"descriptionText" : "PHP Taskwarrior library, used in doThings.",
"url" : "/~https://github.com/DavidBadura/Taskwarrior",
"url_src" : "/~https://github.com/DavidBadura/Taskwarrior",
"license" : "MIT",
"language" : [ "PHP" ],
"author" : [ "David Badura" ],
"theme" : [ ],
"compatibility" : "2.4.4",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-08-01"
}, {
"category" : "Libraries",
"name" : "taskc",
"description" : "Python taskd client library",
"descriptionText" : "Python taskd client library",
"url" : "https://pypi.python.org/pypi/taskc",
"url_src" : "/~https://github.com/jrabbit/taskd-client-py",
"license" : "LGPLv3",
"language" : [ "Python" ],
"author" : [ "Jack Laxson" ],
"theme" : [ ],
"compatibility" : "taskd 1.0+",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-06-30"
}, {
"category" : "Libraries",
"name" : "rtasklib",
"description" : "Ruby Taskwarrior bindings.",
"descriptionText" : "Ruby Taskwarrior bindings.",
"url" : "/~https://github.com/dropofwill/rtasklib",
"url_src" : "/~https://github.com/dropofwill/rtasklib",
"license" : "MiT",
"language" : [ ],
"author" : [ "Will Paul" ],
"theme" : [ ],
"compatibility" : "2.4.0+",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-05-18"
}, {
"category" : "Libraries",
"name" : "taskw",
"description" : "Python bindings for your taskwarrior database",
"descriptionText" : "Python bindings for your taskwarrior database",
"url" : "https://pypi.python.org/pypi/taskw",
"url_src" : "/~https://github.com/ralphbean/taskw",
"license" : "GPLv3+",
"language" : [ "Python" ],
"author" : [ "Ralph Bean and contributors" ],
"theme" : [ ],
"compatibility" : "2.2.x - 2.4.x",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-04-21"
}, {
"category" : "Hook Scripts",
"name" : "Time Tracking Hook",
"description" : "Robust implementation of a time-tracking hook script, supporting non-UTF8 JSON.",
"descriptionText" : "Robust implementation of a time-tracking hook script, supporting non-UTF8 JSON.",
"url" : "/download/on-modify.timetrack.pl",
"url_src" : "/download/on-modify.timetrack.pl",
"license" : "GPL",
"language" : [ ],
"author" : [ "Klaus Ethgen" ],
"theme" : [ "Time" ],
"compatibility" : "2.4.1+",
"obsolete" : false,
"verified" : "2016-01-11",
"last_update" : "2016-01-11"
}, {
"category" : "Hook Scripts",
"name" : "Ledger Time Tracking Hook",
"description" : "Writes time spent on tasks (\"task start\", \"task stop\") into a timelog formatted file. Example \n<a href=\"http://www.ledger-cli.org/\">ledger CLI</a> reports:\"ledger -f timetrack.ledger print\"\"ledger -f timetrack.ledger register\"",
"descriptionText" : "Writes time spent on tasks (\"task start\", \"task stop\") into a timelog formatted file. Example ledger CLI reports:\"ledger -f timetrack.ledger print\"\"ledger -f timetrack.ledger register\"",
"url" : "https://gist.github.com/wbsch/d977b0ac29aa1dfa4437",
"url_src" : "https://gist.github.com/wbsch/d977b0ac29aa1dfa4437",
"license" : "Unknown",
"language" : [ ],
"author" : [ "Wim Schuermann", "David J Patrick" ],
"theme" : [ "Ledger", "Time" ],
"compatibility" : "2.4.1+",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-07-01"
}, {
"category" : "Hook Scripts",
"name" : "Relative Recurring Tasks Hook",
"description" : "A hook providing relative recurring tasks with due date some period after completing the current task.",
"descriptionText" : "A hook providing relative recurring tasks with due date some period after completing the current task.",
"url" : "/~https://github.com/JensErat/task-relative-recur",
"url_src" : "/~https://github.com/JensErat/task-relative-recur",
"license" : "MIT License",
"language" : [ ],
"author" : [ "Jens Erat" ],
"theme" : [ ],
"compatibility" : "2.4.2+",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-06-15"
}, {
"category" : "Hook Scripts",
"name" : "Default Date Time Hook",
"description" : "A simple Taskwarrior hook that allows setting other default time for dates than 00:00:00.",
"descriptionText" : "A simple Taskwarrior hook that allows setting other default time for dates than 00:00:00.",
"url" : "/~https://github.com/tbabej/taskwarrior-default-date-time-hook",
"url_src" : "/~https://github.com/tbabej/taskwarrior-default-date-time-hook",
"license" : "MIT License",
"language" : [ ],
"author" : [ "Tomas Babej" ],
"theme" : [ "Time" ],
"compatibility" : "2.4.0+",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-06-01"
}, {
"category" : "Hook Scripts",
"name" : "Use Git to track changes Hook",
"description" : "Proof of concept for a Taskwarrior on-exit hook that manages a git repository in ~/.task",
"descriptionText" : "Proof of concept for a Taskwarrior on-exit hook that manages a git repository in ~/.task",
"url" : "https://gist.github.com/wbsch/fe5d0f392657fdfa6fe4",
"url_src" : "https://gist.github.com/wbsch/fe5d0f392657fdfa6fe4",
"license" : "Unknown",
"language" : [ ],
"author" : [ "Wim Schuermann" ],
"theme" : [ "Git" ],
"compatibility" : "2.4.2+",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-06-01"
}, {
"category" : "Hook Scripts",
"name" : "Shift All Recurrence Hook",
"description" : "Have your wait, scheduled and until attributes shifted by the recurrence span of recurrent tasks the same way that due attribute is shifted. Don't let your periodic tasks clutter up your task list any longer.",
"descriptionText" : "Have your wait, scheduled and until attributes shifted by the recurrence span of recurrent tasks the same way that due attribute is shifted. Don't let your periodic tasks clutter up your task list any longer.",
"url" : "/~https://github.com/tbabej/taskwarrior-shift-all-recurrence-hook",
"url_src" : "/~https://github.com/tbabej/taskwarrior-shift-all-recurrence-hook",
"license" : "MIT License",
"language" : [ ],
"author" : [ "Tomas Babej" ],
"theme" : [ ],
"compatibility" : "2.4.0+",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-05-27"
}, {
"category" : "Hook Scripts",
"name" : "Time Tracking Hook",
"description" : "A simple Taskwarrior hook allowing one to track total time spent on a task.",
"descriptionText" : "A simple Taskwarrior hook allowing one to track total time spent on a task.",
"url" : "/~https://github.com/kostajh/taskwarrior-time-tracking-hook",
"url_src" : "/~https://github.com/kostajh/taskwarrior-time-tracking-hook",
"license" : "MIT License",
"language" : [ ],
"author" : [ "Kosta Harlan", "Adam Coddington" ],
"theme" : [ "Time" ],
"compatibility" : "2.4.0+",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-04-20"
}, {
"category" : "Hook Scripts",
"name" : "\"blocks:\" Attribute Hook",
"description" : "Adds a \"blocks:\" pseudo-attribute for adding/modifying tasks. \"blocks:\" is the opposite of \"depends:\".",
"descriptionText" : "Adds a \"blocks:\" pseudo-attribute for adding/modifying tasks. \"blocks:\" is the opposite of \"depends:\".",
"url" : "https://gist.github.com/wbsch/a2f7264c6302918dfb30",
"url_src" : "https://gist.github.com/wbsch/a2f7264c6302918dfb30",
"license" : "Unknown",
"language" : [ ],
"author" : [ "Wim Schuermann" ],
"theme" : [ ],
"compatibility" : "2.4.2+",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-04-01"
}, {
"category" : "Extensions",
"name" : "estact",
"description" : "Velocity (Estimated vs actual time) graph. Plots a velocity graphic for tasks not older than six months:",
"descriptionText" : "Velocity (Estimated vs actual time) graph. Plots a velocity graphic for tasks not older than six months:",
"url" : "/~https://github.com/envolyse/estact",
"url_src" : "/~https://github.com/envolyse/estact",
"license" : "Unknown",
"language" : [ ],
"author" : [ "Vladislav Bykov" ],
"theme" : [ "GUI", "Time" ],
"compatibility" : "2.1.0+",
"obsolete" : false,
"verified" : "2016-03-19",
"last_update" : "2016-03-19"
}, {
"category" : "Extensions",
"name" : "taskwiki",
"description" : "Taskwiki is a Vim plugin to sync Taskwarrior tasks to simple freeform text files and vice versa. Keep your project notes and tasks together!",
"descriptionText" : "Taskwiki is a Vim plugin to sync Taskwarrior tasks to simple freeform text files and vice versa. Keep your project notes and tasks together!",
"url" : "/~https://github.com/tbabej/taskwiki",
"url_src" : "/~https://github.com/tbabej/taskwiki",
"license" : "MIT",
"language" : [ ],
"author" : [ "Tomas Babej" ],
"theme" : [ "Vim" ],
"compatibility" : "2.1.x - 2.4.x",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-08-15"
}, {
"category" : "Extensions",
"name" : "header2task",
"description" : "Script to manipulate taskwarrior tasks when passed a raw email via stdin. Annotating the task with the email's message-id, from, and subject headers.",
"descriptionText" : "Script to manipulate taskwarrior tasks when passed a raw email via stdin. Annotating the task with the email's message-id, from, and subject headers.",
"url" : "/~https://github.com/derekschrock/header2task",
"url_src" : "/~https://github.com/derekschrock/header2task",
"license" : "Simplified BSD",
"language" : [ ],
"author" : [ "Derek Schrock" ],
"theme" : [ "Mail" ],
"compatibility" : "2.3.0+",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-08-15"
}, {
"category" : "Extensions",
"name" : "taskgit",
"description" : "taskgit is a simple wrapper script that automatically tracks your TASKDIR folder in git, making commits every time data changes.",
"descriptionText" : "taskgit is a simple wrapper script that automatically tracks your TASKDIR folder in git, making commits every time data changes.",
"url" : "https://gist.github.com/Unode/9366218",
"url_src" : "https://gist.github.com/Unode/9366218",
"license" : "GPLv3",
"language" : [ ],
"author" : [ "Renato Alves" ],
"theme" : [ "Git", "Time" ],
"compatibility" : "All versions",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-08-12"
}, {
"category" : "Extensions",
"name" : "meteor-taskwarrior",
"description" : "taskwarrior client in meteor.js",
"descriptionText" : "taskwarrior client in meteor.js",
"url" : "/~https://github.com/venturecommunism/meteor-taskwarrior",
"url_src" : "/~https://github.com/venturecommunism/meteor-taskwarrior",
"license" : "Unknown",
"language" : [ ],
"author" : [ "venturecommunism" ],
"theme" : [ ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-08-12"
}, {
"category" : "Extensions",
"name" : "bugwarrior",
"description" : "bugwarrior - Pull tickets from github, bitbucket, bugzilla, jira, trac, and others into taskwarrior",
"descriptionText" : "bugwarrior - Pull tickets from github, bitbucket, bugzilla, jira, trac, and others into taskwarrior",
"url" : "/~https://github.com/ralphbean/bugwarrior",
"url_src" : "/~https://github.com/ralphbean/bugwarrior",
"license" : "GPLv3",
"language" : [ ],
"author" : [ "Ralph Bean" ],
"theme" : [ "Git" ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-07-29"
}, {
"category" : "Extensions",
"name" : "Import/Export Format Converters",
"description" : "These are the format conversion scripts formerly included with Taskwarrior releases, but now moved online. \n<small><a>export-csv.pl</a></small> \n<small><a>export-html.pl</a></small> \n<small><a>export-ical.pl</a></small> \n<small><a>export-sql.py</a></small> \n<small><a>export-tsv.pl</a></small> \n<small><a>export-xml.pl</a></small> \n<small><a>export-xml.py</a></small> \n<small><a>export-xml.rb</a></small> \n<small><a>export-yad.pl</a></small> \n<small><a>export-yaml.pl</a></small> \n<small><a>import-todo.sh.pl</a></small> \n<small><a>import-yaml.pl</a></small>",
"descriptionText" : "These are the format conversion scripts formerly included with Taskwarrior releases, but now moved online. export-csv.pl export-html.pl export-ical.pl export-sql.py export-tsv.pl export-xml.pl export-xml.py export-xml.rb export-yad.pl export-yaml.pl import-todo.sh.pl import-yaml.pl",
"url" : "",
"url_src" : null,
"license" : "MIT",
"language" : [ ],
"author" : [ "Taskwarrior Team" ],
"theme" : [ ],
"compatibility" : "2.0.0+",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-07-29"
}, {
"category" : "Extensions",
"name" : "tasknc",
"description" : "tasknc is a ncurses wrapper for task warrior written in C. It aims to provide an interface like the excellent ncurses programs mutt and ncmpcpp",
"descriptionText" : "tasknc is a ncurses wrapper for task warrior written in C. It aims to provide an interface like the excellent ncurses programs mutt and ncmpcpp",
"url" : "/~https://github.com/lharding/tasknc",
"url_src" : "/~https://github.com/lharding/tasknc",
"license" : "MIT",
"language" : [ ],
"author" : [ "Leander Harding" ],
"theme" : [ ],
"compatibility" : "2.2.0",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-07-28"
}, {
"category" : "Extensions",
"name" : "dashborg",
"description" : "Curses-based Taskwarrior dashboard for your pocket computer.",
"descriptionText" : "Curses-based Taskwarrior dashboard for your pocket computer.",
"url" : "/~https://github.com/lharding/dashborg",
"url_src" : "/~https://github.com/lharding/dashborg",
"license" : "MIT",
"language" : [ ],
"author" : [ "Leander Harding" ],
"theme" : [ ],
"compatibility" : "2.2.0",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-07-28"
}, {
"category" : "Extensions",
"name" : "taskwarrior-notifications",
"description" : "A collection of ways to alert me/bring attention to my task list because I'm easily distracted and need help focusing... what was I doing again? Ohhh, a new podcast...",
"descriptionText" : "A collection of ways to alert me/bring attention to my task list because I'm easily distracted and need help focusing... what was I doing again? Ohhh, a new podcast...",
"url" : "/~https://github.com/flickerfly/taskwarrior-notifications",
"url_src" : "/~https://github.com/flickerfly/taskwarrior-notifications",
"license" : "Unknown",
"language" : [ ],
"author" : [ "Josiah Ritchie" ],
"theme" : [ ],
"compatibility" : "1.9.4",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-07-27"
}, {
"category" : "Extensions",
"name" : "task-indicator",
"description" : "A simple indicator application that helps do simple things with Taskwarrior, like finding and adding tasks, starting and stopping them, track current activity time, etc.",
"descriptionText" : "A simple indicator application that helps do simple things with Taskwarrior, like finding and adding tasks, starting and stopping them, track current activity time, etc.",
"url" : "http://umonkey.net/projects/task-indicator/index.en.html",
"url_src" : "http://umonkey.net/projects/task-indicator/index.en.html",
"license" : "MIT",
"language" : [ ],
"author" : [ "Justin Forest" ],
"theme" : [ "Time" ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-06-19"
}, {
"category" : "Extensions",
"name" : "trev",
"description" : "A mini-shell focusing on taskwarrior reviewing",
"descriptionText" : "A mini-shell focusing on taskwarrior reviewing",
"url" : "/~https://github.com/nocejo/trev",
"url_src" : "/~https://github.com/nocejo/trev",
"license" : "MIT",
"language" : [ ],
"author" : [ "Fidel Mato" ],
"theme" : [ ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-05-25"
}, {
"category" : "Extensions",
"name" : "Pinboard HTML",
"description" : "Inspired by export-html.py, this is a modified version that prints the task list by project into an HTML. \n<small><a href=\"http://www.taskextras.org/boards/1/topics/2286\">Screen Shot</a></small>",
"descriptionText" : "Inspired by export-html.py, this is a modified version that prints the task list by project into an HTML. Screen Shot",
"url" : "/~https://github.com/vsbabu/pinboard/tree/master/utils",
"url_src" : "/~https://github.com/vsbabu/pinboard/tree/master/utils",
"license" : "Free",
"language" : [ ],
"author" : [ "Satheesh Vattekkat" ],
"theme" : [ ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-05-05"
}, {
"category" : "Extensions",
"name" : "tasktime",
"description" : "Calculate and print spent time for a project from taskwarrior",
"descriptionText" : "Calculate and print spent time for a project from taskwarrior",
"url" : "/~https://github.com/svenhertle/tasktime",
"url_src" : "/~https://github.com/svenhertle/tasktime",
"license" : "own",
"language" : [ ],
"author" : [ "Sven Hertle" ],
"theme" : [ "Time" ],
"compatibility" : "2.1.2",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2015-03-01"
}, {
"category" : "Extensions",
"name" : "gtw",
"description" : "Git wrapper Gtw keeps commits in a separate (configurable) branch in a git main repository. Gtw passes all commands directly through to taskwarrior, for maximum compatibility.",
"descriptionText" : "Git wrapper Gtw keeps commits in a separate (configurable) branch in a git main repository. Gtw passes all commands directly through to taskwarrior, for maximum compatibility.",
"url" : "/~https://github.com/hoxu/gtw",
"url_src" : "/~https://github.com/hoxu/gtw",
"license" : "GPLv3",
"language" : [ ],
"author" : [ "Heikki Hokkanen" ],
"theme" : [ "Git" ],
"compatibility" : "All",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2014-12-06"
}, {
"category" : "Extensions",
"name" : "twmail",
"description" : "<code>twmail</code> allows you to mail new tasks to your Taskwarrior inbox",
"descriptionText" : "twmail allows you to mail new tasks to your Taskwarrior inbox",
"url" : "/~https://github.com/nerab/TaskWarriorMail",
"url_src" : "/~https://github.com/nerab/TaskWarriorMail",
"license" : "MIT License",
"language" : [ ],
"author" : [ "Nicholas E. Rabenau" ],
"theme" : [ "Mail" ],
"compatibility" : "2.1.0",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2014-11-16"
}, {
"category" : "Extensions",
"name" : "taskgv",
"description" : "Generates a pretty, directed graph of Taskwarrior projects, tags, and tasks.",
"descriptionText" : "Generates a pretty, directed graph of Taskwarrior projects, tags, and tasks.",
"url" : "/~https://github.com/shushcat/taskgv",
"url_src" : "/~https://github.com/shushcat/taskgv",
"license" : "MIT",
"language" : [ ],
"author" : [ "John O Brickley" ],
"theme" : [ ],
"compatibility" : "2.0.0",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2014-09-07"
}, {
"category" : "Extensions",
"name" : "task-anon",
"description" : "Anonymizes project names, task descriptions and annotations with md5 hashes that include a salt to provide a modicum of security. Tags are not anonymized (how would users indicate the problem tasks otherwise?). Anonymizing data is for helping developers diagnose data-specific problems with Taskwarrior.",
"descriptionText" : "Anonymizes project names, task descriptions and annotations with md5 hashes that include a salt to provide a modicum of security. Tags are not anonymized (how would users indicate the problem tasks otherwise?). Anonymizing data is for helping developers diagnose data-specific problems with Taskwarrior.",
"url" : "https://git.tasktools.org/projects/ST/repos/tw.org/commits/eb41773ce401bb6f3f4e145b237450074f5be8c5",
"url_src" : "https://git.tasktools.org/projects/ST/repos/tw.org/commits/eb41773ce401bb6f3f4e145b237450074f5be8c5",
"license" : "GPLv2",
"language" : [ ],
"author" : [ "Cory Donnelly", "Johannes Schlatow" ],
"theme" : [ ],
"compatibility" : "All",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2014-07-10"
}, {
"category" : "Extensions",
"name" : "ac-task-php",
"description" : "ActiveCollab and Taskwarrior integration",
"descriptionText" : "ActiveCollab and Taskwarrior integration",
"url" : "/~https://github.com/kostajh/ac-task-php",
"url_src" : "/~https://github.com/kostajh/ac-task-php",
"license" : "GPLv2",
"language" : [ ],
"author" : [ "Kosta Harlan" ],
"theme" : [ ],
"compatibility" : "2.2.0",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2014-02-19"
}, {
"category" : "Extensions",
"name" : "taskopen",
"description" : "taskopen is used for opening files that are added with their paths as a task annotation. It can also open notes that were added by tasknote.",
"descriptionText" : "taskopen is used for opening files that are added with their paths as a task annotation. It can also open notes that were added by tasknote.",
"url" : "/~https://github.com/ValiValpas/taskopen",
"url_src" : "/~https://github.com/ValiValpas/taskopen",
"license" : "GPLv2",
"language" : [ ],
"author" : [ "Johannes Schlatow" ],
"theme" : [ ],
"compatibility" : "2.4.0",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2014-02-14"
}, {
"category" : "Extensions",
"name" : "vimwiki-tasks",
"description" : "A Vim plugin to integrate Vimwiki tasks with taskwarrior. Syncs tasks between vimwiki and taskwarrior in both directions.",
"descriptionText" : "A Vim plugin to integrate Vimwiki tasks with taskwarrior. Syncs tasks between vimwiki and taskwarrior in both directions.",
"url" : "/~https://github.com/teranex/vimwiki-tasks",
"url_src" : "/~https://github.com/teranex/vimwiki-tasks",
"license" : "MIT",
"language" : [ ],
"author" : [ "Jeroen Budts" ],
"theme" : [ "Vim" ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-12-01"
}, {
"category" : "Extensions",
"name" : "taskrambler",
"description" : "Multi user task organization and management tool",
"descriptionText" : "Multi user task organization and management tool",
"url" : "/~https://github.com/georghopp/taskrambler",
"url_src" : "/~https://github.com/georghopp/taskrambler",
"license" : "Unknown",
"language" : [ ],
"author" : [ "Georg Hopp" ],
"theme" : [ ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-11-28"
}, {
"category" : "Extensions",
"name" : "taskquery",
"description" : "A simply query interface for Taskwarrior. This script lets you on-the-fly specify which columns you want to see in a report and how the result should be sorted. When you just want to create a simple custom report which you are going to use once, this is much simpler then having to create a custom report, or specify all the rc-override on the commandline.",
"descriptionText" : "A simply query interface for Taskwarrior. This script lets you on-the-fly specify which columns you want to see in a report and how the result should be sorted. When you just want to create a simple custom report which you are going to use once, this is much simpler then having to create a custom report, or specify all the rc-override on the commandline.",
"url" : "/~https://github.com/teranex/taskquery",
"url_src" : "/~https://github.com/teranex/taskquery",
"license" : "MIT",
"language" : [ ],
"author" : [ "Jeroen Budts" ],
"theme" : [ ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-11-10"
}, {
"category" : "Extensions",
"name" : "trello_to_task",
"description" : "Tool to migrate from \n<a href=\"http://trello.com\">Trello</a> to Taskwarrior",
"descriptionText" : "Tool to migrate from Trello to Taskwarrior",
"url" : "/~https://github.com/jbarratt/trello_to_task",
"url_src" : "/~https://github.com/jbarratt/trello_to_task",
"license" : "Unknown",
"language" : [ ],
"author" : [ "Joshua Barratt" ],
"theme" : [ ],
"compatibility" : "2.0.0",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-09-18"
}, {
"category" : "Extensions",
"name" : "task-git.sh",
"description" : "A wrapper around Taskwarrior that places the task database in version control, and generates commits each time the database is altered.",
"descriptionText" : "A wrapper around Taskwarrior that places the task database in version control, and generates commits each time the database is altered.",
"url" : "/~https://github.com/kostajh/task-git",
"url_src" : "/~https://github.com/kostajh/task-git",
"license" : "GPLv3",
"language" : [ ],
"author" : [ "Kosta Harlan" ],
"theme" : [ "Time" ],
"compatibility" : "2.2.0",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-09-02"
}, {
"category" : "Extensions",
"name" : "twdeps",
"description" : "Vizualizes dependencies between Taskwarrior tasks",
"descriptionText" : "Vizualizes dependencies between Taskwarrior tasks",
"url" : "/~https://github.com/nerab/twdeps",
"url_src" : "/~https://github.com/nerab/twdeps",
"license" : "MIT",
"language" : [ ],
"author" : [ "Nicholas E. Rabenau" ],
"theme" : [ ],
"compatibility" : "2.1.2",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-07-23"
}, {
"category" : "Extensions",
"name" : "taskwarrior-progress",
"description" : "Progress Reports for Taskwarrior Projects",
"descriptionText" : "Progress Reports for Taskwarrior Projects",
"url" : "/~https://github.com/frenchrd/taskwarrior-progress",
"url_src" : "/~https://github.com/frenchrd/taskwarrior-progress",
"license" : "Unknown",
"language" : [ ],
"author" : [ "Robert D. French" ],
"theme" : [ ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-07-16"
}, {
"category" : "Extensions",
"name" : "taskboy",
"description" : "Create a new note in Tomboy with individual tasks in Taskwarrior.",
"descriptionText" : "Create a new note in Tomboy with individual tasks in Taskwarrior.",
"url" : "/~https://github.com/pi3ch/taskboy",
"url_src" : "/~https://github.com/pi3ch/taskboy",
"license" : "Unknown",
"language" : [ ],
"author" : [ "Pedram Hayati" ],
"theme" : [ ],
"compatibility" : "1.9.4",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-07-03"
}, {
"category" : "Extensions",
"name" : "twoutline",
"description" : "Taskwarrior to Outline",
"descriptionText" : "Taskwarrior to Outline",
"url" : "/~https://github.com/AikidoGuy/twoutline",
"url_src" : "/~https://github.com/AikidoGuy/twoutline",
"license" : "Unknown",
"language" : [ ],
"author" : [ "Aikido Guy" ],
"theme" : [ ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-06-21"
}, {
"category" : "Extensions",
"name" : "tw2latex",
"description" : "Taskwarrior to LaTeX python utility",
"descriptionText" : "Taskwarrior to LaTeX python utility",
"url" : "/~https://github.com/AikidoGuy/tw2latex",
"url_src" : "/~https://github.com/AikidoGuy/tw2latex",
"license" : "Unknown",
"language" : [ "Python" ],
"author" : [ "Aikido Guy" ],
"theme" : [ ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-06-21"
}, {
"category" : "Extensions",
"name" : "tasksync",
"description" : "A tool for bidirectional synchronization of task repositories, like Taskwarrior and Google Tasks.",
"descriptionText" : "A tool for bidirectional synchronization of task repositories, like Taskwarrior and Google Tasks.",
"url" : "/~https://github.com/burnison/tasksync",
"url_src" : "/~https://github.com/burnison/tasksync",
"license" : "GPLv3",
"language" : [ ],
"author" : [ "Richard Burnios" ],
"theme" : [ ],
"compatibility" : "2.1.1",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-05-29"
}, {
"category" : "Extensions",
"name" : "taskreport",
"description" : "taskreport allows you to export a list of \"reports\" (these are just list of tasks defined by a filter rule) to HTML format, and then, print the HTML format to a file or send it by email. The html layout is customizable by the use of Jinja templates.",
"descriptionText" : "taskreport allows you to export a list of \"reports\" (these are just list of tasks defined by a filter rule) to HTML format, and then, print the HTML format to a file or send it by email. The html layout is customizable by the use of Jinja templates.",
"url" : "http://pypi.python.org/pypi/taskreport",
"url_src" : "https://pypi.python.org/pypi/taskreport",
"license" : "GPLv3",
"language" : [ ],
"author" : [ "Alicia BEL & Thibaut HOREL" ],
"theme" : [ "Mail" ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-04-10"
}, {
"category" : "Extensions",
"name" : "taskwarrior-workflow",
"description" : "Taskwarrior workflow for Alfred v2",
"descriptionText" : "Taskwarrior workflow for Alfred v2",
"url" : "/~https://github.com/anazimok/taskwarrior-workflow",
"url_src" : "/~https://github.com/anazimok/taskwarrior-workflow",
"license" : "Unknown",
"language" : [ ],
"author" : [ "Alex Nazimok" ],
"theme" : [ ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-04-08"
}, {
"category" : "Extensions",
"name" : "tb2taskwarrior",
"description" : "tb2taskwarrior can add a task from email in Thunderbird to Taskwarrior.",
"descriptionText" : "tb2taskwarrior can add a task from email in Thunderbird to Taskwarrior.",
"url" : "/~https://github.com/pi3ch/tb2taskwarrior",
"url_src" : "/~https://github.com/pi3ch/tb2taskwarrior",
"license" : "GPLv2",
"language" : [ ],
"author" : [ "Pedram Hyati" ],
"theme" : [ "Mail" ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-04-02"
}, {
"category" : "Extensions",
"name" : "task-autodelay.pl",
"description" : "Automated task delay - a sophisticated script that can be used to add 10 days to the due date of any tasks.",
"descriptionText" : "Automated task delay - a sophisticated script that can be used to add 10 days to the due date of any tasks.",
"url" : "http://spiegl.de/andy/software/task-autodelay.pl",
"url_src" : "http://spiegl.de/andy/software/task-autodelay.pl",
"license" : "MIT",
"language" : [ ],
"author" : [ "Andy Spiegl" ],
"theme" : [ ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-03-26"
}, {
"category" : "Extensions",
"name" : "mail2taskwarrior",
"description" : "Add a task to taskwarrior via email",
"descriptionText" : "Add a task to taskwarrior via email",
"url" : "/~https://github.com/neingeist/mail2taskwarrior",
"url_src" : "/~https://github.com/neingeist/mail2taskwarrior",
"license" : "Unknown",
"language" : [ ],
"author" : [ "neingeist" ],
"theme" : [ "Mail" ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-03-18"
}, {
"category" : "Extensions",
"name" : "kanban-warrior",
"description" : "A python script supporting my kanban workflow for Task Warrior. \n<small><a href=\"http://joosten-industries.nl/blog/2013/03/07/kanban-warrior/\">Blog</a></small>",
"descriptionText" : "A python script supporting my kanban workflow for Task Warrior. Blog",
"url" : "/~https://github.com/keigezellig/kanbanwarrior",
"url_src" : "/~https://github.com/keigezellig/kanbanwarrior",
"license" : "THE APPRECIATION LICENSE\" (Revision 0xFF)",
"language" : [ "Python" ],
"author" : [ "M. Joosten" ],
"theme" : [ ],
"compatibility" : "2.1.2",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-03-14"
}, {
"category" : "Extensions",
"name" : "Tasky",
"description" : "A Taskwarrior client that doesn't suck very much.",
"descriptionText" : "A Taskwarrior client that doesn't suck very much.",
"url" : "/~https://github.com/jonsterling/Tasky",
"url_src" : "/~https://github.com/jonsterling/Tasky",
"license" : "Unknown",
"language" : [ ],
"author" : [ "Jonathan Sterling" ],
"theme" : [ ],
"compatibility" : "2.1.2",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-03-04"
}, {
"category" : "Extensions",
"name" : "taskjabb",
"description" : "Taskwarrior to jabber interface",
"descriptionText" : "Taskwarrior to jabber interface",
"url" : "/~https://github.com/qbit/taskjabb",
"url_src" : "/~https://github.com/qbit/taskjabb",
"license" : "Unknown",
"language" : [ ],
"author" : [ "qbit" ],
"theme" : [ ],
"compatibility" : "2.1.1",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-03-02"
}, {
"category" : "Extensions",
"name" : "taskiwi",
"description" : "A web-interface for taskwarrior",
"descriptionText" : "A web-interface for taskwarrior",
"url" : "/~https://github.com/fdev31/taskiwi",
"url_src" : "/~https://github.com/fdev31/taskiwi",
"license" : "Unknown",
"language" : [ ],
"author" : [ "fdev31" ],
"theme" : [ "Web" ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-02-21"
}, {
"category" : "Extensions",
"name" : "git-task",
"description" : "mini-issue tracker for git repositories, using Taskwarrior.",
"descriptionText" : "mini-issue tracker for git repositories, using Taskwarrior.",
"url" : "/~https://github.com/proxypoke/git-task",
"url_src" : "/~https://github.com/proxypoke/git-task",
"license" : "Free",
"language" : [ ],
"author" : [ "proxypoke" ],
"theme" : [ "Git" ],
"compatibility" : "2.1.2",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-02-11"
}, {
"category" : "Extensions",
"name" : "mess2task",
"description" : "For adding a message ID from a mutt mail directly to the most recently added task. This is useful in combination with taskopen and the muttjump scripts on this page.",
"descriptionText" : "For adding a message ID from a mutt mail directly to the most recently added task. This is useful in combination with taskopen and the muttjump scripts on this page.",
"url" : "/~https://github.com/ValiValpas/taskopen/blob/master/scripts/mess2task",
"url_src" : "/~https://github.com/ValiValpas/taskopen/blob/master/scripts/mess2task",
"license" : "GPLv2",
"language" : [ ],
"author" : [ "Jostein Berntsen" ],
"theme" : [ "Mail" ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-02-05"
}, {
"category" : "Extensions",
"name" : "mess2task2",
"description" : "For adding a message ID from a mutt mail to the clipboard in KDE, making it possible to add this as an annotation to any task.",
"descriptionText" : "For adding a message ID from a mutt mail to the clipboard in KDE, making it possible to add this as an annotation to any task.",
"url" : "/~https://github.com/ValiValpas/taskopen/blob/master/scripts/mess2task2",
"url_src" : "/~https://github.com/ValiValpas/taskopen/blob/master/scripts/mess2task2",
"license" : "GPLv2",
"language" : [ ],
"author" : [ "Jostein Berntsen" ],
"theme" : [ "Mail" ],
"compatibility" : "Unknown",
"obsolete" : false,
"verified" : "2015-08-15",
"last_update" : "2013-02-05"
}, {
"category" : "Extensions",
"name" : "mutt2task",
"description" : "For adding an email from mutt as a task. \n<small>See: <a href=\"http://blog.nixternal.com/category/gtd/\">blog article</a></small> \n<small><a href=\"https://gist.github.com/noqqe/6562350\">Alternative implementation</a></small>",
"descriptionText" : "For adding an email from mutt as a task. See: blog article Alternative implementation",
"url" : "/~https://github.com/ValiValpas/taskopen/blob/master/scripts/mutt2task",
"url_src" : "/~https://github.com/ValiValpas/taskopen/blob/master/scripts/mutt2task",
"license" : "GPLv2",
"language" : [ ],
"author" : [ "Richard A. Johnson" ],