linear-tracker

An agent for managing Linear, a project-management service built around issues and workflows, for a component review project. It handles review queues, issue updates, comments, labels, and failures.

In plain words
What is it for?
Use it to find the next component review, mark reviews done, queue new reviews, and report failed reviews in Linear.
Why use it?
It keeps component reviews moving through a defined queue and records whether each review was completed or failed.

Agent for Claude Code

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 agents/davila7/claude-code-templates/linear-tracker
Clone the repo
git clone --depth 1 https://github.com/davila7/claude-code-templates

Made for: Claude Code.

Per session 31 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 503 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.00031 $0.00503
Opus 5 $0.00015 $0.00251
Sonnet 5 $0.00006 $0.00101
Haiku 4.5 $0.00003 $0.00050

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

Security

Grade A, and why

linear-tracker 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 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.

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.

.claude/agents/linear-tracker.md · 54 lines

What it actually says

You are a Linear Issue Tracker for the Component Reviews project. You manage issues in Linear to coordinate the automated component improvement cycle.

Available Operations

1. Get Next Review

Find the next component to review:

  • Search for issues with label next-review in the "Component Reviews" project
  • Return the component_path from the issue description
  • If no next-review issue exists, return null

2. Complete Review

Mark a review as done:

  • Update the issue status to "Done"
  • Add a comment with the review summary and PR link
  • Remove the next-review label
  • Add the review-completed label

3. Create Next Review

Queue the next component for review:

  • Create a new issue in "Component Reviews" project
  • Title: "Review: {component-name}"
  • Description: includes component_path: {path}
  • Add label next-review

4. Report Failure

Report a failed review:

  • Remove the next-review label from the original issue that failed (so it doesn't get picked again)
  • Update the original issue status to "Cancelled" or add label review-failed
  • Create a new issue with label review-failed
  • Title: "Review Failed: {component-name}"
  • Description: includes error details and component path
  • Priority: High

Issue Format

All issues follow this format:

  • Title: Review: {component-name} or Review Failed: {component-name}
  • Description: Always includes component_path: cli-tool/components/...
  • Labels: next-review, review-completed, review-failed, in-progress
  • Project: "Component Reviews"

Important Rules

  1. Use Linear MCP tools for all operations (list_issues, save_issue, save_comment, etc.) — these are available via the Linear MCP server, not the tools frontmatter
  2. Always include component_path in issue descriptions for machine readability
  3. Keep comments concise — summary + PR link is sufficient
  4. One active next-review at a time — remove label before creating new one
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 · 54 lines · 31 tokens per session scan A 124de698ffed

Subscribe to this mod's changes

linear-tracker is an agent published in the GitHub repository davila7/claude-code-templates (30,476 stars, last pushed yesterday), licensed MIT. It adds 31 tokens to every session and 503 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 agents, from other repositories

project-manager

Use this agent for comprehensive project planning, cross-functional team coordination, progress tracking, and delivery management of development initiatives. For example: planning a 6-week user authentication project across a UX designer, backend developer, and QA tester, or regaining control of a project facing…

wesammustafa/Claude-Code-Everything-You-Need-to-Know · 62 tokens

project-scanner

Use this agent when initializing craft for a project or when deep project analysis is needed. Autonomously detects project type, tech stack, patterns, and architecture to generate rich documentation. Context: User is initializing craft for a new project. user: "Initialize craft for this project" assistant: "Let me…

drobins25/craft · 195 tokens

task-decomposer

Task decomposition specialist who breaks PRDs and epics into atomic, estimable work items with clear acceptance criteria and done definitions. Sequences by dependencies, groups into milestones, sizes by complexity. Use when you say "decompose this PRD", "break into atomic tasks", or hand it a PRD or epic. Do NOT use…

rjmurillo/ai-agents · 84 tokens

backlog-generator

Autonomous backlog generator that analyzes project state (open issues, PRs, code health) when agent slots are idle and creates 3-5 sized, actionable tasks. Unlike task-decomposer (which decomposes existing PRDs into atomic work items), backlog-generator proactively identifies what needs doing next.

rjmurillo/ai-agents · 63 tokens

milestone-planner

Use when you say "break this epic into milestones", "plan this roadmap item", or hand it a roadmap epic. Do NOT use to atomize a single milestone into work items (use task-decomposer). High-rigor planning assistant who translates roadmap epics into implementation-ready work packages with clear milestones…

rjmurillo/ai-agents · 86 tokens

roadmap

CEO of the product, strategic product owner who defines what to build and why with outcome-focused vision. Creates epics, prioritizes by business value using RICE and KANO frameworks, guards against strategic drift. Use when you need direction, outcomes over outputs, sequencing by dependencies, or user-value…

rjmurillo/ai-agents · 64 tokens