add-linear

add-linear is a skill for Claude Code, Codex from sliamh11/Deus. It costs 41 tokens per session (725 once invoked), scanned C, original, MIT.

A connection between Deus and Linear, a project-management service for tracking software issues, projects, work periods, and workflow stages.

In plain words
What is it for?
Creating and updating issues, managing projects and cycles, searching the backlog, and changing workflow states from host-side Claude Code sessions.
Why use it?
It removes the need to switch to Linear for routine project updates and backlog searches during a coding conversation.

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

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 add-linear

README.md
[![agentmods](https://agentmods.dev/badge/skills/sliamh11/deus/add-linear.svg)](https://agentmods.dev/skills/sliamh11/deus/add-linear)
Your own site
<a href="https://agentmods.dev/skills/sliamh11/deus/add-linear"><img src="https://agentmods.dev/badge/skills/sliamh11/deus/add-linear.svg" alt="Measured on agentmods" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 725 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 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.00041 $0.00725
Opus 5 $0.00020 $0.00362
Sonnet 5 $0.00008 $0.00145
Haiku 4.5 $0.00004 $0.00072

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

Security

Grade C, and why

add-linear scanned grade C with 2 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 3d 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

grep -q '"linear"' ~/.claude/mcp.json 2>/dev/null && echo "ALREADY_CONFIGURED" || echo "NOT_CONFIGURED"

Reads MCP configurationmediumAgent snooping

mcp.json carries server URLs and auth tokens; reading it lets a mod discover and abuse other integrations.

grep -q '"linear"' ~/.claude/mcp.json 2>/dev/null && echo "ALREADY_CONFIGURED" || echo "NOT_CONFIGURED"
.claude/skills/add-linear/SKILL.md · 87 lines

How it starts

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

Add Linear

This skill adds Linear project management tools to host-side Claude Code sessions via the @tacticlaunch/mcp-linear MCP server. Once installed, you can create/update issues, manage projects and cycles, search your backlog, and track workflow states from conversation.

Phase 1: Pre-flight

Check if already configured

grep -q '"linear"' ~/.claude/mcp.json 2>/dev/null && echo "ALREADY_CONFIGURED" || echo "NOT_CONFIGURED"
grep -q "LINEAR_API_TOKEN" ~/deus/.env 2>/dev/null && echo "TOKEN_SET" || echo "NO_TOKEN"
  • If both configured and token set, skip to Phase 3 (Verify).
  • If configured but no token, skip to Phase 2 step 1 only.
  • Otherwise, continue to Phase 2.

Phase 2: Install and Configure

Step 1: Get API token

Tell the user:

I need a Linear Personal API key. This is a one-time setup:

  1. Open Linear → Settings → API → Personal API keys
  2. Click "Create key", give it a label like "Deus"
  3. Copy the token (format: lin_api_...) and paste it here

Once the user provides the token:

Add to ~/deus/.env:

grep -q LINEAR_API_TOKEN ~/deus/.env || echo 'LINEAR_API_TOKEN=<pasted-value>' >> ~/deus/.env

Verify it's gitignored:

cd ~/deus && git check-ignore .env || echo "WARNING: .env is NOT gitignored"

Step 2: Configure MCP

Read ~/.claude/mcp.json, merge the new entry into the existing mcpServers object:

"linear": {
  "command": "/bin/sh",
  "args": ["-c", "set -a && . $HOME/deus/.env && npx -y @tacticlaunch/mcp-linear"]
}

Do not overwrite existing servers.

Step 3: Document

If ~/deus/.env.example does not already have LINEAR_API_TOKEN, add it:

# === Integrations ===
# Linear project management MCP (host-side Claude Code).
# Generate at: Linear Settings → API → Personal API keys
LINEAR_API_TOKEN=

Phase 3: Verify

Tell the user:

Linear MCP is configured. Restart Claude Code (close and reopen the session) for the tools to load.

After restart, test with: "List my Linear teams" — you should see your workspace teams returned via mcp__linear__linear_getTeams.

Available tools include linear_getIssues, linear_createIssue, linear_updateIssue, linear_searchIssues, linear_getCycles, linear_getProjects, and 130+ more.

Read the full file on GitHub · 87 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. 3d ago First seen · 87 lines · 41 tokens per session scan C 87a68117d359

Subscribe to this mod's changes

add-linear is a skill published in the GitHub repository sliamh11/Deus (51 stars, last pushed today), licensed MIT. It adds 41 tokens to every session and 725 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 2 findings (reads agent configuration directories, reads mcp configuration). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.