
Linear List
- 181 installs
- 128 repo stars
- Updated July 24, 2026
- finesssee/linear-cli
List and get Linear issues from the CLI, filtering by team, status, or assignee, with agent-optimized JSON and field selection.
About
Lists and fetches Linear issues via linear-cli, filtering by team, status, or assignee and fetching multiple issues by ID. A developer uses it to view issue status and details from the terminal.
- --assignee me and status filters for scoped lists
- Agent-optimized --output json --compact --fields selection
Linear List by the numbers
- 181 all-time installs (skills.sh)
- Ranked #1,090 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/finesssee/linear-cli --skill linear-listAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 181 |
|---|---|
| repo stars | ★ 128 |
| Last updated | July 24, 2026 |
| Repository | finesssee/linear-cli ↗ |
What it does
List and get Linear issues from the CLI, filtering by team, status, or assignee, with agent-optimized JSON and field selection.
Files
List/Get Issues
# List issues
linear-cli i list # All
linear-cli i list -t ENG # By team
linear-cli i list -s "In Progress" # By status
linear-cli i list --assignee me # My issues
# Get issue(s)
linear-cli i get LIN-123
linear-cli i get LIN-1 LIN-2 LIN-3 # Multiple
# Agent-optimized
linear-cli i list --output json --compact --fields identifier,title,state.nameFlags
| Flag | Purpose |
|---|---|
--output json | JSON output |
--compact | No formatting |
--fields a,b | Select fields |
--sort field | Sort results |
Exit Codes
0=Success, 1=Error, 2=Not found, 3=Auth error