Problem
When working in a workspace with multiple teams, linear issue list only queries one team at a time. The --team flag accepts a single value and cannot be repeated.
To see all issues across a workspace, you have to run the command once per team:
linear i list --all-states -A --no-pager
linear i list --all-states -A --team GENERAL --no-pager
Proposed Solution
Add an --all-teams flag (similar to the existing --all-states and --all-assignees flags) that lists issues across all teams in the workspace:
linear i list --all-teams --no-pager
Alternatively, allow --team to be repeated like --state already supports:
linear i list --team PROD --team GENERAL --no-pager
Context
This is especially useful for AI agents and automation that need a complete view of the workspace backlog without knowing team keys in advance.
Problem
When working in a workspace with multiple teams,
linear issue listonly queries one team at a time. The--teamflag accepts a single value and cannot be repeated.To see all issues across a workspace, you have to run the command once per team:
Proposed Solution
Add an
--all-teamsflag (similar to the existing--all-statesand--all-assigneesflags) that lists issues across all teams in the workspace:Alternatively, allow
--teamto be repeated like--statealready supports:Context
This is especially useful for AI agents and automation that need a complete view of the workspace backlog without knowing team keys in advance.