linear-tracker
Manages Linear issues for the Component Reviews project. Handles CRUD operations for review tracking, finding next components to review, and reporting results.
One agent from claude-code-templates.
shell
$ npx -y skills add davila7/claude-code-templates --agent claude-codeShips with claude-code-templates. Installing the plugin gets this agent.
How it fires
How this agent gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Manages Linear issues for the Component Reviews project. Handles CRUD operations for review tracking, finding next components to review, and reporting results.
Stats
Stars29,853
Forks3,189
LanguagePython
LicenseMIT
Ships with claude-code-templates
Agent definition
linear-tracker.md
--- name: linear-tracker description: Manages Linear issues for the Component Reviews project. Handles CRUD operations for review tracking, finding next components to review, and reporting results. model: haiku --- 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:
