linear

linear is a skill for Claude Code, Codex from byaan-ai/byaan. It costs 11 tokens per session (2,891 once invoked), scanned A, original, MIT.

A connection to Linear, a project-management tool for tracking issues, projects, work cycles, and teams.

In plain words
What is it for?
Creating and updating issues, organizing projects and cycles, and working with Linear teams.
Why use it?
It lets an agent manage development work through Linear’s API instead of requiring manual updates in the web app. A personal API key is required.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Creating and updating issues, organizing projects and cycles, and working with Linear teams.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/byaan-ai/byaan/linear
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.

Any agent
npx skills add byaan-ai/byaan --skill linear
Clone the repo
git clone --depth 1 https://github.com/byaan-ai/byaan

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/byaan-ai/byaan/linear/github.svg)](https://agentmods.dev/skills/byaan-ai/byaan/linear)
Your own site
<a href="https://agentmods.dev/skills/byaan-ai/byaan/linear"><img src="https://agentmods.dev/badge/skills/byaan-ai/byaan/linear/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for linear

Your own site · 80×15
<a href="https://agentmods.dev/skills/byaan-ai/byaan/linear"><img src="https://agentmods.dev/badge/skills/byaan-ai/byaan/linear.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 11 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,891 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00011 $0.02891
Opus 5 $0.00005 $0.01445
Sonnet 5 $0.00002 $0.00578
Haiku 4.5 $0.00001 $0.00289

Measured 11d ago against content hash 96e6eb0405fd, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, 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 11d 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.

server/skills/linear/SKILL.md · 621 lines

How it starts

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

Linear GraphQL API

Use the Linear GraphQL API to manage issues, projects, cycles, and teams.

Setup Guide

Before using this skill, you need to create a Personal API key in Linear:

1. Create an API Key

  1. Open Linear and click the gear icon (Settings)
  2. Navigate to "Security & Access" in the left sidebar
  3. Scroll to "Personal API keys" section
  4. Click "Create key"
  5. Give it a label (e.g., "Byaan")
  6. Copy the key (starts with lin_api_)
  7. Paste this key in Settings > Skills > Linear in the app

How Authentication Works

You do not need to handle authentication manually. When you call execute_skill_api(), the system automatically:

  1. Retrieves the API key from the configured credentials
  2. Adds the Authorization: <api_key> header (no Bearer prefix)
  3. Sends POST request with the GraphQL query

Just call the API with skill name, endpoint path, and GraphQL query — authentication is handled for you.

How to Call the API

Linear uses GraphQL. Call execute_skill_api() with these parameters:

execute_skill_api(
  skill_name="linear",
  endpoint_path="/graphql",
  is_graphql=True,
  graphql_query="query { viewer { id name } }",
  graphql_variables="{}"  # Optional JSON string for variables
)

Parameters:

  • skill_name: Always "linear"
  • endpoint_path: Always "/graphql"
  • is_graphql: Always True
  • graphql_query: The GraphQL query or mutation string
  • graphql_variables: Optional JSON string of variables for parameterized queries

Example with variables:

execute_skill_api(
  skill_name="linear",
  endpoint_path="/graphql",
  is_graphql=True,
  graphql_query="query GetIssue($id: String!) { issue(id: $id) { title } }",
  graphql_variables="{\"id\": \"ABC-123\"}"
)

Workflows

Creating an Issue

You must query for IDs before creating an issue. Here's the workflow:

  1. Get team ID (required):
query {
  teams {
    nodes {
      id
      name
      key
    }
  }
}

Read the full file on GitHub · 621 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. 11d ago First seen · 621 lines · 11 tokens per session scan A 96e6eb0405fd

Subscribe to this mod's changes

linear is a skill published in the GitHub repository byaan-ai/byaan (95 stars, last pushed 16d ago), licensed MIT. It adds 11 tokens to every session and 2,891 once invoked, about $0.0001 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

commonly

You are a member of a Commonly workspace — a shared space where humans and AI agents from any origin collaborate in pods (chat rooms with memory). Use this whenever you are connected to Commonly via the commonly MCP tools: to read what's happening, post, remember things across sessions, react, DM other agents, and…

Team-Commonly/commonly · 0 tokens

google-tasks-skill

Create, list, and complete Google Tasks. Supports task lists, due dates, and notes.

zeenie-ai/OpenCompany · 25 tokens

task-manager

Coordinate durable team tasks by assigning connected teammates, reviewing results, and accepting, retrying, reassigning, or cancelling work.

zeenie-ai/OpenCompany · 29 tokens

subagent-orchestration

Coordinate connected subagents through durable Task Manager assignments, bounded parallel execution, review, retry, reassignment, and acceptance.

zeenie-ai/OpenCompany · 30 tokens

ai-fleet-project-execution

AI fleet project execution (orchestrator=PM, marketing agent, backend dev agent, video agent). Fast-iteration architecture pivots and inter-agent task delegation across multi-hour sessions. Use when a user assigns a multi-agent project with "take it as a team" instruction.

Szotasz/marveen · 63 tokens

things-mac

Manage Things 3 via the things CLI on macOS (add/update projects+todos via URL scheme; read/search/list from the local Things database). Use when a user asks CoWork-OSS to add a task to Things, list inbox/today/upcoming, search tasks, or inspect projects/areas/tags.

CoWork-OS/CoWork-OS · 70 tokens