TasksCLI is a command-line interface tool for managing tasks stored in a CSV file. It allows you to list, filter, view, and update tasks efficiently from your terminal.
- List all tasks
- Filter tasks by field and value
- View detailed information for a specific task
- Update task status
- Colorful output for better readability
Install the gem by running:
gem install tasks_cli
TasksCLI expects a CSV file located at ~/tasks.csv
. Ensure this file exists and has the correct format before using the tool.
The CSV file should have the following columns:
- Epic Name
- Ticket Number
- Ticket Name
- Ticket Description
- Priority
- Status
- Relates To [Array]
- Blocked By [Array]
- Updated At (optional)
Epic Name,Ticket Number,Ticket Name,Ticket Description,Priority,Status,Relates To,Blocked By,Updated At
Epic 1,1,Task 1,Description 1,High,To Do,,,
Epic 1,2,Task 2,Description 2,Medium,In Progress,,,
Epic 1,3,Task 3,Description 3,Low,Done,,,
What I find best is to use the following process;
- Loosely define the project with an LLM of your choice.
- Ask LLM to generate a list of tasks for the project.
- Iterate on the LLM generated tasks until you are satisfied.
- Ask LLM to generate the CSV of the tasks using the above format.
To list all tasks, run:
tasks list
To filter tasks by a specific field and value, run:
tasks filter FIELD:VALUE
Replace FIELD
with the column name and VALUE
with the value you want to filter by.
For example, to filter tasks by Epic 1:
tasks filter "Epic Name":"Epic 1"
To view details of a specific task, run:
tasks view NUMBER
To update the status of a task, run:
tasks update NUMBER STATUS
Replace NUMBER
with the ticket number and STATUS
with the new status you want to set.
This project is licensed under the MIT License. See the LICENSE
file for more details.