TaskStak 1.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global TaskStak --version 1.0.2
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local TaskStak --version 1.0.2
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=TaskStak&version=1.0.2
                    
nuke :add-package TaskStak --version 1.0.2
                    

TaskStak

TaskStak - A developer-focused, performant task management CLI tool.

Installation

dotnet tool install --global TaskStak

Usage

Core Commands

Add

Add a task to your stak.

add <title> [-s|--status <active | blocked | completed>]
Done

Mark a task complete.

done  <query>
Move

Update the status of a task.

move <query> [-s|--status <active | blocked | completed>]  
Title

Update the title of an existing task.

title <query> <title>
View

View your tasks

view [-v|--view <day | verbose>]     
# Add a new task
task add "implement user authentication"

# View tasks
task view

# Complete a task
task done "auth"

# Edit task title
task title "auth" "implement OAuth2 authentication"

# Move task to different status
task move "auth" -s blocked
task move "auth" -s completed

Task Status

Tasks fall into one of three states: | Status | Default | Usage | Shortcut | | ------------- | ------------- | ---------------------------------|-------------| | active | YES | Current work | a | | blocked | NO | Impeded, waiting on dependencies | b | | completed | NO | Finished work | c |

# Shortcut Usage (moves task to blocked status)

task move "fix bug in auth service" -s b

View Options

Daily View

Default view:

task view 
task view -v day
task view -v d

Verbose view:

task view -v v
task view -v verbose

All commands use fuzzy search to find tasks by title. Use quotes for multi-word searches and titles.

Data Storage

Tasks are stored in ~/.taskStak/tasks.json

License

MIT

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last Updated
1.1.3 391 7/20/2025
1.1.2 187 7/1/2025
1.1.1 184 6/30/2025
1.1.0 181 6/30/2025
1.0.5 183 6/18/2025
1.0.4 188 6/17/2025
1.0.3 184 6/16/2025
1.0.2 185 6/16/2025
1.0.1 185 6/16/2025
1.0.0 190 6/16/2025