Linear Issue Management
Interact with Linear.app issues using the linear CLI.
Prerequisites
linearCLI must be installed (linear --version). If missing, install with:curl -fsSL https://raw.githubusercontent.com/lwlee2608/linear-cli/main/install.sh | bashLINEAR_API_KEYmust be set. Check withecho $LINEAR_API_KEY. If unset, tell the user to export it (export LINEAR_API_KEY="lin_api_...").
Commands
Get an issue
linear issue get ENG-123Returns: identifier, title, state, team, priority, assignee, description.
Search issues
linear issue search "login bug"
linear issue search "login bug" --limit 50Returns a table: ID, TITLE, STATE, ASSIGNEE. Default limit is 20.