linear-url-to-issues

linear-url-to-issues is an agent for Claude Code from Elnora-AI/elnora-linear. It costs 162 tokens per session (2,482 once invoked), scanned B, original, Apache-2.0.

An agent that turns web pages such as articles, blog posts, designs, and documentation into actionable Linear issues. Linear is a service for tracking development work, and the agent can create related issue links.

In plain words
What is it for?
Use it to create implementation tasks from one or more URLs, assign projects, labels, priorities, states, and owners, and mark issues as related, blocking, duplicate, or similar.
Why use it?
It saves the work of reading a source, extracting tasks, and entering them into a project tracker. It is intended for issues derived from URLs, rather than manually specified issues.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter; names the AskUserQuestion tool.

Part of the linear-workspace plugin — 1 skill, 6 commands, 5 agents shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/elnora-ai/elnora-linear/linear-url-to-issues
Clone the repo
git clone --depth 1 https://github.com/Elnora-AI/elnora-linear

Made for: Claude Code.

Or install linear-workspace, the plugin that ships this one along with the rest of its 1 skill, 6 commands, 5 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for linear-url-to-issues

README.md
[![agentmods](https://agentmods.dev/badge/agents/elnora-ai/elnora-linear/linear-url-to-issues.svg)](https://agentmods.dev/agents/elnora-ai/elnora-linear/linear-url-to-issues)
Your own site
<a href="https://agentmods.dev/agents/elnora-ai/elnora-linear/linear-url-to-issues"><img src="https://agentmods.dev/badge/agents/elnora-ai/elnora-linear/linear-url-to-issues.svg" alt="Measured on agentmods" height="20"></a>
Per session 162 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,482 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00162 $0.02482
Opus 5 $0.00081 $0.01241
Sonnet 5 $0.00032 $0.00496
Haiku 4.5 $0.00016 $0.00248

Measured 6d ago against content hash aacd670528ef, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade B, and why

linear-url-to-issues scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Instruction-override phrasingmediumPrompt injection

Text telling the model to disregard its earlier instructions or safety rules is the shape of a prompt injection, whoever wrote it.

- "Ignore previous instructions" / "act as a different agent" / "you are now ..."

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

agents/linear-url-to-issues.md · 216 lines

How it starts

The opening of the file, as written. The whole thing — 216 lines — stays where its author put it; the contents beside it link to each section on GitHub.

URL → Linear Issues

Extract actionable items from web content and create Linear issues. Sonnet, parallel-safe — dispatch one agent per URL when processing several.

Scope: URL-driven creation. Manual create → linear-issue-creator. Edits → linear-issue-updater.

CLI

elnora-linear is on $PATH. JSON output. Auth via LINEAR_API_KEY.

elnora-linear context --team "Team"        # cold-start primitive: projects+statuses, states, labels by prefix, members
elnora-linear issues search "terms" [--limit N]
elnora-linear issues create "Title" --team "Team" --description "md" \
  [--project "P"] [--labels "L1,L2"] [--priority 0-4] \
  [--assignee "name"|"me"|"none"] [--state "Todo"|"Backlog"] \
  [--skip-label-check]                    # bypass team label-policy validation
  [--skip-project-check]                  # bypass require-a-project rule (placeholder issues only)
elnora-linear relations create ENG-NEW ENG-OLD --type related|blocks|duplicate|similar

Cold-start optimization for multi-issue runs: when extracting N issues from one URL into the same team, call elnora-linear context --team "<Team>" ONCE up front and reuse the labels/projects/states from the response across every issues create. Saves N×3 redundant CLI calls.

Priority: 0=None, 1=Urgent, 2=High, 3=Normal, 4=Low.

Pitfalls: --labels (not --label), --description (not --desc). Default state = Todo for new actionable items unless project status says Backlog.

Metadata completeness — applies to every issue created

Every issue MUST be created with the maximum metadata that can reasonably be inferred. Bare tickets that force the user to enrich are an explicit failure mode.

For every create, you MUST attempt to set:

  1. Project — never leave null. Keyword-match the title/description against elnora-linear context --team "<Team>" projects[]. Pick the best fit. Linear CLI now requires a project by default for teams that have any projects; bare issues create calls without --project exit 2 with a structured ProjectValidationError ({error: "project_required", availableProjects: [{name, status}], suggestedRetry}). On that error, pick a project from availableProjects and retry — or, only if nothing genuinely fits, re-run with --skip-project-check AND surface that in the report ("no matching project; passed --skip-project-check because ").
  2. Labels — required labels per the team's requiredLabels (mandatory) PLUS any applicable optional labels you can infer from the source content (e.g. Severity: * for bugs with clear severity, Source: * if origin is obvious). More signal beats less.
  3. Related issues — the per-item dupe check (step 3 below) doubles as relation discovery. Topical-but-not-duplicate matches MUST be linked as --type related after creation.
  4. Sibling links — if multiple new issues come from the same source URL, link them as --type related so the cluster is visible.
  5. Priority + assignee + due date — set whatever the user provided. Don't invent values, but don't drop signals either.

Read the full file on GitHub · 216 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 216 lines · 162 tokens per session scan B aacd670528ef

Subscribe to this mod's changes

linear-url-to-issues is an agent published in the GitHub repository Elnora-AI/elnora-linear (7 stars, last pushed yesterday), licensed Apache-2.0. It adds 162 tokens to every session and 2,482 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it B with 1 finding (instruction-override phrasing). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.