>_lisa docs

CLI

Lisa CLI for managing issues, projects, and milestones from your terminal.

The Lisa CLI lets you interact with Lisa from your terminal — create issues, list projects, and manage your workflow without leaving the command line.

Installation

npm install -g @lisa/cli
# or
bun install -g @lisa/cli

Authentication

lisa auth login

This opens a browser window for authentication. Your session token is stored locally.

Commands

Issues

# List issues
lisa issue list
lisa issue list --status todo --priority high

# Create issue
lisa issue create --title "Fix login bug" --priority high --type bug

# View issue
lisa issue view ISS-123

# Update issue
lisa issue update ISS-123 --status in_progress

Projects

# List projects
lisa project list

# Create project
lisa project create --name "Payment Integration"

Configuration

# Set default organization
lisa config set org my-org

# Set API URL
lisa config set url https://lisa.example.com

Output formats

The CLI supports multiple output formats:

# Table (default)
lisa issue list

# JSON
lisa issue list --format json

# Compact
lisa issue list --format compact

Using with scripts

The JSON output format makes it easy to pipe into other tools:

# Get all high priority issues as JSON
lisa issue list --priority high --format json | jq '.[] | .title'