Skip to content

A powerful CLI todo list & project manager crafted in Go, designed to keep your tasks and projects organized and accessible right from the terminal

License

Notifications You must be signed in to change notification settings

d4r1us-drk/clido

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

clido

Clido is an awesome CLI to-do list management application that helps you keep track of your projects and tasks efficiently.

Table of Contents

  1. About The Project
  2. Getting Started
  3. Usage
  4. Roadmap
  5. Contributing
  6. License

About The Project

Clido is a simple yet powerful CLI tool designed to help you manage your projects and tasks effectively from the terminal. Whether you're a developer, a project manager, or just someone who loves to keep things organized, Clido is the perfect tool for you.

Built With

Getting Started

To get a local copy up and running, follow these simple steps.

Installation

You have several options to install Clido:

  1. Download the official binary:

    • Get the appropriate binary for your operating system and computer architecture from the releases page.
    • Move the binary to a location in your PATH.
  2. Install via Go:

    go install github.com/d4r1us-drk/clido@latest
  3. Install using Make:

    git clone https://github.com/d4r1us-drk/clido.git
    cd clido
    make install

Usage

Clido allows you to manage projects and tasks with various commands. Below are some usage examples.

Commands

  • Create a new project:

    clido new project -n "New Project" -d "Project Description"
  • Create a new task with priority:

    clido new task -n "New Task" -d "Task Description" -D "2024-08-15 23:00" -p "Existing Project" -r 1

    Priority levels: 1 (High), 2 (Medium), 3 (Low), 4 (None)

  • Edit an existing project:

    clido edit project 1 -n "Updated Project Name" -d "Updated Description"
  • Edit a task's priority:

    clido edit task 1 -r 2
  • List all projects:

    clido list projects
  • List tasks by project:

    clido list tasks -p "Project Name"
  • Remove a project:

    clido remove project 1
  • Toggle task completion:

    clido toggle 1

For detailed help, use the help command:

clido help

Roadmap

  • Add task and project management
  • Add priority levels for tasks
  • Implement Cobra framework for improved CLI structure
  • Add shell completion support
  • Add sub-tasks and sub-projects
  • Add a config file with customizable options, like database path, date-time format, etc.
  • Add a JSON output option to facilitate scripting
  • Add reminders and notifications (this would require a daemon)
  • Add a TUI interface

See the open issues for a full list of proposed features (and known issues).

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

Distributed under the GPLv3 License. See LICENSE for more information.

About

A powerful CLI todo list & project manager crafted in Go, designed to keep your tasks and projects organized and accessible right from the terminal

Topics

Resources

License

Stars

Watchers

Forks