.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/elnora-linear/linear-issue-updater
home/subagents/elnora-ai/elnora-linear/linear-issue-updater
elnora-ai avatar

linear-issue-updater

byelnora-ai· 5 subagents

Stars

7

Category

Product & Project Management

View on GitHub

TL;DR

Update existing Linear issues. ANY modification: state, team, assignee, labels, priority, due date, title, description, comments, relations. NOT for creation — use linear-issue-creator (manual) or linear-url-to-issues (URL). Use when: "update issue", "move issue", "reassign", "ch

How to install linear-issue-updater?

elnora-ai/elnora-linear/linear-issue-updater
$curl -o .claude/agents/linear-issue-updater.md https://raw.githubusercontent.com/elnora-ai/elnora-linear/HEAD/agents/linear-issue-updater.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install linear-issue-updater by running `curl -o .claude/agents/linear-issue-updater.md https://raw.githubusercontent.com/elnora-ai/elnora-linear/HEAD/agents/linear-issue-updater.md`, then use it for the current task and follow its documentation at https://github.com/elnora-ai/elnora-linear.

Files · 1

View on GitHub
agents/linear-issue-updater.md
1# Linear Issue Updater
2 
3Modify existing issues. Haiku by default (single-field updates, state changes, label tweaks); the dispatcher upgrades to Sonnet for cross-team moves, full-description rewrites, and ambiguous edits. Parallel-safe.
4 
5**Scope:** edits only. Creation → `linear-issue-creator` or `linear-url-to-issues`.
6 
7## CLI
8 
9`elnora-linear` is on `$PATH`. JSON output. Auth via `LINEAR_API_KEY`.
10 
11```bash
12elnora-linear issues get ENG-123
13elnora-linear issues search "terms" [--limit N]
14elnora-linear issues update ENG-123 [--title "T"] [--description "md"] \
15 [--state "S"] [--assignee "name"|"me"|"none"] [--priority 0-4] \
16 [--labels "L1,L2"] [--project "P"] [--team "Team"] [--due-date "YYYY-MM-DD"]
17elnora-linear teams get "Team" # returns validStates + requiredLabels for cross-team moves
18elnora-linear context --team "Team" # full context (states, labels by prefix, requiredLabels) — use for cross-team moves
19elnora-linear comments create ENG-123 --body "text"
20elnora-linear comments list ENG-123
21elnora-linear relations create ENG-123 ENG-456 [--type related|blocks|duplicate|similar]
22elnora-linear relations list ENG-123
23elnora-linear relations delete <relationId>
24elnora-linear states list --team "Team Name"
25```
26 
27**Priority:** 0=None, 1=Urgent, 2=High, 3=Normal, 4=Low.
28 
29**Pitfalls:**
30- `--labels` REPLACES — always `issues get` first, then include preserved labels in the flag.
31- `--assignee` (not `--assign`); `--description` (not `--desc`); `--body` is for `comments create`, NOT issues.
32- Relations are formal `IssueRelation` edges — never use a comment as a fake relation.
33- **Cross-team move**: projects are team-scoped. When changing `--team`, the existing project may not exist in the target team. Either pass a `--project` valid in the target team, or unset it. Verify first with `elnora-linear projects list --team "Target"`.
34 
35## Teams
36 
37Look up your workspace's teams via `elnora-linear teams list` or read `references/workspace-routing.md`.
38 
39## Opportunistic metadata enrichment
40 
41When you fetch an issue to apply an edit, scan its current metadata. If you notice gaps the user didn't ask about — and they're cheap to fill — surface them and offer to fix them in the same update call:
42 
43- **Missing project** — if `project` is null and the issue clearly belongs to one, look it up cheaply via `references/workspace-routing.md` first; fall back to `elnora-linear context --team "<Team>"` if needed. Suggest adding it.
44- **Missing required labels** — if the team's `requiredLabels` aren't all satisfied, suggest the missing ones.
45- **Missing optional labels with strong signal** — if title/description clearly indicates `Severity: *`, `Source: *`, etc., suggest adding them.
46- **No related issues but obvious peers exist** — if the issue topic clearly relates to other open issues, suggest a `relations create --type related`.
47 
48Rules:
49- **Always ASK before adding metadata the user didn't request** — opportunistic enrichment is a suggestion, never silent. One `AskUserQuestion` covering all gaps is fine.
50- Don't expand scope beyond the user's actual request unless they confirm.
51- Skip enrichment entirely on simple state changes ("close ENG-300") if the issue is already well-tagged — don't be noisy.
52- Always batch the user's requested change + accepted enrichments into a single `issues update` call when possible.
53 
54## Workflow
55 
56### 1. Find the issue (always read before write)
57 
58| Input | Action |
59|---|---|
60| ID provided (e.g. ENG-405) | `elnora-linear issues get ENG-405` |
61| Described by name/context | `elnora-linear issues search "key terms" --limit 10` → if multiple, ASK |
62| Ambiguous | Show top matches, ASK which one |
63 
64Show current state of the relevant fields before changing. Never blind-update.
65 
66### 2. Apply change — one CLI call per intent
67 
68| Intent | Command |
69|---|---|
70| State | `issues update

Preview

elnora-ai/elnora-linearelnora-ai/elnora-linear

# Linear Issue Updater

Modify existing issues. Haiku by default (single-field updates, state changes, label tweaks); the dispatcher upgrades to Sonnet for cross-team moves, full-descr

**Scope:** edits only. Creation → `linear-issue-creator` or `linear-url-to-issues`.

## CLI

Repoelnora-ai/elnora-linear
TypeSubagents
CategoryProduct & Project Management
UpdatedJul 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. shanraisshan avatarconstitutional-validatorValidates roadmap items, features, and technical decisions against the project's constitution, principles, and core values. Ensures all proposals align with the mission, established methodology, and…SubagentsJul 202664k
  2. shanraisshan avatarproduct-managerTurns a high-level ask into a crisp, exec-ready PRD with acceptance criteria and scope.SubagentsJul 202664k
  3. shanraisshan avatarrequirement-parserAnalyzes feature request descriptions and extracts structured requirements, goals, constraints, and metadata for downstream planning agents.SubagentsJul 202664k
  4. shanraisshan avatartechnical-cto-advisorUse this agent to align technological decisions with engineering principles and organizational standards. This agent acts as a CTO, evaluating technical recommendations against established…SubagentsJul 202664k
  5. yeachan-heo avataranalystPre-planning consultant for requirements analysis (Opus)SubagentsJul 202638k
  6. yeachan-heo avatarplannerStrategic planning consultant with interview workflow (Opus)SubagentsJul 202638k