| Crates.io | tafsk |
| lib.rs | tafsk |
| version | 0.3.0 |
| created_at | 2025-12-15 13:14:14.615572+00 |
| updated_at | 2025-12-19 15:26:23.807183+00 |
| description | Organize tasks like a file system. |
| homepage | |
| repository | https://github.com/yilisharcs/tafsk |
| max_upload_size | |
| id | 1986068 |
| size | 87,985 |
tafsk - Organize tasks like a file system.
tafsk [OPTIONS] [SUBCOMMAND] [ARGS]
tafsk is a command-line utility for managing tasks as plaintext using a filesystem-based approach: basically, every task is a directory. On creation, tasks are given a HUman IDentifier derived from the current datetime plus a hash of its contents. Extra information can be attached to a task by adding files to its directory. You can even keep it under version control.
Derive from this what value you can find.
Create a new task.
USAGE
tafsk add [-p|--priority N] [-e|--edit] [-g|--global] [+TAG...] TITLE
OPTIONS
-p, --priority N Set the priority level for the task (0-255). The default priority is 10.
-e, --edit Open the newly created task on the default $EDITOR.
-g, --global Create the task in the global store at $TAFSK_STORE_DIR.
TITLE The short description of the task.
+TAG
One or more tags to categorize the task. Tags must be prefixed with a +.
EXAMPLE
tafsk add -p 100 "Fix critical bug" +work
tafsk add -p 60 +cat Send cat pictures to smelly
Mark one or more tasks as closed.
USAGE
tafsk done [-g|--global] ID...
OPTIONS
ARGS
list command output.EXAMPLE
tafsk done 1 3
Initialize the task store configuration.
USAGE
tafsk init [TIMEZONE]
ARGS
+09:30,
-05:00). Defaults to +00:00 (UTC) if not specified.EXAMPLE
tafsk init -03:00
List all tasks. This is the default action when no subcommand is provided.
Tasks are listed in the following format:
{PATH}:7:{ID}: [PRIORITY: {PRIORITY}] [TAGS: {TAGS}] {TITLE}
This format was chosen because it plays nicely with neovim's quickfix list.
USAGE
tafsk list [-c|--closed] [-g|--global]
OPTIONS
-c, --closed Include closed tasks in the output list. By default, only open tasks are shown.
-g, --global List tasks from the global store at $TAFSK_STORE_DIR.
EXAMPLE
tafsk list --closed
-h, --help Print help information.
-V, --version Print version information.
tasks directory is found. If the TAFSK_STORE_DIR directory does not
exist, it will be created when a task is added or the store is initialized.Report issues at: https://github.com/yilisharcs/tafsk/issues
Copyright (C) 2025 yilisharcs yilisharcs@gmail.com
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.