OpenProject CLI is a tool for operating your OpenProject instances from the command line. Therefore, it provides a subset of use cases for OpenProject.
The OpenProject CLI is meant to be operated in a self-explanatory and easy-to-use way. It provides meaningful commands without abbreviations, that can be executed in a human-readable manner. For more experienced users, many commands provide aliases for fewer keystrokes.
There are many ways to install the OpenProject CLI:
Executables are provided for Linux, macOS and Windows (currently Linux x64 only).
You can find the executables in the Releases section of this repository. The latest release is available under https://github.com/opf/openproject-cli/releases/latest.
Download the zip archive for your operating system and desired version of the OpenProject CLI:
curl -O https://github.com/opf/openproject-cli/releases/download/0.2.0/openproject-cli_linux_x64_X.Y.Z.zip
Extract the executable from the zip archive and move the executable to a location that is within your PATH
:
unzip openproject-cli_linux_x64_X.Y.Z.zip
sudo mv op /usr/local/bin
Check if the executable is working:
op --version
OpenProject CLI: X.Y.Z
commit: 8dc3232
built: Thu Jun 29 20:41:41 UTC 2023
built with: go1.20.5
If you already have the Go toolchain installed on your system, you can install the OpenProject CLI with the go install
command:
go install github.com/opf/openproject-cli
This will install the most current commit development version for now. Keep in mind that the resulting command is also
not op
but openproject-cli
. You can though rename the binary installed in your GOPATH
or GOBIN
directory.
The OpenProject CLI supports auto-completion out of the box. You can generate the completion script by running:
op completion [shell]
Replace [shell]
with either bash
, fish
, powershell
, zsh
to generate the shell specific completion script.
You need to put the completion in a place where your shellcan find it. For ZSH this could look like:
op completion zsh > ~/.oh-my-zsh/completions/_op
rm ~/.zcompdump*
Open a new shell and completion should work by using the TAB
key as usual.
The OpenProject CLI commands are structured in a common, human-readable pattern. Every command is built
as op VERB RESOURCE [additional information]
. You will see plenty of examples within this section.
Discoverability is key. As we won't document every single command within this README, it is important for the CLI tool,
to provide helpful information at any time and any level of the command structure. To achieve that, the OpenProject CLI
has a help page on every command. Adding the --help/-h
flag to any chain of commands will tell the user of all
possibilities he can use from here.
# General help
op -h
# Help about what things I can list
op list -h
# Help about how can I narrow down my list of work
# packages to get exactly what I was looking for
op list workpackages -h
The second basement is the autocompletion. To set it up correctly, follow the steps explained in the Completion
section above.
Once it is working, you can use it to discover possible commands and flags while typing.
# Chaining commands: hitting completion key after
op list
# returns
activities -- Lists activities for work package
notifications -- Lists notificationswork package
projects -- Lists projects
workpackages -- Lists work packages
# Discover flags: hitting completion key after
op update workpackge 42 -
# returns
--action -a -- Executes a custom action on a work package
--assignee -- Assign a user to the work package
--attach -- Attach a file to the work package
--help -h -- help for workpackage
--subject -- Change the subject of the work package
--type -t -- Change the work package type
There are a couple of use cases, you might want to execute from the command line. In this section we provide a handful of examples, that might be useful for a great number of people.
# Creating a work package in a project only by subject.
# Work package is created with many default values (as for type and status),
# very similar to how a work package is created inline in a work package table.
op create workpackge --project 11 'Document new CLI tool'
# Same command with shorthands and directly open it in a browser to continue working on it.
op create workpackge -p11 'Document new CLI tool' -o
# Get a list of unread notifications and filter them by reason
op list notifications --reason mentioned
# Get a list of all work packages assigned to me
op list workpackages --assignee me
# Executing a custom action on a work package
op update workpackage 42 --action Claim
# Batch updating some properties of a work package
# Valid input will get processed, while invalid (e.g. wrongly typed) input will get omitted
op update workpackage 42 --subject 'The new subject' --status 'In Progress' --type Implementation
# Uploading an attachment to a work package
op update workpackage 42 --attach ./Downloads/Report.pdf
# Inspecting a work package with more details,
# then in the work package list command
op inspect workpackage 42