# Linear Templates

> Manage issue templates - local templates and Linear API templates. Use when creating or using templates.

- Skill: `finesssee/linear-templates` (Agent Skill)
- Install (CLI): `npx skillmds@latest add finesssee/linear-templates`
- Raw SKILL.md: https://api.skillmd.com/api/skills/finesssee/linear-templates/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: Finesssee (https://skillmd.com/u/finesssee)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/finesssee/linear-templates

---


# Local Templates

```bash
# 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 bug
```

# API Templates (Linear server-side)

```bash
# 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 --force
```

## Flags

| Flag | Purpose |
|------|---------|
| `-t TEAM` | Team for remote templates |
| `--output json` | JSON output |

