You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,7 @@ linear auth login
81
81
-[Projects](#projects)
82
82
-[Cycles](#cycles)
83
83
-[Teams](#teams)
84
+
-[Labels](#labels)
84
85
-[Users](#users)
85
86
-[Claude Code Skills](#claude-code-skills)
86
87
-[Cycle Analytics](#cycle-analytics)
@@ -262,6 +263,7 @@ All commands support both flags:
262
263
-**Cycles**: `list`, `get`, `analyze`
263
264
-**Projects**: `list`, `get`
264
265
-**Teams**: `list`, `get`, `labels`, `states`
266
+
-**Labels**: `list`
265
267
-**Users**: `list`, `get`, `me`
266
268
-**Search**: all search operations
267
269
@@ -628,6 +630,20 @@ linear teams labels ENG # Team labels
628
630
linear teams states ENG # Workflow states
629
631
```
630
632
633
+
### Labels
634
+
635
+
```bash
636
+
linear labels list --team ENG # List all labels (with IDs)
637
+
linear labels list --team ENG --output json # JSON output
638
+
639
+
# Create, update, delete (requires user auth, not agent/app)
640
+
linear labels create "needs-review" --team ENG --color "#ff0000" --description "PR needs review"
641
+
linear labels update LABEL-UUID --name "needs-code-review" --color "#ff6600"
642
+
linear labels delete LABEL-UUID
643
+
```
644
+
645
+
> **Note:** Label mutations (create/update/delete) require user authentication. OAuth app actors cannot manage labels due to Linear workspace permissions. Use `linear auth login` as a user.
0 commit comments