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.
npx agentmods add skills/opencoven/coven/linear-issue-managementnpx skills add OpenCoven/coven --skill linear-issue-managementgit clone --depth 1 https://github.com/OpenCoven/covenWrote 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/opencoven/coven/linear-issue-management)<a href="https://agentmods.dev/skills/opencoven/coven/linear-issue-management"><img src="https://agentmods.dev/badge/skills/opencoven/coven/linear-issue-management.svg" alt="Measured on agentmods" height="20"></a>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.00068 | $0.00914 |
| Opus 5 | $0.00034 | $0.00457 |
| Sonnet 5 | $0.00014 | $0.00183 |
| Haiku 4.5 | $0.00007 | $0.00091 |
Grade A, and why
linear-issue-management scanned grade A 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 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl https://api.linear.app/graphql \ How it starts
The opening of the file, as written. The whole thing — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Linear Issue Management
Use this skill when working with Linear issues through the API.
Prime directive
Discover before writing. Never guess the team, project, state, assignee, or label IDs from memory when creating or updating a Linear issue.
Before any mutation:
- Confirm the target workspace/team from the user request or current project context.
- Query Linear for the exact team/project/label/state IDs.
- Search for an existing issue to avoid duplicates.
- Show the intended mutation summary if the action is externally visible or ambiguous.
- Execute one focused GraphQL mutation.
- Return the issue key + URL and record any important follow-up context.
Safety rules
- Do not print, paste, log, or commit the Linear API token.
- Prefer 1Password-backed env injection or an existing secret manager. Do not write tokens to files.
- Treat issue creation, updates, comments, assignment changes, and state transitions as external state-changing actions. Get explicit user approval unless the user already gave a direct instruction in the current conversation.
- Use GraphQL variables. Do not interpolate untrusted user text into a GraphQL query string.
- Keep issue text factual. Do not file speculation as confirmed defects.
- Do not file in a team just because an issue key prefix looks familiar; confirm via API.
Auth pattern
Use a Linear API key in LINEAR_API_KEY.
Preferred shape:
op run --env-file <linear-env-file> -- <command using LINEAR_API_KEY>
or, when the shell already has the token:
curl https://api.linear.app/graphql \
-H "Authorization: $LINEAR_API_KEY" \
-H 'Content-Type: application/json' \
--data-binary @payload.json
Never echo the token. If debugging auth, print only whether LINEAR_API_KEY is set, not its value.
Workflow: create an issue
- Read
references/graphql-recipes.mdfor query/mutation templates. - Discover teams and choose the exact
teamId. - Search existing issues by relevant keywords and repo/project names.
- Discover labels/projects/states only after the team is known.
- Resolve label conflicts before mutation.
- Create the issue with title, description,
teamId, optionalprojectId, optionallabelIds, and optional priority. - Return the created issue identifier and URL.
What ships with it
1 file 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.
- 5d ago First seen · 114 lines · 68 tokens per session scan A 8acd4c35a16b
linear-issue-management is a skill published in the GitHub repository OpenCoven/coven (46 stars, last pushed yesterday), licensed MIT. It adds 68 tokens to every session and 914 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
interview
Ask one useful structured question at a time only when material product/implementation choices are genuinely missing; remember answers and produce a brief/spec. Discoverable facts should be investigated instead of asked.
ppt-review
Read this skill only after current officereview structural output and relevant rendered images exist. Do not use source code, a tool success flag, or the first-slide preview as a substitute for deck evidence.
package-installer
Install third-party open-source projects (a GitHub URL or a local git directory the user provides) as external packages. The project is cloned verbatim into the per-user packages directory — never edit, normalize, or reorganize its files.
cog-knowledge-consolidation
Build structured knowledge frameworks from scattered vault notes with source attribution.
helmor-debug-operate
Operate, reproduce, and debug a running local Helmor desktop development build through the Tauri MCP bridge. Use when the user asks to use Tauri MCP, towery MCP, the local dev build, the Tauri webview, visual end-to-end validation, UI automation, screenshots, DOM/accessibility snapshots, IPC or log tracing…
review
5-pass structured code review — correctness, security, performance, readability, consistency.