Install and configure the subtask CLI tool
Installs and configures the subtask CLI tool for parallel task orchestration.
/plugin marketplace add zippoxer/subtask/plugin install zippoxer-subtask@zippoxer/subtaskHelp the user install the subtask CLI for parallel task orchestration.
Verify Go is installed:
go version
If not installed, guide the user to install Go first (https://go.dev/dl/).
Ask the user how they want to install:
Build from source (if in the subtask repo):
go build -o ~/.local/bin/subtask ./cmd/subtask
Go install (from anywhere):
go install github.com/zippoxer/subtask/cmd/subtask@latest
Ensure the installation directory is in PATH:
which subtask
If not found, add to shell config:
# For ~/.local/bin:
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc # or ~/.bashrc
source ~/.zshrc
Navigate to the project where you want to use subtask:
subtask init
This creates:
.subtask/config.json - project configuration~/.subtask/workspaces/subtask list
Should show an empty task list with available workspaces.