A command-line interface for Backlog, built with Go.
- Issue management (list, get, create)
- Project listing
- Simple configuration
go install github.com/common-creation/backlog-cli/cmd/backlog@latestBefore using the CLI, you need to configure it with your Backlog space URL and API key:
backlog config init --space "https://yourspace.backlog.com" --api-key "your-api-key"backlog project listbacklog issue list
backlog issue list --project PROJECT_KEY
backlog issue list --status STATUS_ID
backlog issue list --count 50backlog issue get --key PROJECT-123backlog issue create --project PROJECT_KEY --summary "Issue summary" --description "Issue description" --issue-type 1 --priority 3- Go 1.24 or later
git clone https://github.com/common-creation/backlog-cli.git
cd backlog-cli
go build -o backlog ./cmd/backlogMIT