
Linear Views
- 109 installs
- 128 repo stars
- Updated July 24, 2026
- finesssee/linear-cli
Create, list, and apply Linear custom saved views (issue filters) from the terminal, including shared views.
About
A CLI skill for managing Linear custom views, creating, listing, updating, and applying saved issue filters. A developer uses it to reuse saved filters across issue and project lists.
- Manage views: v list/get/create/update/delete
- Apply a view to issue/project lists with --view
Linear Views by the numbers
- 109 all-time installs (skills.sh)
- Ranked #1,331 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-viewsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 109 |
|---|---|
| repo stars | ★ 128 |
| Last updated | July 24, 2026 |
| Repository | finesssee/linear-cli ↗ |
What it does
Create, list, and apply Linear custom saved views (issue filters) from the terminal, including shared views.
Files
Custom Views
# List all custom views
linear-cli v list
linear-cli v list --shared # Shared views only
# Get view details
linear-cli v get "My View"
# Create a view
linear-cli v create "Bug Triage" --shared
# Update a view
linear-cli v update VIEW_ID --name "Renamed"
# Delete a view
linear-cli v delete VIEW_ID --force
# Apply view to issue list
linear-cli i list --view "Bug Triage"
linear-cli p list --view "Active Projects"Flags
| Flag | Purpose |
|---|---|
--shared | Shared views only |
--name NAME | View name |
--view NAME | Apply view filter (on issues/projects list) |
--output json | JSON output |
Exit Codes
0=Success, 1=Error, 2=Not found, 3=Auth error