
Linear Templates
- 126 installs
- 128 repo stars
- Updated July 24, 2026
- finesssee/linear-cli
Manage Linear issue templates from the terminal, both local templates and Linear API server-side templates, with create, list, show and delete commands.
About
A CLI skill that manages Linear issue templates, covering both local template files and Linear's server-side API templates. A developer uses it to standardize issue creation without leaving the terminal.
- Local template commands: tpl list/show/create/delete
- Remote API templates via tpl remote-create/update/delete with team flag
Linear Templates by the numbers
- 126 all-time installs (skills.sh)
- Ranked #1,266 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-templatesAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 126 |
|---|---|
| repo stars | ★ 128 |
| Last updated | July 24, 2026 |
| Repository | finesssee/linear-cli ↗ |
What it does
Manage Linear issue templates from the terminal, both local templates and Linear API server-side templates, with create, list, show and delete commands.
Files
Local Templates
# List local templates
linear-cli tpl list
# Show template
linear-cli tpl show bug
# Create local template
linear-cli tpl create bug
# Delete local template
linear-cli tpl delete bugAPI Templates (Linear server-side)
# List remote templates
linear-cli tpl remote-list
linear-cli tpl remote-list --output json
# Get remote template
linear-cli tpl remote-get TEMPLATE_ID
# Create remote template
linear-cli tpl remote-create "Bug Report" -t ENG
# Update remote template
linear-cli tpl remote-update TEMPLATE_ID --name "Updated"
# Delete remote template
linear-cli tpl remote-delete TEMPLATE_ID --forceFlags
| Flag | Purpose |
|---|---|
-t TEAM | Team for remote templates |
--output json | JSON output |