10

Are the any task tracking systems with command-line interface?

Here is a list of features I'm interested in:

  • Simple task template
    Something like plain-text file with property:type pairs, for example:
description:string  
some-property:integer required
  • command line interface
    for example:
// Creates task
<task tracker>.exe -create {description: "Foo", some-property: 1}   
// Search for tasks with description field starting from F
<task tracker>.exe -find { description: "F*" } 
  • XCopy deployment
    It should not require to install heavy DBMS

  • Multiple users support
    So it's not just a to-do list for a single person

aku
  • 122,288
  • 32
  • 173
  • 203

12 Answers12

5

Ditz is a simple, light-weight distributed issue tracker designed to work with distributed version control systems like darcs and git.

Ditz: http://web.archive.org/web/20121212202849/http://gitorious.org/ditz

Also cloned here: https://github.com/jashmenn/ditz

Csa77
  • 649
  • 13
  • 19
5

Interesting idea; the closest thing I have heard of is todo.txt.

Alternatively, you could roll your own by just using a database (e.g. sqllite) and SQL. Optionally, write a wrapper script that parses your plain-text file and command-line options, and generates the corresponding SQL.

Peter Hilton
  • 17,211
  • 6
  • 50
  • 75
  • My understanding is that you can't use todo.txt on different projects. Seems like it requires you to store the location (TODO_DIR="path/to/todofile") of your single todo.txt in a centralized todo.cfg file. Or? – Henrik Sep 21 '10 at 23:11
3

Have you seen ticgit. It sounds like it might do just what you guys are after.

Matt
  • 5,522
  • 5
  • 29
  • 24
2

Erlangs Ticket System

Created by Peter Högfeldt in 1986. This is the ticket system that was used in the Erlang distribution.

Source: Joe Armstrong's blog

Flux
  • 9,805
  • 5
  • 46
  • 92
neoneye
  • 50,398
  • 25
  • 166
  • 151
1

I've abused the cal and calendar commandline tools regularly for this type of task.

Jasper Bekkers
  • 6,711
  • 32
  • 46
1

ciss issue tracker is a simple commandline tool for managing your ISSUES.txt file.

Henrik
  • 2,421
  • 4
  • 25
  • 33
1

http://roundup.sourceforge.net/

1

@Peter Hilton,

I'm going to create such system. So I'm wondering whether such system exists. General idea is to keep it as simple as possible: command line utility to manage tasks & simple server wit REST interface. I used dozen different task tracking system and come to conclusion that I don't need fancy UI. It should be like Subversion - you can happily work with command-line based svn.exe

aku
  • 122,288
  • 32
  • 173
  • 203
0

Have a look at Pitz and Bugs Everywhere.

Offe
  • 184
  • 5
0

I use org-mode with emacs in terminal mode (emacs -nw).

0

We have used a few tools earlier. We now use a GitHub private repository to maintain various developer TBD lists (as .md files) and issue tracking because of the following advantages:

  • Developers are already using GitHub and they don't need to learn anything new.
  • Developers can use whatever tool they are comfortable with to maintain TBD list; command line or graphical editors, GitHub web interface or plenty of mobile clients
  • Markdown support
  • Reliable backup
  • Merging and revision history
  • Flexible file organization for different projects and modules
mesibo
  • 3,970
  • 6
  • 25
  • 43
0

Fogbugz has a Command Line Client.

binOr
  • 2,551
  • 1
  • 22
  • 18
  • Nope, fogbugz is to heavy, I'm looking for something like svn – aku Sep 17 '08 at 10:31
  • That's been deprecated. Came here looking for something like [this](https://developers.kilnhg.com/Code/FogBugz/Group/FogBugzPy/File/README.txt?rev=tip), turns out the replacement is exactly what I was looking for. – yurisich Feb 08 '13 at 15:29