togo is a command line task/todo management utility designed to be simple, fast, and easy to use.
- CLI & TUI Interfaces: A CLI for single-task operations and an interactive TUI for bulk operations and list view.
- Vim Keybinds: A handful of Vim actions are built into the TUI (more will be added soon).
- Fuzzy Search & Filtering: Find tasks quickly with partial name matching.
- Tab Completion: Shell completion with fuzzy matching support built into the completion script.
- Project/Global Sources: Load/save from the closest
.togofile in your project tree, with a global fallback. Force with--source project|global.
togo is available on the Arch User Repository (AUR)
paru -S togo-binDownload the latest pre-built binaries from the Releases page.
Linux (x86_64)
wget https://github.com/prime-run/togo/releases/download/v1.0.5/togo_1.0.5_linux_amd64.tar.gz
mkdir -p ~/.local/bin
tar -xzf togo_*.tar.gz -C ~/.local/bin/togomacOS (Apple Silicon arm64)
wget https://github.com/prime-run/togo/releases/download/v1.0.5/togo_1.0.5_darwin_arm64.tar.gz
mkdir -p ~/.local/bin
tar -xzf togo_*.tar.gz -C ~/.local/bin/togoNote
Don't forget to set the PATH environment variable.
export PATH="$HOME/.local/bin:$PATH"go install github.com/prime-run/togo@latest# Clone the repository
git clone https://github.com/prime-run/togo.git
cd togo
make
# And follow the promptsAll make installation methods should set up shell completion out of the box.
In case your shell isn't detected, you can run togo completion --help.
To add a task:
togo add "Task description"
# or without quotes, it's treated as stdin!
togo add Call the client about project scopeTogo can load and save your tasks from two sources:
- "project" (default): uses the closest
.togofile found by walking up from the current directory. If none is found, it falls back to the global file. - "global": always uses the global file in your user config directory.
Control the source with the persistent flag on any command:
# project (default)
togo list
togo add "Write docs" -s project
# force global
togo list --source globalInitialize project-local storage in your repo:
togo init # creates ./\.togo with an empty JSON listIn the TUI, the header shows the active source as source: project or source: global.
Togo provides two primary modes of operation:
The TUI lets you work with your todos visually and allows for bulk actions:
togo
# or
togo list # Active todos only
togo list --all # All todos
togo list --archived # Archived todos onlyTogo offers flexible command syntax with three usage patterns:
All commands accept the persistent
--source|-sflag:project(default) orglobal.
togo toggle meeting
# force using global source
togo toggle meeting --source globalIf only one task contains "meeting," it executes immediately—no selection needed. If multiple tasks match (e.g., "team meeting" and "client meeting"), Togo automatically opens the selection list so you can choose the one you meant.
togo toggle
# against project-local source explicitly
togo toggle -s projectOpens a selection list where you can choose from available tasks:
As you type, Togo searches through your tasks and filters the results.
If you've configured shell completion (see below), you can use tab-completion:
togo toggle [TAB]Your shell will present available tasks. Type a few letters to filter by name:
togo toggle me[TAB]The shell will show only tasks containing "me"—perfect for quick selection.
--source also supports completion to project and global.
Tip
This really speeds up task management since fuzzy matching is supported by the completion script.
For example, to mark the task Auto ***snapshot*** /boot ... as completed,
just running togo toggle snap would toggle it. If snap matches more than one task,
you'll be prompted to select from the matches.
togo add "Task description"- Add a new tasktogo toggle [task]- Toggle completion statustogo archive [task]- Archive a completed tasktogo unarchive [task]- Restore an archived tasktogo delete [task]- Remove a task permanentlytogo list [flags]- View tasks (--all,--archived)togo init- Create an empty.togofile in the current directory (enable project-local storage)
Notes:
- All commands accept
--source|-s {project|global}to control where tasks are read/written.
Enabling shell completion allows for tab-completion of commands and task names, improving efficiency.
# 1. Create completion directory
mkdir -p ~/.zsh/completion
echo "fpath=(~/.zsh/completion \$fpath)" >> ~/.zshrc
# 2. Enable completions
echo "autoload -Uz compinit && compinit" >> ~/.zshrc
# 3. Apply Togo completion
togo completion zsh > ~/.zsh/completion/_togo
source ~/.zshrc# 1. Ensure completion is sourced
echo "[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion" >> ~/.bashrc
source ~/.bashrc
# 2. Install Togo completion
togo completion bash > ~/.bash_completion
source ~/.bash_completionmkdir -p ~/.config/fish/completions
togo completion fish > ~/.config/fish/completions/togo.fishStorage locations:
- Project: nearest
./.togofile (JSON).- Global:
$XDG_CONFIG_HOME/togo/todos.json(or$HOME/.config/togo/todos.json).
This project is licensed under MIT - see the LICENSE file for details.