Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/magnus919/agent-skillsnpx agentmods add skills/magnus919/agent-skills/linearWrote 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.
[](https://agentmods.dev/skills/magnus919/agent-skills/linear)<a href="https://agentmods.dev/skills/magnus919/agent-skills/linear"><img src="https://agentmods.dev/badge/skills/magnus919/agent-skills/linear.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 2 findings, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Privilege Escalation · line 9 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
- medium Excessive Agency · line 70 Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00077 | $0.01776 |
| Opus 5 | $0.00039 | $0.00888 |
| Sonnet 5 | $0.00015 | $0.00355 |
| Haiku 4.5 | $0.00008 | $0.00178 |
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 4d 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.
How it starts
The opening of the file, as written. The whole thing — 123 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Linear
Use scripts/linear from this skill directory. It is a small, dependency-free wrapper around
Linear's public GraphQL API, not an MCP server. Use command-specific --help rather than copying
the full command reference into a response.
Setup
- Inspect the available command and relevant noun:
scripts/linear --helpandscripts/linear issue --help. - For a live request, set exactly one credential in the process environment. Use
LINEAR_API_KEYfor a personal key orLINEAR_ACCESS_TOKENfor OAuth. Never print, persist, or place either in a command transcript. - Begin with bounded discovery. Reads default to
--limit 10; the maximum is 100. - Output is always JSON: compact with
--json, indented without it.--dry-runmakes no network request and previews the operation.
Command Map
| Need | Command |
|---|---|
| Confirm current identity | scripts/linear whoami --json |
| Discover teams | scripts/linear team list --limit 20 --json |
| List a team's workflow states | scripts/linear state list --team ENG --json |
| Narrow a known issue set | scripts/linear issue list --team ENG --state "In Progress" --json |
| Find an issue by words | scripts/linear issue search "customer import" --json |
| Read one known issue | scripts/linear issue get ENG-42 --json |
| Read an issue with its project, cycle, hierarchy, comments, and relations | scripts/linear issue get ENG-42 --detail --json |
| Create an issue with project, parent, assignee, labels, state, or due date | scripts/linear issue create --team ENG --title "Fix login" --project "Platform" --parent ENG-1 --assignee "Ada Lovelace" --label bug --state "In Progress" --due 2026-08-31 |
| Update an issue's assignee, labels, due date, or project | scripts/linear issue update ENG-42 --assignee "Ada Lovelace" --label bug --remove-label p2 --due 2026-08-31 --project "Platform" |
| Archive or unarchive an issue | scripts/linear issue archive ENG-42 or scripts/linear issue unarchive ENG-42 |
| List or read projects | scripts/linear project list --team ENG --json or scripts/linear project get "Roadmap" --json |
| Update a project | scripts/linear project update "Roadmap" --description "Q3 plan" --status started |
| List or read cycles | scripts/linear cycle list --team ENG --json or scripts/linear cycle get UUID --json |
| Find documents by words | scripts/linear document search roadmap --json |
| Read a document by UUID, slug, or URL | scripts/linear document get REF --json |
| Use a documented unsupported GraphQL operation | scripts/linear raw 'query { viewer { id } }' --json |
What ships with it
8 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 4d ago First seen · 123 lines · 77 tokens per session scan A 80e0dad20974
linear is a skill published in the GitHub repository magnus919/agent-skills (74 stars, last pushed today), licensed MIT. It adds 77 tokens to every session and 1,776 once invoked, about $0.0004 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-09-03.
Other skills, from other repositories
cocoharvest
Decompose an approved plan into parallel workstreams, assign specialist personas, classify stages as HITL or AFK (CocoLens), generate flow.json stages with checkpoints and dual-file state, and create per-stage prompt files. Includes adaptive parallelism, stall detection, shell identity injection, and consecutive…
plan
Enter the Plan phase of CocoBrew. Runs CocoSpec quality gate pre-flight, reads spec.md and discuss.md (if present), invokes Coco native plan mode as a mandatory gate, captures the approved plan to plan.md, creates initial flow.json template, and commits. Must have $spec completed first.
cocoplus-config
CocoPlus configuration SSOT — $cocoplus sync propagates cocoplus.toml into downstream artifacts; $cocoplus migrate-config converts legacy safety-config.json. Invoked via $cocoplus sync and $cocoplus migrate-config.
ops-demo
CocoOps demo mode activator — populates .cocoplus/ops/demo/ with realistic mock data and sets cocoplus.toml [demo] enabled = true. Invoked via $ops demo.
ops-dora
CocoOps DORA metrics — computes four DORA-adapted delivery metrics from Snowflake task history and git log. Extends the longitudinal delivery thesis through the skill-native CocoOps thesis workflow. Invoked via $ops dora.
ops-sprint
CocoOps sprint health — computes story velocity, burndown, and completion prediction from git log and sprint window config. Invoked via $ops sprint.