A quirky ASCII art weekly TODO list CLI application that works from any directory.
- ASCII art interface
- Tasks automatically expire at the end of the week
- Works from any directory (global state)
- Simple and intuitive interface
npm install -g ascii-todo-cli
After installing, you can run the CLI from any directory with:
ascii-todo
- Add Task: Add a new task to your list
- Toggle Task: Mark a task as complete/incomplete
- Edit Task: Change the text of an existing task
- Delete Task: Remove a task from the list
- View Time Remaining: See how much time is left until tasks expire
If running ascii-todo
doesn't work after installation:
-
Make sure the package is installed globally:
npm install -g ascii-todo-cli
-
Check if the executable has the right permissions:
chmod +x $(npm root -g)/ascii-todo-cli/dist/cli.js
-
Check your PATH environment variable includes npm global bin directory:
echo $PATH | grep -q "$(npm bin -g)" || echo "Add $(npm bin -g) to your PATH"
To run locally:
git clone https://github.com/yourusername/ascii-todo-cli.git
cd ascii-todo-cli
npm install
npm run dev
MIT