CLI application to manage tasks in Linear.app written in GO. This CLI is not meant to be feature complete with Linear.app CLI, it is meant to have common short cuts in the CLI to help stay in focus when coding thus it is opiniated.
There is no binary it must be compiled and installed manually
Have go CLI installed
git clone
go build
go install
Settings -> My account -> API Create a personal API key
Create an environment variable for apiKey
export apiKey=<enter API key here>
linear-cli tasks -p example-project -s Todo
-p
Project name
-s
Status name
Sets task as backlog with an identifier
linear-cli backlog ABC-01
Sets task as done with an identifier
linear-cli todo ABC-01
Sets task as Work in progress with an identifier
linear-cli wip ABC-01
Sets task as done with an identifier
linear-cli done ABC-01