taskify-cli
is a command-line interface (CLI) tool to manage your to-do list with SQL-like syntax. With this tool, you can create, fetch, and manage your taskifys directly from the terminal using commands inspired by SQL queries.
To install taskify-cli
globally on your system, run the following command:
npm install -g taskify-cli
pnpm add -g taskify-cli
Once installed, you can use the taskify-cli to manage your to-do list. Below are the available commands:
create-todo Creates a new to-do item with the specified headers and values.
taskifyName (string): The name of the to-do list.
headers (comma-separated list): The column headers (e.g., "title, description, dueDate").
values (comma-separated list): The corresponding values for the headers (e.g., "Buy groceries, Milk, 2025-01-30").
taskify-cli create-todo "Buy Groceries" "title, description, dueDate" "Buy vegetables, Milk, 2025-01-30"
This will create a new to-do item with the provided headers and values.
Fetches a particular to-do by its name from the Local database. todo-name/title (string): The name of the to-do you want to fetch.
taskify-cli select "Buy Groceries" from cli
choose $ from cli
taskify-cli choose $ from cli
We welcome contributions from developers! The taskify-cli
project is actively evolving, and there are many features that can still be added. If you're an interested developer, you can help by adding new features, fixing bugs, improving documentation, or enhancing existing functionalities.
Here are a few areas where contributions are welcome:
- Enhanced taskify Commands: Add more commands such as
update-todo
,delete-todo
, etc., for better to-do list management. - Data Persistence: Implement options for saving to-dos in different formats, such as JSON or a cloud-based database.
- Error Handling: Improve error messages and handling for a more robust user experience.
- Help and Documentation: Improve the documentation by adding more examples and better explanations for new users.
-
Fork the repository
Click the "Fork" button in the top right corner of the repository to create a copy of the project under your own GitHub account. -
Clone your fork
Use the following command to clone your fork to your local machine:git clone https://github.com/your-username/taskify-cli.git