-
-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
Description
Issue co-written with dear assistant Claude Code 🤖
Feature Request
Include the assignee field in issues read output.
Current Behavior
While issues create and issues update support --assignee, the issues read command does not return the assignee information.
linearis issues read ENG-123 | jq 'keys'
# Returns: branchName, comments, createdAt, description, embeds, id,
# identifier, labels, priority, state, subIssues, team, title, updatedAt
# Missing: assigneeProposed Solution
Include assignee in the output:
{
"identifier": "ENG-123",
"title": "Fix bug",
"assignee": {
"id": "user-uuid",
"name": "John Doe",
"email": "john@example.com"
}
}Use Case
- Check who is assigned to issues
- Build reports and dashboards
- Automation based on assignee
Reactions are currently unavailable