# Linear Labels

> Manage Linear labels. Use when creating, listing, or deleting labels.

- Skill: `nesszer/linear-labels` (Agent Skill)
- Install (CLI): `npx skillmds@latest add nesszer/linear-labels`
- Raw SKILL.md: https://api.skillmd.com/api/skills/nesszer/linear-labels/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: nesszer (https://skillmd.com/u/nesszer)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/nesszer/linear-labels

---


# Labels

```bash
# List labels
linear-cli l list                    # Project labels
linear-cli l list --type issue       # Issue labels

# Create label
linear-cli l create "Feature" --color "#10B981"
linear-cli l create "Bug" --color "#EF4444" --id-only

# Delete label
linear-cli l delete LABEL_ID
linear-cli l delete LABEL_ID --force

# Agent-optimized
linear-cli l list --output json --compact
```

## Flags

| Flag | Purpose |
|------|---------|
| `--id-only` | Return ID only |
| `--output json` | JSON output |
| `--force` | Skip confirmation |

