linear

linear is a skill for Claude Code, Codex from emanuelcasco/pi-mono-extensions. It costs 42 tokens per session (1,104 once invoked), scanned A, original, MIT.

An integration for managing Linear, a project-management service for software teams, from coding-agent tools. It covers issues, projects, teams, comments, cycles, labels, files, and documents.

In plain words
What is it for?
Use it to read and update issues, inspect workspace information, manage project data, and add comments or files.
Why use it?
It keeps project-management work connected to the coding workflow instead of requiring manual copying between tools.

Skill for Claude CodeCodex

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 skills/emanuelcasco/pi-mono-extensions/linear
Any agent
npx skills add emanuelcasco/pi-mono-extensions --skill linear
Clone the repo
git clone --depth 1 https://github.com/emanuelcasco/pi-mono-extensions

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/emanuelcasco/pi-mono-extensions/linear.svg)](https://agentmods.dev/skills/emanuelcasco/pi-mono-extensions/linear)
Your own site
<a href="https://agentmods.dev/skills/emanuelcasco/pi-mono-extensions/linear"><img src="https://agentmods.dev/badge/skills/emanuelcasco/pi-mono-extensions/linear.svg" alt="Measured on agentmods" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,104 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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 $0.00042 $0.01104
Opus 5 $0.00021 $0.00552
Sonnet 5 $0.00008 $0.00221
Haiku 4.5 $0.00004 $0.00110

Measured 5d ago against content hash ee5a4feeaca5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

linear scanned grade A with 0 findings 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 5d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

extensions/linear/skills/linear/SKILL.md · 118 lines

How it starts

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

Linear Integration

Use the native linear_* tools to read and write Linear data through the Linear GraphQL API.

Critical Rules

  • Never ask the user to paste a Linear API key in chat.
  • Never expose the API key inline in shell commands.
  • Before updating an issue or commenting, use linear_get_issue to verify the target.
  • Before uploading a file to an issue comment, use linear_get_issue to verify the target.
  • When IDs are unknown, use linear_workspace_metadata first.

Authentication

The tools read the key from an in-memory override, LINEAR_API_KEY, or ~/.pi/agent/auth.json at .linear.key.

If auth is missing, invalid, or expired, do not ask the user to paste the key in chat. Use the native linear_configure_auth tool or ask the user to run /linear-auth --force. The prompt is masked and the key is stored by the extension without returning it to the model.

Tool Workflow

  • Use linear_configure_auth only when auth is missing, invalid, expired, or the user asks to update the key.
  • Use linear_workspace_metadata first when team/project/state/label/user IDs are unknown.
  • Use linear_search_issues for keyword lookup.
  • Use linear_get_issue before updating or commenting.
  • Use linear_get_issue to inspect Linear issues; Markdown images embedded in the issue description are automatically included when the active model supports image input.
  • If linear_get_issue reports description images were skipped because the current model does not support images, ask the user to switch to a vision-capable model before interpreting screenshots.
  • Use linear_list_issues for filtered issue lists by team, assignee, status, or limit.
  • Use linear_create_issue to create issues once the team ID is known.
  • Use linear_update_issue to change title, description, priority, state, or assignee.
  • Use linear_create_comment to add Markdown context to an issue.
  • Use linear_upload_file to upload a local image, video, or generic file and get a Linear asset URL.
  • Use linear_upload_file_to_issue_comment to upload a local file and comment on a verified issue in one step.

Read the full file on GitHub · 118 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. 5d ago First seen · 118 lines · 42 tokens per session scan A ee5a4feeaca5

Subscribe to this mod's changes

linear is a skill published in the GitHub repository emanuelcasco/pi-mono-extensions (99 stars, last pushed 10d ago), licensed MIT. It adds 42 tokens to every session and 1,104 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

codebase-memory

Use the codebase knowledge graph for structural code queries. Triggers on: explore the codebase, understand the architecture, what functions exist, show me the structure, who calls this function, what does X call, trace the call chain, find callers of, show dependencies, impact analysis, dead code, unused functions…

narumiruna/pi-extensions · 98 tokens

using-pi-subagents

Operate pi-subagents jobs safely, including direct-work decisions, least-privilege tool selection, thinking-level selection, delegation, bidirectional messaging, parallel starts, timeout selection, waiting, cancellation, result handling, verification, and writer isolation.

narumiruna/pi-extensions · 54 tokens

configuring-pi-starship

Configure @narumitw/pi-starship and answer questions about its pi-starship.toml settings. Use when the user asks to create, edit, repair, migrate, or understand pi-starship.toml, or asks which pi-starship module, variable, option, style, palette, preset, or runtime behavior to use. Do not use for generic TOML, shell…

narumiruna/pi-extensions · 98 tokens

herdr

Control Herdr, a terminal multiplexer for coding agents. Use only when the user explicitly mentions Herdr or asks to use Herdr to inspect or control panes, tabs, workspaces, commands, or another agent. Do not use merely because a task could benefit from a background terminal, delegation, or parallel work. Requires…

narumiruna/pi-extensions · 74 tokens

pi-costs

Analyze pi session costs. Use when the user asks about spending, costs, token usage, or session statistics.

butttons/pi-kit · 26 tokens

plannotator-compound

Analyze a user's Plannotator plan archive to extract denial patterns, feedback taxonomy, evolution over time, and actionable prompt improvements — then produce a polished HTML dashboard report. Falls back to Claude Code ExitPlanMode denial reasons when Plannotator data is unavailable.

backnotprop/plannotator · 57 tokens